*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
  margin: 0;
}

body {
  font-family: 'HelveticaNeue';
  font-weight: 400;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  height: 100%;
}

ol,
ul {
  padding: 0;
  
}

a {
  font-family: inherit;
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

@font-face {
  font-family: 'Verdana';
  src: url("../fonts/Verdana/Verdana-Bold/Verdana-Bold.woff2") format("woff2"), url("../fonts/Verdana/Verdana-Bold/Verdana-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Verdana';
  src: url("../fonts/Verdana/Verdana-Regular/Verdana-Regular.woff2") format("woff2"), url("../fonts/Verdana/Verdana-Regular/Verdana-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Verdana', sans-serif;
}

.container {
  max-width: 1210px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  -webkit-appearance: none;
  border: none;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s all linear;
  -o-transition: .5s all linear;
  transition: .5s all linear;
}

.popup.active {
  z-index: 999;
  opacity: 1;
}

.popup-wrapper {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.popup-thanks__content {
  width: 100%;
  max-width: 350px;
  height: 150px;
  padding: 15px;
  background: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.popup-thanks__text {
  font-size: 18px;
  line-height: 24px;
}

.header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__burger {
  display: none;
}

.header-white {
  position: relative;
  background-color: #fff;
  height: 95px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.header-list__item{
  list-style-type: none;	
}

.header-list__item + .header-list__item {
  margin-left: 50px;
}

.header-list__link {
  font-size: 17px;
  color: #fefefe;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo-img {
  width: 135px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__logo-text {
  color: #262626;
  font-size: 17px;
  margin-left: 50px;
}

.header__phone {
  font-weight: 700;
  font-size: 19px;
  color: #262626;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__phone::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/phone.png") center center/contain no-repeat;
  margin-right: 15px;
}

.header__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
  height: 50px;
  background-color: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #f3470f;
  text-transform: uppercase;
}

.header__btn-orange {
  color: #fff;
  background-color: #f3470f;
}

.burger {
  width: 30px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.burger__item {
  width: 100%;
  height: 2px;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .header__burger {
    display: block;
  }
  .header__nav {
    position: fixed;
    width: 300px;
    right: 0;
    top: 100px;
    padding: 30px 15px;
    background-color: #f3470f;
    opacity: 0;
    z-index: -1;
  }
  .header__nav.active {
    opacity: 1;
    z-index: 99;
  }
  .header-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-list__item + .header-list__item {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  .header__btn {
    width: 150px;
    height: 30px;
    font-size: 12px;
    text-align: center;
  }
  .header__phone {
    display: none;
  }
  .header__logo-img {
    width: 90px;
  }
  .header__logo-text {
    display: none;
  }
  .header-white .header__burger {
    display: none;
  }
}

.footer {
  background-color: #262626;
}

.footer__wrapper {
  padding: 55px 0 22px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__info {
  margin-left: 50px;
}

.footer__info-text {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.footer__phone-link {
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__phone-link::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background: url("../img/phone.png") center center/contain no-repeat;
  margin-right: 15px;
}

@media screen and (max-width: 800px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__block + .footer__block {
    margin-top: 15px;
  }
}

.section-how {
  background-color: #f3470f;
}

.section-about {
  background-color: #ebeced;
}

.section-contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 130px;
}

.section-contacts__profile {
  margin-top: 25px;
}

.section-experts {
  background-color: #f9f9f9;
  margin-bottom: -150px;
}

.section-experts__content {
  max-width: 840px;
  margin-left: auto;
  background: #fff;
  padding: 75px 90px 75px 95px;
  -webkit-transform: translateY(-150px);
      -ms-transform: translateY(-150px);
          transform: translateY(-150px);
  border-radius: 18.8px;
}

.section-steps {
  background: url("../img/steps.jpg") center center/cover no-repeat;
}

.section-steps__footer {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-steps__btn {
  width: 300px;
  height: 40px;
  font-size: 12px;
  color: #fefefe;
  background-color: #f3470f;
  border-radius: 9px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-experience {
  background-color: #014c92;
}

.section-question {
  background-color: #f6f7f8;
}

.section-question__wrapper {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 115px;
}

.section__wrapper {
  padding: 55px 0;
}

.section__header + .section__content {
  margin-top: 45px;
}

.section__title {
  font-size: 28.5px;
  line-height: 1.35;
  font-weight: 700;
  color: #262626;
  text-align: center;
}

.section__title-left {
  text-align: left;
}

.section__title-white {
  color: #fff;
}

.section__desc {
  font-size: 14px;
  line-height: 18px;
  color: #262626;
}

.section__desc-bold {
  font-weight: 700;
}

.how-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 100px;
}

.how-list__item {
  padding: 15px 0 15px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.how-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.how-list__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.how-list__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -75px;
}

.about-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 75px;
}

.about-list__item::before {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("../img/about-arrow.png") center center/contain no-repeat;
  margin-right: 18px;
}

.contact-form__title {
  font-size: 18px;
  color: #262626;
  font-weight: 700;
}

.contact-form__text {
  line-height: 18px;
  font-size: 14px;
  color: #262626;
}

.contact-form__block + .contact-form__block {
  margin-top: 15px;
}

.contact-form__block-title {
  font-size: 11px;
  color: #262626;
}

.contact-form__block-input {
  -webkit-appearance: none;
  margin-top: 10px;
  width: 100%;
  height: 40px;
  padding: 15px;
  border: 1px solid #adadad;
  outline: none;
}

.contact-form__block-input-transparent {
  background-color: transparent;
  max-width: 320px;
}

.contact-form__block-input_textarea {
  resize: none;
  height: 220px;
}

.contact-form__desc {
  text-align: right;
  max-width: 280px;
  color: #6b6b6b;
  font-size: 10px;
  line-height: 12px;
  width: 100%;
  margin-left: auto;
}

.contact-form__desc a {
  text-decoration: underline;
}

.contact-form__desc-left {
  text-align: left;
  margin-right: auto;
  margin-left: unset;
}

.contact-form__btn {
  width: 175px;
  height: 45px;
  background: #f3470f;
  font-size: 12px;
  color: #fefefe;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  margin-left: auto;
}

.contact-form__btn-full {
  width: 100%;
  max-width: 320px;
  margin-left: unset;
}

.profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-card__img {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-card__img-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-card__content {
  margin-left: 10px;
}

.profile-card__name, .profile-card__position {
  color: #262626;
  font-size: 14px;
}

.profile-card__name {
  font-weight: 700;
}

.experts-block__title {
  font-size: 28px;
  font-weight: 700;
  color: #262626;
}

.experts-block__content {
  margin-top: 70px;
}

.experts-item + .experts-item {
  margin-top: 40px;
}

.experts-item__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #262626;
}

.experts-item__text {
  color: #262626;
  font-size: 14px;
  line-height: 18px;
  margin-top: 10px;
}

.experts-item__link {
  font-size: 14px;
  color: #6a6a6a;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}

.experts-item__link:hover {
  color: #f63f03;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 130px;
  gap: 40px 30px;
}

.step-item {
  height: 100%;
  list-style: none;
}

.step-item__wrapper {
  padding: 10px 10px 10px 10px;
  border: 1px solid #adadad;
  border-radius: 8px;
  height: 100%;
}

.step-item__wrapper:hover {
  border-color: #f3470f;
}

.step-item__wrapper:hover .step-item__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.step-item__wrapper:hover .step-item__front {
  display: none;
}

.step-item__wrapper-block {
  height: 100%;
}

.step-item__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #262626;
}

.step-item__title span {
  font-size: 40px;
  color: #f3470f;
}

.step-item__content {
  padding-top: 15px;
}

.step-item__header {
  padding-bottom: 15px;
  border-bottom: 1px solid #adadad;
}

.step-item__desc {
  font-size: 14px;
  line-height: 18px;
}

.step-item__back {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience-block__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.experience-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.experience-item__img {
  width: 80px;
  height: 80px;
}

.experience-item__content {
  margin-left: 25px;
}

.experience-item__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.experience-item__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.team-slider .swiper-slide .team-item__img::before, .team-slider .swiper-slide .team-item__img img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.team-slider .swiper-slide-active .team-item__img::before, .team-slider .swiper-slide-active .team-item__img img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.team-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-item__img {
  width: 310px;
  height: 310px;
  position: relative;
}

.team-item__img::before {
  content: '';
  width: 144px;
  height: 166px;
  display: block;
  position: absolute;
  top: 25px;
  right: -10px;
  background: url("../img/team-circle.png") center center/contain no-repeat;
}

.team-item__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.team-item__content {
  margin-top: 30px;
}

.team-item__title {
  font-weight: 700;
  font-size: 18px;
  color: #f3470f;
  text-align: center;
}

.team-item__text {
  font-size: 14px;
  color: #262626;
  text-align: center;
  margin-top: 10px;
}

.team-item__text2 {

  color: #262626;
  list-style: auto;
  font-size: 17px;
  line-height: 28px;
}

.team-item__text2 a{

  color: blue;
}

.team-item__text2 p{

  color: #262626;
  list-style: auto;
  font-size: 17px;
  line-height: 28px;
  margin: 6px 0 20px;

}


.team-item__text2 h1{

  color: #262626;
  list-style: auto;
  font-size: 1.5em;
  line-height: 28px;
  padding-top:20px;
  padding-bottom:20px;
 
}



.team-item__text2 h2{

  color: #262626;
  list-style: auto;
  font-size: 26px;
  line-height: 28px;
  padding-bottom:20px;
  padding-top:20px;
}

.team-item__text2 h3{

  color: #262626;
  list-style: auto;

  
  margin: 34px 0 6px;
  font-size: 24px;
  line-height: 28px;
}


.team-item__text2 h3:before {
    display: block;
    content: " ";
    margin-top: -80px;
    height: 80px;
    visibility: hidden;
    pointer-events: none;
}

.team-item__text2 li {
  margin: 0 0 16px 16px!important;
  
  font-size: 17px;
  line-height: 28px;
  
}


.team-item__text ol, ul, li {
  margin: 0 0 16px 24px!important;
  /*list-style: auto;*/
  font-size: 17px;
  line-height: 28px;
  /*list-style-type: none;*/
}



.question-list__item + .question-list__item {
  margin-top: 30px;
}

.question-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #262626;
}

.question-item__header:hover {
  cursor: pointer;
}

.question-item__header.active {
  color: #f3470f;
}

.question-item__header.active .question-item__arrow {
  -webkit-transform: rotate(180deg) translateY(-2px);
      -ms-transform: rotate(180deg) translateY(-2px);
          transform: rotate(180deg) translateY(-2px);
}

.question-item__title {
  font-size: 18px;
  font-weight: 700;
  color: inherit;
}

.question-item__content {
  margin-top: 20px;
  padding-right: 30px;
  display: none;
}

.question-item__content.active {
  display: block;
}

.question-item__arrow {
  width: 14px;
  height: 14px;
  -webkit-transition: 0.5s all linear;
  -o-transition: 0.5s all linear;
  transition: 0.5s all linear;
}

.question-item__arrow-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.question-item__text {
  font-size: 14px;
  line-height: 18px;
  color: #262626;
}

.banner {
  overflow: hidden;
  background-color: #f3470f;
}

.banner__wrapper {
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.banner__wrapper-block + .banner__wrapper-block {
  position: relative;
}

.banner__wrapper-block + .banner__wrapper-block::before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -69px;
  display: block;
  background-color: #f85a21;
}

.banner__text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.banner-form__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.banner-form__text {
  font-size: 11px;
  color: #fff;
}

.banner-form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.banner-form__input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  outline: none;
  color: #fff;
  padding: 0 15px;
  margin-top: 10px;
}

.banner-form__input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

.banner-form__input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.banner-form__input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.banner-form__input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.banner-form__input::placeholder {
  color: inherit;
  opacity: 1;
}

.banner-form__desc {
  color: #ff9b77;
  font-size: 10px;
  display: block;
  margin-left: auto;
  text-align: right;
  margin-top: 10px;
}

.banner-form__desc a {
  text-decoration: underline;
}

.banner-form__submit {
  width: 100%;
  height: 40px;
  background-color: #014c92;
  border: none;
  outline: none;
  font-size: 12px;
  color: #fefefe;
  text-transform: uppercase;
  border-radius: 8px;
  margin-top: auto;
}

.reviews-block__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reviews-block__info-img {
  max-width: 260px;
}

.reviews-block__info-text {
  max-width: 260px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  color: #262626;
  margin-left: 70px;
  position: relative;
}

.reviews-block__info-text::before {
  content: '';
  position: absolute;
  left: -35px;
  top: calc(50% - 30px);
  width: 1px;
  height: 60px;
  display: block;
  background-color: #e1e1e1;
}

.reviews-block__content {
  margin-top: 20px;
}

.reviews-item__wrapper {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 30px;
}

.reviews-item__img {
  height: 100%;
  width: 100%;
}

.reviews-item__img-item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-item__header {
  height: 40px;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
  position: relative;
}

.reviews-item__header::before {
  content: '';
  width: 250px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: url("../img/reviews-header.png") top center/cover no-repeat;
}

.reviews-item__header-text {
  position: relative;
  z-index: 2;
  font-size: 12px;
  color: #fefefe;
  text-transform: uppercase;
}

.reviews-item__header-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.reviews-item__header-end::before {
  left: unset;
  right: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.reviews-item__list-item + .reviews-item__list-item {
  margin-top: 10px;
}

.reviews-item__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.reviews-item__list-item::before {
  content: '';
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background-color: #f3470f;
  margin-right: 15px;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.reviews-item__content {
  margin-top: 30px;
}

.reviews-item__text, .reviews-item__title {
  font-size: 12px;
  line-height: 14px;
  color: #262626;
}

.reviews-item__block + .reviews-item__block {
  margin-top: 20px;
}

.reviews-item__title {
  color: #f3470f;
  font-weight: 700;
  margin-bottom: 5px;
}

.slider-wrapper {
  position: relative;
}

.slider-wrapper .swiper-button-next, .slider-wrapper .swiper-button-prev {
  width: 25px;
  height: 60px;
  background: url("../img/review-arrow.png") center center/contain no-repeat;
  outline: none;
}

.slider-wrapper .swiper-button-next-disabled, .slider-wrapper .swiper-button-prev-disabled {
  opacity: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.slider-wrapper .swiper-button-prev {
  left: -60px;
}

.slider-wrapper .swiper-button-next {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  right: -60px;
}

@media screen and (max-width: 1200px) {
  .section-experts {
    margin-bottom: 0;
  }
  .section-experts__content {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    max-width: 100%;
  }
  .section-contacts__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .about-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
  .about-list__item {
    margin-bottom: 0px;
  }
  .about-list__item + .about-list__item {
    margin-top: 30px;
  }
  .step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .slider-wrapper .swiper-button-prev, .slider-wrapper .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .experience-block__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .reviews-item__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .reviews-block__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reviews-block__info-text {
    margin-left: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .reviews-block__info-text::before {
    display: none;
  }
  .banner__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .banner__wrapper-block + .banner__wrapper-block::before {
    display: none;
  }
  .banner-form__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-experts__content {
    padding: 30px 0;
  }
  .section-question__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .experts-block__content {
    margin-top: 30px;
  }
  .experts-item + .experts-item {
    margin-top: 15px;
  }
  .how-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .section__title {
    text-align: center;
  }
  .experts-item__title {
    font-size: 18px;
  }
  .experts-block__title {
    text-align: center;
    font-size: 24px;
  }
  .experience-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .experience-item__content {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
  .step-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero {
  background: url("../img/hero.jpg") center center/cover no-repeat;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 490px auto;
  gap: 90px;
  height: 100vh;
  min-height: 900px;
  padding: 200px 0 100px 0;
  position: relative;
}

.hero__mail {
  position: absolute;
  bottom: 40px;
  left: 0;
  color: #ffffff;
  font-size: 14px;
  text-decoration: underline;
}

.hero__title {
  font-weight: bold;
  line-height: 1.26;
  color: #fff;
}

.hero__title {
  font-size: 20px;
}

@media screen and (min-width: 320px) {
  .hero__title {
    font-size: calc(20px + 29 * ((100vw - 320px) / 960));
  }
}

@media screen and (min-width: 1280px) {
  .hero__title {
    font-size: 49px;
  }
}

.hero__desc {
  font-size: 20px;
  color: #fff;
}

.hero__desc-title {
  font-weight: 700;
}

.hero__desc-text {
  line-height: 28px;
  margin-top: 40px;
}

.hero__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 100px;
}

.hero__count-block:nth-child(1) {
  width: 145px;
}

.hero__count-block:nth-child(2) {
  width: 215px;
}

.hero__count-block:nth-child(3) {
  width: 160px;
}

.hero__count-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.hero__count-title span {
  font-size: 20px;
}

.hero__count-text {
  font-size: 14px;
  line-height: 1.29;
  color: #Fff;
  margin-top: 15px;
}

.hero-second {
  background: url("../img/hero-second.jpg") center center/cover no-repeat;
}

.hero-second__wrapper {
  height: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 180px;
}

.hero-second__title {
  font-weight: 700;
  font-size: 54px;
  color: #fff;
  max-width: 720px;
}

.hero-second__desc {
  padding: 10px 25px;
  max-width: 780px;
  background-color: rgba(255, 255, 255, 0.85);
  margin-top: 15px;
}

.hero-second__desc-text {
  color: #014c92;
  font-size: 24px;
  line-height: 1;
}

.hero-second__desc-text span {
  font-weight: 700;
}

.hero-second__text {
  font-size: 18px;
  color: #ffffff;
  margin-top: 15px;
}

.hero-second__footer {
  margin-top: 55px;
}

.hero-form__title {
  font-size: 11px;
  color: #fff;
}

.hero-form__content {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-form__input {
  width: 215px;
  height: 40px;
  background: transparent;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0 15px;
  color: #fff;
}

.hero-form__input::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}

.hero-form__input::-moz-placeholder {
  opacity: 1;
  color: #fff;
}

.hero-form__input:-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.hero-form__input::-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.hero-form__input::placeholder {
  opacity: 1;
  color: #fff;
}

.hero-form__submit {
  margin-left: 15px;
  width: 225px;
  height: 40px;
  background: #fff;
  border-radius: 4px;
  color: #014c92;
  font-size: 12px;
  text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
  .hero__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    height: auto;
    padding: 130px 0 100px 0;
    min-height: auto;
  }
}

@media screen and (max-width: 600px) {
  .hero__title {
    text-align: left;
  }
  .hero__desc {
    text-align: left;
  }
  .hero__desc-text {
    margin-top: 15px;
  }
  .hero__count {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero__count-block:nth-child(1), .hero__count-block:nth-child(2), .hero__count-block:nth-child(3) {
    width: 100%;
  }
  .hero__count-block + .hero__count-block {
    margin-top: 15px;
  }
  .hero__count-text {
    margin-top: 10px;
  }
  .hero__count-text, .hero__count-title {
    text-align: left;
  }
  .hero__mail {
    width: 100%;
    left: 0;
    text-align: left;
  }
  .hero-form__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero-form__submit, .hero-form__input {
    width: 100%;
  }
  .hero-form__submit {
    margin-left: 0;
    margin-top: 10px;
  }
  .hero-second__title {
    font-size: 36px;
  }
}

.section-couch {
  background: #ebeced;
}

.section-couch__content {
  display: grid;
  grid-template-columns: 350px auto;
  gap: 100px;
}

.section-couch__desc {
  text-align: justify;
}

.section-couch__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.section-couch__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #f3470f;
  margin-right: 15px;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}

.section-couch__list-item + .section-couch__list-item {
  margin-top: 10px;
}

.section-couch__list-text {
  color: #262626;
  font-size: 14px;
  line-height: 18px;
}

.couch-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 100px;
}

.couch-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.couch-list__icon {
  width: 75px;
  height: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.couch-list__icon-item {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.couch-list__text {
  margin-left: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #262626;
}

@media screen and (max-width: 800px) {
  .section-couch__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .couch-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 600px) {
  .couch-list {
    gap: 30px 20px;
  }
  .couch-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .couch-list__text {
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
  }
}



input{
  transition: .3s border-color;
}

input.error{
  border-color: #b71c1c;
}

.pagination ul{
	margin: 0 0 16px 16px!important;
    list-style: none;
    font-size: 17px;
    line-height: 28px;
	position: relative;
    float: left;
}

.pagination li{
	margin: 0 0 16px 0px!important;
    list-style: none;
    font-size: 17px;
    line-height: 28px;
	position: relative;
    float: left;
}


.pagination .active > a, .pagination .active > a:hover{
	background-color: #f3990F;
    color: #343644;
    border-color: #f3990F;
    cursor: default;
}


.pagination a{
	position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #626262;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: 100;
    margin-bottom: 5px;
    margin-right: 5px;
}


.team-item__text2 spaniks {
    color: #262626;
    list-style: auto;
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 20px;
    padding-top: 20px;
}

.obzatc{
	padding: 20px 20px 20px 20px;
    background: #fffac0;
	
	
}	

.obzatc p{
	margin: 0px 0px 0px !important;
	
	
}

.obzatc .golovok-1 {
	margin: 0px 0px 0px !important;
	
}

.obzatc .golovok-2 {
    padding-left: 20px;
	margin: 0px 0px 0px !important;
}	