html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  color: #4b4b4b;
  background-color: #fff;
  font-family: 'Rubik', sans-serif;
}

* {
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}
/*Конец привязки подвала к низу экрана*/

/*Основной контейнер*/
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/*конец контейнера*/

h1,
h2,
h3 {
  color: #303030;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}

h3 {
  font-size: 32px;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}
h4 a {
  color: #000;
}
h4 a:hover {
  color: #737373;
}
.jet-posts__inner-box h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.home-h2 h2 {
  letter-spacing: 0.05em;
  font-size: 48px;
  margin-bottom: 20px;
  color: #140039;
}
@media (max-width: 990px) {
  .home-h2 h2 {
    font-size: 38px;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .home-h2 h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #6747c7;
  outline: none;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
  color: #ab8fff;
}

p {
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

input[type="text"], input[type="namber"], input[type="tel"], input[type="email"], input[type="password"],
textarea {
  border: 1px solid #ececec;
  width: 100%;
  padding: 10px;
  outline: none;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
}

fieldset> legend {
  font-size: 18px;
  font-weight: 700;
}
button[type="submit"] {
  border: 2px solid #6747c7;
  background-color: #fff;
  padding: 10px 30px;
  font-family: 'Rubik', sans-serif;
  border-radius: 40px;
  font-size: 16px;
  color: #6747c7;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  outline: none;
}
button[type="submit"]:hover {
  background-color: #6747c7;
  color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
}
label {
  display: inline-block;
  margin-bottom: 5px;
}

address {
  line-height: 2;
}
input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

input[type="radio"] {
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

select {
  padding: 10px;
  border-radius: 6px;
  border-color: #ececec;
  color: #4b4b4b;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
  border: 1px solid #ececec;
}

select:hover {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

strong {
  font-weight: 500;
}

.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

/*==========Кнопка==========*/
.acc-btn, input[type="submit"] {
  min-width: 260px;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 0px 30px;
  line-height: 46px;
  border: none;
  border-radius: 30px;
  white-space: nowrap;
  background-color: #ffad05;
  cursor: pointer;
  outline: none;
}

.acc-btn:hover, input[type="submit"]:hover {
  color: #fff;
  background-color: #e49900;
}


a.edit {
  display: inline-block;
  color: #fff;
  background-color: #6747c7;
  padding: 0px 15px;
  line-height: 30px;
  border-radius: 6px;
  margin-bottom: 10px;
}
a.edit:hover {
  background-color: #7c53f7;
}
/*==========Кнопка==========*/

@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

}

/*Контактная форма*/
.glogal-popup-form {
  padding-top: 20px;
}

.glogal-popup-form input {
  margin-bottom: 10px;
}

.glogal-popup-form input[type="submit"] {
  padding: 0px;
  margin-top: 10px;
}

.glogal-popup-form p {
  margin: 0px;
}

div.wpcf7-response-output {
  margin: 0 !important;
}

/*Аудиторская фирма*/
.audit-firma {
  background-color: #6600ea;
  position: relative;
  padding: 5px 5px 5px 15px;
  display: inline-block;
  width: auto;
  margin-bottom: -10px;
}
.audit-firma::before {
  content: '';
  position: absolute;
  top: 0px;
  right: -34px;
  border: 17px solid #6600ea;
  border-top-color: transparent;
  border-right-color: transparent;
}


/*Банеры наши услуги*/
.baner-services h3 {
  text-shadow: 0px 2px 10px rgba(0,0,0,0.6);
}
/*=======Блок преимущества=======*/
.advantages-column div {
  height: 100%;
}
.advantages-items {
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
}
.advantages-items .icon-col {
  width: 25%;
  justify-content: center;
  align-items: center;
  background-color: #ffad05;
  position: relative;
  min-height: 120px;
}
.advantages-items .icon-col::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  border: 13px solid transparent;
  border-left-color: #ffad05;
}
.advantages-items .icon-col img {
  width: 70px;
}
.advantages-items .text-col {
  width: 75%;
  padding: 20px 20px 20px 30px;
}
.advantages-items .text-col h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.advantages-items .text-col p {
  margin-bottom: 0px;
  color: #555;
}
@media (max-width: 990px) {
  .advantages-items .icon-col img {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .advantages-items .icon-col {
    width: 20%;
  }
  .advantages-items .text-col {
    width: 80%;
  }
}
@media (max-width: 380px) {
  .advantages-items {
    flex-direction: column;
  }
  .advantages-items> div {
    width: 100%!important;
  }
  .advantages-items .icon-col {
    min-height: auto;
    padding: 10px;
  }
  .advantages-items .icon-col img {
      width: 60px;
  }
  .advantages-items .text-col {
    padding: 15px;
}
  .advantages-items .icon-col::before {
    border-left-color: transparent;
    border-top-color: #ffad05;
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: -23px;
  }
  .advantages-items .text-col h3 {
    font-size: 18px;
  }
}

.faq-block {
  border: 1px solid #ececec;
}

.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right {
  margin-top: 5px;
}

.page-title-dark-bg h1 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-title-dark-bg h1 {
    font-size: 40px;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .page-title-dark-bg h1 {
    font-size: 34px;
    letter-spacing: 0px;
  }
}

.abaut-icon-column {
  max-width: 800px;
  margin: 0px auto;
}

.polichuk-item .elementor-icon-box-icon {
  margin-top: 10px;
}

/*Блок Научная деятельность О нас*/
.nauka-block, .nauka-block>div {
  position: relative;
}

.nauka-block::before, .nauka-block::after, .nauka-block>div::before, .nauka-block>div::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 100px;
  pointer-events: none;
}
.nauka-block::before {
  top: 80px;
  left: -10px;
  border-left: 2px solid #ffad05;
  border-top: 2px solid #ffad05;
}
.nauka-block::after {
  bottom: 0px;
  right: -10px;
  border-right: 2px solid #ffad05;
  border-bottom: 2px solid #ffad05;
}
.nauka-block>div::before {
  top: 80px;
  right: -10px;
  border-right: 2px solid #ffad05;
  border-top: 2px solid #ffad05;
}
.nauka-block>div::after {
  bottom: 0px;
  left: -10px;
  border-left: 2px solid #ffad05;
  border-bottom: 2px solid #ffad05;
}

@media (max-width: 540px) {
  .nauka-block::before, .nauka-block::after, .nauka-block>div::before, .nauka-block>div::after {
    display: none; 
  }
}
/*Блок Услуги страница Ведем бухгалтерию*/
.turn-hidden {
  max-height: 370px;
  overflow-y: auto;
}
.turn-hidden a {
    display: block;
    font-size: 18px;
    padding: 8px 0px;
    color: #333;
    border-bottom: 1px solid #ececec;
}
.turn-hidden a:hover {
  color: #ffad05;
}
/*End var 2*/
.turn-hidden-list ul {
  padding-right: 20px;
}
.turn-hidden-list ul li {
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #ececec;
  padding: 8px 0px 8px 20px;
}
.turn-hidden-list ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #6747c7;
  position: absolute;
  top: 16px;
  left: 0px;
  border-radius: 50%;
}
.consalting-list-20 .turn-hidden-list ul li {
  font-size: 20px;
  padding: 10px 0px 10px 20px;
}
.consalting-list-20 .turn-hidden-list ul li::before {
  top: 21px;
  }

@media (max-width: 1100px) {
  .consalting-list-20 .turn-hidden-list ul li {
    font-size: 18px;
  }
}
/*End var 2*/ 

/*Audit*/
.audit-block li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}
.audit-block li::before {
  content: '\e90d';
  font-family: 'icomoon';
  position: absolute;
  top: 0px;
  left: 0px;
  color: #ffad05;
  transition: all 0.3s;
}
.audit-block li:hover::before {
  left: 5px;
}

.saving-block .elementor-image-box-title, .saving-block-slider .jet-carousel__item-title {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #222;
}
.saving-block img, .saving-block-slider .jet-carousel__item-inner img {
  width: 80px;
}
.saving-block-slider .jet-carousel__item-inner img {
  margin-bottom: 20px;
}

.saving-block {
  margin-bottom: 30px;
}



.acc-form-col-back {
    margin: 0px auto 10px;
}
.contact-form-wrap {
   max-width: 490px;
   box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    padding: 30px 20px;
    border-radius: 10px;
    margin: 0px auto;
}
.acc-form-col-back > span {
  display: block;
  margin-bottom: -15px;
}
.acc-form-col-back textarea {
  height: 100px;
}
.wpcf7-response-output {
  margin-top: 10px;
  max-width: 400px;
  border-radius: 6px;
}

.audit-subtitle {
  max-width: 620px;
  margin: 0 auto;
}


/*Result*/
.result-icon .elementor-icon-box-icon {
  margin-top: 15px;
}

/*Сплывающее окно*/
.spu-box {
  border-radius: 15px!important;
  padding-top: 20px;
}
.spu-box .spu-close-top_right {
  top: 15px!important;
  right: 15px!important;
}


/*Как мы работаем ст. Автоматизация*/
.timeline-var2 {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 6px 10px rgba(0,0,0,0.1);
}
.timeline-var2 img {  
  display: block;
  vertical-align: middle;
}

.scroll-text-line {
  font-size: 30px;
  font-weight: 500;
}


.work-list ul {
  margin-left: 30px;
}
.work-list li {
  list-style-type: disc;
  margin-bottom: 5px;
  font-size: 18px;
}
.work-list ol li {
  list-style: decimal;
  margin-bottom: 10px;
}
.elementor-widget-text-editor ol {
  list-style: decimal;
  margin-left: 30px;
}

.ks-video-carusel .jet-carousel__item-text {
  position: relative;
  padding-bottom: 56%;
}
.ks-video-carusel .jet-carousel__item-text>iframe, .ks-video-carusel .jet-carousel__item-text>.rll-youtube-player {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.print-btn {
  border: 1px solid #d2d2d2;
  background-color: #ececec;
  border-radius: 5px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 25px;
}
.print-btn:hover {
  background-color: #333;
  color: #fff;
}

.ks-form__input {
  margin-bottom: 15px;
}
.ks-form__input p {
  margin: 0px;
}
.ks-form__submit {
  position: relative;
}
.ks-form__submit--center {
  display: flex;
  justify-content: center;

}
.wpcf7-spinner {
  margin: 0!important;
  position: absolute;
  top: 0;
  right: 0px;
}

.current-menu-item [aria-current="page"] {
		pointer-events: auto;/*none*/
		cursor: default;
}

@media (max-width: 1200px) { 
	.current-menu-item [aria-current="page"] { 
		width: 80%;
		z-index: 7;
	}
}

.menu-communication{
    width: 100%;
    font-size: 16px;
    background-color: white;
    font-family: 'Rubik', sans-serif;
}

.menu-communication-main{
    width: 100%;
    color: black;
    font-size: 16px;
    background-color: white;
    font-family: 'Rubik', sans-serif;
}

.broken_link, a.broken_link {
    text-decoration: none !important;
}