@charset "UTF-8";

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@-webkit-keyframes stories-bullet {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes stories-bullet {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes scale-circle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes scale-circle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@-webkit-keyframes motion-card {
  from {
    margin-top: 0px;
  }

  to {
    margin-top: -30px;
  }
}

@keyframes motion-card {
  from {
    margin-top: 0px;
  }

  to {
    margin-top: -30px;
  }
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

a:hover {
  color: #3F5199;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

body {
  background: #fff;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #18181A;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
  font-feature-settings: 'pnum' on, 'lnum' on;
}

.small {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #18181A;
  opacity: 0.8;
}

.regular {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  opacity: 0.8;
}

.menu-button {
  background: #E9F2FF;
  border: 1px solid #D8E7FF;
  border-radius: 5px;
  padding: 7px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #3F5199;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.menu-button.green {
  border: 1px solid #B7E9C4;
  background: #E8FBED;
  color: #2C895C;
}

.accent {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}

.caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.h1 {
  font-weight: 600;
  font-size: 55px;
  line-height: 60px;
}

.h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: #3F5199;
}

.h2 {
  font-weight: 600;
  font-size: 45px;
  line-height: 53px;
}

.small {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  opacity: 0.8;
}

.button-medium {
  background: #3F5199;
  border-radius: 10px;
  padding: 20px 30px;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-medium:hover {
  color: #FFFFFF;
}

.button-medium .arrow {
  display: inline-block;
  margin-left: 15px;
  width: 18px;
  height: 12px;
  background: url(../img/button-medium-arrow.svg) no-repeat center;
  background-size: contain;
}

.simple-button {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #3F5199;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.simple-button .arrow {
  display: inline-block;
  margin-left: 15px;
  width: 18px;
  height: 12px;
  background: url(../img/simple-button-arrow.svg) no-repeat center;
  background-size: contain;
}

.accent-bold {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.button-large {
  padding: 23px 30px;
  background: #3F5199;
  border-radius: 10px;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
}

.button-large .arrow {
  display: inline-block;
  margin-left: 15px;
  width: 18px;
  height: 12px;
  background: url(../img/button-medium-arrow.svg) no-repeat center;
  background-size: contain;
}

.small-bold {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.button-light {
  padding: 14px 30px;
  border: 1px solid #D8E7FF;
  background: #E9F2FF;
  border-radius: 5px;
  text-align: center;
}

.header {
  color: #18181A;
  background: #FFFFFF;
  right: 0;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.05);
  box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.05);
}

.header-top {
  padding: 15px 0;
}

.header-top-logo {
  margin-right: 20px;
}

.header-top-logo__img {
  height: 34px;
}

.header-top-nav__link {
  margin-right: 30px;
  opacity: 0.8;
}

.header-top-contacts {
  text-align: right;
}

.header-top-contacts__regim {
  margin-top: 1px;
  opacity: 0.8;
}

.header-bottom {
  padding: 15px 0;
  border-top: 1px solid #D8E7FF;
}

.header-bottom-nav__link {
  margin-right: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.header-bottom-nav__link--parent {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.header-bottom-nav__link--parent::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 10px;
  height: 5px;
  background-image: url(../img/menu-arrow.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-bottom-nav-subnav {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 15px 20px 25px 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.1);
  box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.1);
  border-radius: 5px;
  margin-top: 6px;
  z-index: 30;
}

.header-bottom-nav-subnav__link {
  margin-bottom: 5px;
}

.header-bottom__link {
  margin-left: 15px;
}

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

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

.header-wrap:nth-child(2) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.first {
  color: #FFFFFF;
}

.first-wrap {
  height: 550px;
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.first-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.first-rating__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 94px;
  background: url(../img/flag.svg) no-repeat center;
  margin-top: -5px;
}

.first-rating__desc {
  margin-top: 13px;
  margin-left: 15px;
}

.first__title {
  margin-top: 80px;
}

.first__subtitle {
  margin-top: 20px;
}

.questions {
  padding-top: 100px;
}

.questions__title {
  color: #3F5199;
  font-weight: 500;
  font-size: 45px;
  line-height: 53px;
}

.questions-card {
  margin: 0 auto;
  margin-top: 60px;
  padding: 60px 0px;
  width: 1360px;
  max-width: 100%;
  background: #FFF4E7;
  border-radius: 20px;
  position: relative;
}

.questions-card-wrap {
  display: none;
}

.questions-card-wrap.active {
  display: block;
}

.questions-card-decor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.questions-card-decor__line {
  background: #F4D4AE;
  opacity: 0.8;
  border-radius: 10px;
  height: 5px;
  width: 184px;
  margin-bottom: 30px;
  display: inline-block;
}

.questions-card-decor__line:last-of-type {
  width: 268px;
  margin: 0;
  margin-top: 20px;
}

.questions-card-decor__title {
  font-weight: 700;
  font-size: 45px;
  line-height: 53px;
  color: #F4D4AE;
  opacity: 0.6;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.questions-card-decor__title:nth-of-type(2) {
  opacity: 0.4;
}

.questions-card-decor__title:nth-of-type(3) {
  opacity: 0.8;
}

.questions-card-list {
  border: 1px solid #D8E7FF;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.questions-card-list__btn {
  padding: 10px 20px;
  border-radius: 5px;
  color: #3C456C;
  -webkit-transition: color 0.2s, background 0.2s;
  -o-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}

.questions-card-list__btn.active {
  color: #FFFFFF;
  background: #3C456C;
  -webkit-transition: color 0.2s, background 0.2s;
  -o-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}

.questions-card__title {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.questions-card__desc {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.questions .questions-card__img {
  display: inline-block;
  position: absolute;
  bottom: 5px;
  right: 40px;
  width: 666px;
  height: 364px;
}


.questions-card__img {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: unset;
  height: 100%;
}


.services {
  padding-top: 120px;
}

.services .questions-card__link {
  background-color: #fff !important;
  color: #18181A !important;
}


.services .questions-card {
  margin-top: 30px;
  padding-top: 30px;
  background: -o-linear-gradient(left, #2C3352 46.95%, rgba(46, 54, 87, 0.97) 53.81%, rgba(49, 58, 94, 0.75) 63.66%, rgba(63, 81, 153, 0) 79.3%);
  background: -webkit-gradient(linear, left top, right top, color-stop(46.95%, #2C3352), color-stop(53.81%, rgba(46, 54, 87, 0.97)), color-stop(63.66%, rgba(49, 58, 94, 0.75)), color-stop(79.3%, rgba(63, 81, 153, 0)));
  background: linear-gradient(90deg, #2C3352 46.95%, rgba(46, 54, 87, 0.97) 53.81%, rgba(49, 58, 94, 0.75) 63.66%, rgba(63, 81, 153, 0) 79.3%);
}

.services .questions-card__desc {
  color: #fff;
}

.services .questions-card__title {
  color: #fff;
}

.services .questions-card-img {
  z-index: -1;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.about {
  padding-top: 120px;
}

.about__title {
  margin-bottom: 60px;
}

.about__img {
  width: 1600px;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.about__link {
  position: relative;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about__link:hover {
  color: #FFFFFF;
}

.about .btn-wrap {
  text-align: center;
}

.numbers {
  padding-top: 200px;
  overflow: hidden;
  position: relative;
  margin-top: -80px;
  padding-bottom: 370px;
}

.numbers-result {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.numbers-result__result {
  color: #3F5199;
}

.numbers-result__desc {
  margin-top: 10px;
}

.numbers__link {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.numbers-video {
  position: relative;
}

.numbers-video-wrap {
  background: -o-linear-gradient(bottom, rgba(63, 81, 153, 0.01), rgba(63, 81, 153, 0.01));
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(63, 81, 153, 0.01)), to(rgba(63, 81, 153, 0.01)));
  background: linear-gradient(0deg, rgba(63, 81, 153, 0.01), rgba(63, 81, 153, 0.01));
  background-blend-mode: multiply, normal;
  border: 1px solid #D8E7FF;
  -webkit-box-shadow: 0px 0px 20px rgba(63, 81, 153, 0.06), 0px 1.74199px 60px rgba(63, 81, 153, 0.2);
  box-shadow: 0px 0px 20px rgba(63, 81, 153, 0.06), 0px 1.74199px 60px rgba(63, 81, 153, 0.2);
  background: #FFFFFF;
  border-radius: 20px;
  height: 460px;
  position: relative;
  z-index: 2;
}

.numbers-video::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 1320px;
  height: 1320px;
  background-image: url(../img/circles.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: calc(50% - 660px);
  left: calc(50% - 660px);
  /*   -webkit-transform: translate(-50%, -50%); */
  /*           transform: translate(-50%, -50%); */
  z-index: 1;
  -webkit-animation: scale-circle 1s ease-in-out 0s infinite alternate;
  animation: scale-circle 1s ease-in-out 0s infinite alternate;
}

.numbers-video__video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 20px;
}

.numbers-circles {
  position: relative;
}

.numbers-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid #E9F2FF;
  -webkit-box-shadow: 0px 0px 10px rgba(63, 81, 153, 0.05), 0px 2px 55px rgba(63, 81, 153, 0.15);
  box-shadow: 0px 0px 10px rgba(63, 81, 153, 0.05), 0px 2px 55px rgba(63, 81, 153, 0.15);
  border-radius: 20px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: motion-card 2s ease-in-out 0s infinite alternate;
  animation: motion-card 2s ease-in-out 0s infinite alternate;
}

.numbers-card:nth-of-type(2) {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  position: absolute;
  top: 0;
  left: -230px;
}

.numbers-card:nth-of-type(3) {
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
  position: absolute;
  top: 130px;
  left: -300px;
}

.numbers-card:nth-of-type(4) {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  position: absolute;
  top: 280px;
  left: -270px;
}

.numbers-card:nth-of-type(5) {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  position: absolute;
  top: 500px;
  left: -280px;
}

.numbers-card:nth-of-type(6) {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  position: absolute;
  top: 650px;
  left: 0px;
}

.numbers-card:nth-of-type(7) {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  position: absolute;
  top: 50px;
  right: -260px;
}

.numbers-card:nth-of-type(8) {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  position: absolute;
  top: 200px;
  right: -400px;
}

.numbers-card:nth-of-type(9) {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  position: absolute;
  top: 350px;
  right: -270px;
}

.numbers-card:nth-of-type(10) {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  position: absolute;
  top: 550px;
  right: -200px;
}

.numbers-card__photo {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-right: 16px;
  border-radius: 10px;
}

.numbers-card__name {
  margin-bottom: 5px;
}

.numbers-card__result {
  color: #247462;
  font-weight: 700;
}

.process .questions-card {
  margin-top: 0;
  background-color: #3F5199;
}

.process .questions-card__title {
  color: #F5F6FA;
}

.process .questions-card__desc {
  color: #F5F6FA;
}

.process .questions-card__btn-desc {
  color: #F5F6FA;
}

.process .questions-card__img {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 50px;
  width: 603px;
  height: auto;
}

.process .img_box:before {
  position: absolute;
  content: '';
  width: 540px;
  height: 380px;
  right: 50px;
  top: 27px;
  border-radius: 20px;
  background: #4F6AD9;
  -webkit-filter: blur(165px);
  filter: blur(165px);
}

.process .questions-card__link {
  background-color: #fff !important;
  color: #18181A !important;

}

.process .button-medium .arrow {
  background: url(../img/button-medium-arrow-black.svg) no-repeat center;
  width: 22px;
}

.shield {
  padding-top: 120px;
}

.shield__title {
  margin-bottom: 10px;
}

.shield-card {
  margin-top: 60px;
}

.shield-card__title {
  margin-bottom: 20px;
}

.garanty {
  padding-top: 120px;
}

.garanty-card {
  background: #E9F2FF;
  border: 2px solid #D8E7FF;
  border-radius: 20px;
  padding: 25px 60px 50px 60px;
}

.garanty-card__img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  height: 300px;
}

.garanty-card__title {
  margin-bottom: 10px;
}

.garanty-card__desc {
  margin-bottom: 30px;
}

.garanty-card__link {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.garanty-item {
  margin-bottom: 30px;
}

.garanty-item-icon-wrap {
  padding: 11px;
  background: #FFF4E7;
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.garanty-item__icon {
  width: 28px;
  height: 28px;
}

.garanty-item__title {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #3C456C;
}

.consult {
  padding-top: 120px;
}

.consult .questions-card {
  margin-top: 0;
  overflow: hidden;
  position: relative;
}

.consult .questions-card::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 490px;
  height: 560px;
  background-image: url(../img/consult-line.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 80px;
  right: 80px;
  z-index: 2;
}

.consult .questions-card-badge {
  padding: 7px 40px 7px 30px;
  position: absolute;
  bottom: 15px;
  right: 380px;
  display: inline-block;
  z-index: 4;
}

.consult .questions-card-badge::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #FFF4E7;
  -webkit-transform: skew(-20deg, 0deg);
  -ms-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.consult .questions-card-badge__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  text-align: right;
  position: relative;
  z-index: 2;
}

.consult .questions-card-badge__status {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-align: right;
  position: relative;
  z-index: 2;
}

.consult .questions-card__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  display: inline-block;
}

.consult .questions-card__title {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.consult .questions-card__subtitle {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.consult .questions-card__link {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.consult .questions-card__img {
  position: absolute;
  display: inline-block;
  top: 20px;
  right: 71px;
  height: 640px;
  z-index: 3;
}

.consult .questions-card-array {
  list-style: numeric;
  padding-left: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.consult .questions-card-array__item {
  margin-bottom: 5px;
}

.faq {
  padding-top: 120px;
}

.faq .consult .questions-card__img {
  right: 100px;
  height: 554px;
}

.faq__title {
  margin-bottom: 30px;
}

.faq .garanty-card__img {
  height: 100px;
  margin: 0;
  margin-bottom: 60px;
  margin-top: 50px;
}

.faq-card:first-child>div {
  border-top: none;
}

.faq-card-top {
  border-bottom: 2px solid #D8E7FF;
  padding: 20px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.faq-card-bottom {
  padding: 20px 5px;
  display: none;
  border-bottom: 2px solid #D8E7FF;
}

.faq-card__title {
  color: #3C456C;
}

.faq-card__arrow {
  display: inline-block;
  background: url(../img/faq-arrow.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 8px;
}

.faq-card__desc b {
  opacity: 1;
  color: #18181A;
}

.faq-card__btn {
  margin-top: 20px;
}

.contacts-section {
  margin: 0 auto;
  margin-top: 180px;
  position: relative;
  width: 1360px;
  max-width: 100%;
}

.contacts-section .contacts-map {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contacts-section .contacts-map iframe {
  border-radius: 20px;
}

.contacts-section .contacts-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}

.contacts-section .contacts-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contacts-section .contacts-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  top: 60px;
  right: 80px;
  position: absolute;
}

.contacts-section .contacts-card__link {
  margin-top: 30px;
  width: 100%;
}

.contacts-section .contacts-card__address {
  margin-bottom: 20px;
  margin-top: 5px;
}

.contacts-section .contacts-card .accent {
  color: #3C456C;
}

.footer {
  padding-bottom: 60px;
  padding-top: 100px;
  margin-top: 180px;
  -webkit-box-shadow: 0px -4px 20px rgba(60, 69, 108, 0.05);
  box-shadow: 0px -4px 20px rgba(60, 69, 108, 0.05);
}

.footer-menu__link {
  margin-bottom: 10px;
  display: block;
}

.footer__title {
  margin-bottom: 10px;
}

.footer__subtitle {
  margin-bottom: 20px;
}

.footer-contacts {
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social-card {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  margin-right: 15px;
}

.footer-social-card__icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-social__desc {
  opacity: 0.5;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #18181A;
  margin-top: 10px;
}

.footer-social__desc span {
  font-size: 14px;
}

.footer-right {
  text-align: right;
}

.footer-right .header-bottom__link {
  width: 200px;
  margin: 0;
  margin-bottom: 15px;
}

.footer-right .header-top-contacts__tel {
  display: block;
  margin-top: 5px;
}

.footer-bottom {
  margin-top: 30px;
}

.footer-bottom .footer__subtitle {
  margin-top: 20px;
}

.footer-bottom .separator {
  display: inline-block;
  margin: 0 15px;
}

.footer__link {
  margin-bottom: 5px;
  display: block;
  opacity: 0.5;
}

.footer__link:hover {
  color: inherit;
}

.footer__link[href] {
  font-weight: 600;
  text-decoration: underline;
}

.reviews {
  padding-top: 120px;
}

.reviews-card {
  width: 1600px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 20px;
  background-position: top center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  margin-bottom: 60px;
}

.reviews-card::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: -o-linear-gradient(bottom, rgba(49, 51, 61, 0.1), rgba(49, 51, 61, 0.1)), -o-linear-gradient(left, rgba(49, 51, 61, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(49, 51, 61, 0.1)), to(rgba(49, 51, 61, 0.1))), -webkit-gradient(linear, left top, right top, from(rgba(49, 51, 61, 0.7)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(49, 51, 61, 0.1), rgba(49, 51, 61, 0.1)), linear-gradient(90deg, rgba(49, 51, 61, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.reviews-card__title {
  margin-bottom: 10px;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.reviews-card__subtitle {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.reviews-block {
  margin-bottom: 60px;
}

.reviews-block:last-child {
  margin-bottom: 0;
}

.reviews-block__name {
  margin-bottom: 20px;
}

.reviews-block__link {
  color: #3F5199;
  text-decoration: underline;
  margin-bottom: 10px;
  display: block;
}

.reviews-block__date {
  opacity: 0.8;
}

.reviews__link {
  display: block;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.header-bottom-nav__link--parent::after {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.header-bottom-nav__link--parent.active::after {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.faq-card__arrow {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.faq-card-top {
  cursor: pointer;
}

.faq-card-top.active .faq-card__arrow {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu-burger,
.mobile-menu {
  display: none;
}

body.overflow {
  overflow: hidden;
}

.voice-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F5F6FA;
  padding: 15px;
  border: 1px solid #D8E7FF;
  border-radius: 20px;
}

.shield-card__play {
  -ms-flex-preferred-size: 70px;
  flex-basis: 70px;
  min-width: 70px;
  width: 70px;
  height: 70px;
  background-color: #3C456C;
  background-image: url(../img/play-voice.svg);
  background-repeat: no-repeat;
  background-position: 21px center;
  background-size: 29px 29px;
  border-radius: 20px;
}

.shield-card__play.active {
  background-image: url(../img/pause-voice.svg);
}

.shield-card__time {
  min-width: 84px;
  margin-left: 15px;
  margin-right: 15px;
}

.shield-card__voice {
  width: 100%;
}

.questions-card__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.questions-card__btn-desc {
  color: #3C456C;
  margin-left: 20px;
}

.voice-wrap-progress {
  width: 100%;
}

.form {
  position: relative;
  z-index: 2;
}

.form__input {
  margin-bottom: 10px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 18px 30px;
  border: 2px solid #D8E7FF;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.form-input-wrap {
  position: relative;
}

.form-input-wrap.tel::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 25px;
  height: 20px;
  background-image: url(../img/russia.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: calc(50% - 15px);
  left: 30px;
  z-index: 2;
}

.form-input-wrap.tel::after {
  position: absolute;
  content: '+7';
  display: inline-block;
  background-image: url();
  top: calc(50% - 14px);
  left: 65px;
  font-size: 18px;
  line-height: 1;
  z-index: 2;
}

.form-input-wrap.tel .form__input {
  padding-left: 87px;
}

.form__submit {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 16px;
  opacity: 0.5;
  color: #18181A;
}

.form__desc a {
  text-decoration: underline;
}

.action .questions-card::before {
  display: none;
}

.action .questions-card__title {
  margin-bottom: 10px;
}

.action .questions-card__bg {
  height: 550px;
  width: 550px;
}

.testimonials .text .reviews__link {
  margin-top: 60px;
}

.testimonials .audio {
  padding-top: 60px;
}

.testimonials .audio .reviews__link {
  margin-top: 60px;
}

.testimonials .simple {
  padding-top: 60px;
}

.testimonials .simple__title {
  margin-bottom: 10px;
}

.testimonials .video {
  margin-top: 60px;
}

.testimonials .video .reviews-card {
  background-position: center;
}

.testimonials .video-card {
  margin-bottom: 62px;
}

.testimonials .video-card-video {
  border-radius: 5px;
  position: relative;
  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;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonials .video-card-video::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 40px;
  height: 45px;
  background-image: url(../img/video-play.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials .video-card-video::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(bottom, #E0E0E0, #E0E0E0);
  background: -webkit-gradient(linear, left bottom, left top, from(#E0E0E0), to(#E0E0E0));
  background: linear-gradient(0deg, #E0E0E0, #E0E0E0);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
}

.testimonials .video-card-video__img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials .video-card__name {
  padding-left: 10px;
  margin-bottom: 10px;
}

.testimonials .video-card__link {
  padding-left: 10px;
  display: block;
  color: #3F5199;
  text-decoration: underline;
}

.testimonials .stories {
  padding-top: 120px;
}

.testimonials .stories .reviews-card__link,
.testimonials .text .reviews-card__link {
  margin-top: 30px;
  color: #18181A;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}

.testimonials .stories-slider {
  margin-top: 60px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.testimonials .stories-slider .swiper-button-next,
.testimonials .stories-slider .swiper-button-prev {
  margin-top: -40px;
  width: 20px;
  height: 20px;
}

.testimonials .stories-slider .swiper-button-next::after,
.testimonials .stories-slider .swiper-button-prev::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/slider-arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials .stories-slider .swiper-button-next::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.testimonials .stories-slider .swiper-pagination {
  bottom: 0;
}

.testimonials .stories-slider .swiper-pagination-bullet {
  width: 80px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: relative;
  opacity: 1;
}

.testimonials .stories-slider .swiper-pagination-bullet::after {
  position: absolute;
  content: '';
  display: inline-block;
  background: #FFFFFF;
  opacity: 0.8;
  width: 0%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
}

.testimonials .stories-slider .swiper-pagination-bullet-active::after {
  width: 100%;
  -webkit-animation: stories-bullet 5s linear 0s 1 alternate;
  animation: stories-bullet 5s linear 0s 1 alternate;
}

.testimonials .stories-slider-slide {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #FFFFFF;
  border-radius: 20px;
}

.testimonials .stories-slider-slide__img {
  border-radius: 20px;
  width: 200px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonials .stories-slider-slide__title {
  margin-bottom: 10px;
  color: #18181A;
}

.testimonials .stories-slider-slide__desc {
  margin-bottom: 20px;
  color: #3C456C;
  max-width: 700px;
}

.testimonials .stories-slider-slide__link {
  width: auto;
  display: inline-block;
}

.testimonials .stories-slider-slide-wrap {
  height: 100%;
  margin-left: 30px;
}

.questions-card__title {
  color: #3C456C;
}

.home .reviews .reviews__link {
  margin-top: 60px;
}

.header-bottom-nav-subnav__link {
  display: block;
}

.main {
  overflow: hidden;
}

.faq.main {
  padding-top: 0;
}

.faq .reviews-card {
  margin-bottom: 60px;
}

.faq .consult {
  padding-top: 40px;
}

.faq .consult .questions-card__link {
  font-size: 18px;
  padding: 20px 25px;
}

.faq .consult .questions-card-array__item {
  font-size: 16px;
}

.faq .consult .questions-card__subtitle {
  font-size: 18px;
}

.faq .consult .questions-card__title {
  line-height: 1.2;
  font-size: 24px;
}

.faq .consult .questions-card__img {
  top: unset;
  bottom: 0;
}

.faq .questions-card {
  padding: 60px;
}

.faq .reviews-card::after {
  display: none;
}

.faq .reviews-card__subtitle {
  opacity: 0.8;
}

.faq .list,
.faq .faq-list {
  padding-top: 120px;
}

.faq .list:nth-of-type(2),
.faq .faq-list:nth-of-type(2) {
  padding-top: 60px;
}

.search-form {
  margin-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.search-form__input {
  padding: 21px 30px;
  background: #FFFFFF;
  border: 2px solid #3C456C;
  border-radius: 10px;
  width: 100%;
}

.search-form__submit {
  padding: 21px 110px;
  background: #3C456C;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #3C456C;
}

.search-form__delete {
  display: none;
  width: 24px;
  height: 24px;
  background: url(../img/delete.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 24px;
  cursor: pointer;
}

.search-form__delete.active {
  display: inline-block;
}

.breadcrumbs {
  margin-bottom: 30px;
  margin-top: 30px;
}

.breadcrumbs .breadcrumbs__item {
  opacity: 0.8;
  vertical-align: middle;
}

.breadcrumbs .breadcrumbs__item.active {
  color: #3F5199;
}

.breadcrumbs .separator {
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  width: 15px;
  background: #18181A;
  opacity: 0.8;
  border-radius: 10px;
}

.search-card {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: none;
}

.search-card .faq-card__arrow,
.search-card .faq-card-bottom {
  display: none;
}

.search-card .faq-card:last-child>.faq-card-top {
  border-bottom: none;
}

.search-wrap {
  background: #fff;
  padding: 30px 60px;
  -webkit-box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.1);
  box-shadow: 0px 4px 20px rgba(60, 69, 108, 0.1);
  border: 1px solid #E9F2FF;
  border-radius: 20px;
  margin-top: 20px;
  max-width: 1100px;
}

.histories .simple {
  margin-top: 60px;
}

.histories .simple__subtitle {
  position: relative;
  display: inline-block;
}

.histories .simple__subtitle::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 117px;
  height: 80px;
  background-image: url(../img/histories-arrow.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 70px;
  right: 180px;
}

.histories .list {
  padding-top: 120px;
  padding-bottom: 120px;
}

.histories .list .row>div {
  margin-bottom: 22px;
}

.histories .list-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  padding: 30px 60px;
  height: 100%;
  overflow: hidden;
  opacity: 0.9;
  border-radius: 20px 20px 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.histories .list-card.img-right .list-card__img {
  right: 10px;
}

.histories .list-card.img-left .list-card__img {
  left: 10px;
}

.histories .list-card.text-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.histories .list-card.text-center .list-card__title {
  text-align: center;
}

.histories .list-card__img {
  position: absolute;
  top: 10px;
}

.histories .list-card__title {
  color: #FFFFFF;
}

.histories .category {
  padding-top: 0;
}

.histories .category .reviews-card {
  overflow: hidden;
}

.histories .category .reviews-card::after {
  display: none;
}

.histories .category .reviews-card__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 0;
  height: calc(100% - 20px);
}

.histories .category .button-light {
  margin-top: 20px;
}

.histories .category .reviews-block__name:nth-child(3) {
  margin-bottom: 10px;
}

.histories .category .reviews-block__name:nth-child(4) {
  margin-bottom: 10px;
}

.post__date {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #18181A;
  opacity: 0.8;
  margin-bottom: 10px;
}

.post__author {
  color: #18181A;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 20px;
}

.post .content h1 {
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 45px;
  line-height: 53px;
  color: #18181A;
}

.post .content h2,
.post .content h3,
.post .content h4,
.post .content h5 {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 20px;
}

.post .content p {
  font-weight: 500;
  font-size: 21px;
  line-height: 35px;
  letter-spacing: 0.003em;
  color: #18181A;
  margin-bottom: 20px;
  font-family: 'Noto Serif', serif;
  -webkit-font-feature-settings: 'pnum' on, 'lnum' on;
  font-feature-settings: 'pnum' on, 'lnum' on;
}

.post .content img:not(.post-card__img) {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 30px;
  margin-bottom: 30px;
}

.post-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px;
  padding-right: 110px;
  border: 1px solid rgba(43, 58, 78, 0.15);
  border-radius: 10px;
  width: 100%;
  background: #FFFFFF;
  margin-bottom: 50px;
  margin-top: 50px;
}

.post-card__img {
  height: 124px;
  width: 156px;
  min-width: 156px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 30px;
  border-radius: 10px;
}

.post-card-top {
  margin-bottom: 10px;
}

.post-card__category {
  display: inline-block;
  border: 1px solid #B7E9C4;
  border-radius: 5px;
  background: #E8FBED;
  padding: 5px 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #2C895C;
  opacity: 1;
}

.post-card__date {
  display: inline-block;
  margin-right: 15px;
}

.post-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.consult {
  padding-top: 100px;
}

.consult.small-card {
  position: absolute;
  width: 100%;
  padding: 0;
}

.consult.small-card .questions-card {
  padding-right: 30px;
  padding-left: 30px;
  margin: 0;
}

.consult.small-card .questions-card__title {
  margin-bottom: 30px;
}

.consult.small-card .questions-card__bg {
  height: 450px;
  width: 450px;
  top: 0;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.consult.small-card .form__desc {
  text-align: center;
}

.consult.small-card .form__desc br {
  display: none;
}

.consult.small-card .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.consult.small-card .row>div {
  width: 100%;
  padding: 0;
}

.post-form-wrap {
  position: relative;
  height: 100%;
}

.popups {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
}

.popups .overlay {
  -webkit-backdrop-filter: blur(150px);
  backdrop-filter: blur(150px);
  background: #3C456C;
  opacity: 0.4;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.popups .popup {
  z-index: 3;
  position: absolute;
  display: none;
  background: #FFFFFF;
  border-radius: 20px;
}

.popups .popup__close {
  position: absolute;
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url(../img/popup-close.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 30px;
  right: 30px;
}

.popups .team-popup {
  width: 1000px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 100px;
  padding-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.popups .team-popup-right {
  margin-left: 60px;
}

.popups .team-popup__img {
  border-radius: 10px;
  height: 306px;
  width: 288px;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center -20px;
  object-position: center -20px;
}

.popups .team-popup__title {
  margin-bottom: 20px;
}

.popups .team-popup__subtitle {
  margin-bottom: 10px;
}

.popups .team-popup-list {
  margin-bottom: 20px;
  list-style: inside;
}

.popups .team-popup-list__item {
  margin-bottom: 5px;
  opacity: 0.8;
}

.popups .team-popup__result {
  background: #FFF4E7;
  border-radius: 10px;
  padding: 20px;
}

.blog .breadcrumbs {
  margin-bottom: 30px;
}

.blog .simple {
  padding-top: 60px;
}

.blog .simple .reviews-card {
  margin-bottom: 60px;
}

.blog .simple .reviews-card::after {
  display: none;
}

.blog .attached-post {
  margin-bottom: 40px;
}

.blog .posts .row>div {
  margin-bottom: 15px;
}

.blog .posts .list-card {
  height: 100%;
  margin: 0;
}

.blog .list-card {
  background: #FFFFFF;
  border: 1px solid rgba(43, 58, 78, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 40px;
  display: block;
}

.blog .list-card-wrap {
  margin-top: 20px;
}

.blog .list-card__img {
  height: 260px;
  border-radius: 10px;
  display: block;
  width: calc(100% + 60px);
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 -30px;
}

.blog .list-card__date {
  opacity: 0.5;
}

.blog .list-card__term {
  padding: 5px 15px;
  display: inline-block;
  margin-left: 15px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.blog .list-card__term.green {
  background: #E8FBED;
  border: 1px solid #B7E9C4;
  color: #2C895C;
}

.blog .list-card__term.blue {
  background: #E9F2FF;
  border: 1px solid #D8E7FF;
  color: #3F5199;
}

.blog .list-card__term.yellow {
  color: #B18046;
  background: #FFF4E7;
  border: 1px solid #F4D4AE;
}

.blog .list-card__title {
  margin-top: 10px;
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

.blog .list-nav {
  margin-bottom: 30px;
}

.blog .list-nav__link {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #18181A;
  margin-bottom: 10px;
}

.blog .list-shorts {
  display: block;
}

.blog .list-shorts__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #FF3D3D;
  position: relative;
  padding-left: 32px;
}

.blog .list-shorts__title::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url(../img/shorts-icon.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 2px;
  left: 0;
}

.blog .list-shorts__desc {
  display: block;
  margin-top: 10px;
  color: #181811;
}

.blog .blog-card {
  margin-bottom: 60px;
  background: #247864;
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.blog .blog-card>* {
  position: relative;
  z-index: 2;
}

.blog .blog-card::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 390px;
  height: 390px;
  background-image: url(../img/faq-card-logo.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 20px;
  right: -54px;
}

.blog .blog-card__title {
  color: #FFFFFF;
  margin-bottom: 10px;
}

.blog .blog-card__desc {
  margin-bottom: 30px;
  color: #FFFFFF;
}

.blog .blog-card__link {
  background: #509383;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 76px;
}

.blog .shorts {
  margin-top: 25px;
  margin-bottom: 40px !important;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  background: #F4D4AE;
  border-radius: 20px;
  margin-left: -30px;
  margin-right: -80px;
  position: relative;
  overflow: hidden;
}

.blog .shorts .swiper-button-next {
  z-index: 3;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  opacity: 1 !important;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: unset;
  bottom: 148px;
}

.blog .shorts .swiper-button-next::after {
  content: '';
  background: url(../img/shorts-arrow.svg) no-repeat center;
  width: 9px;
  height: 16px;
  background-size: contain;
}

.blog .shorts .swiper-button-prev {
  z-index: 3;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  opacity: 1 !important;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: unset;
  bottom: 148px;
}

.blog .shorts .swiper-button-prev.swiper-button-disabled,
.blog .shorts .swiper-button-next.swiper-button-disabled {
  opacity: 0.5 !important;
}

.blog .shorts .swiper-button-prev::after {
  content: '';
  background: url(../img/shorts-arrow.svg) no-repeat center;
  width: 9px;
  height: 16px;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.blog .shorts::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 140px;
  height: 100%;
  background: -o-linear-gradient(right, #F4D4AE 10%, rgba(244, 212, 174, 0) 100%);
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, #F4D4AE), to(rgba(244, 212, 174, 0)));
  background: linear-gradient(270deg, #F4D4AE 10%, rgba(244, 212, 174, 0) 100%);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* .blog .shorts::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 140px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(10%, #F4D4AE), to(rgba(244, 212, 174, 0)));
  background: linear-gradient(270deg, #F4D4AE 10%, rgba(244, 212, 174, 0) 100%);
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
} */

.blog .shorts .stories.list {
  white-space: unset;
  overflow: unset;
}

.blog .shorts-list {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.blog .shorts .story {
  opacity: 1 !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 280px !important;
  cursor: pointer;
}

.blog .shorts .story::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(50, 50, 50, 0) 64.62%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(64.62%, rgba(50, 50, 50, 0)));
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 0%, rgba(50, 50, 50, 0) 64.62%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.blog .shorts .story::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/video-play.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog .shorts .story .item-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.blog .shorts .story .item-preview {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  border-radius: 0px !important;
  width: 100% !important;
  height: 100% !important;
  max-width: unset !important;
}

.blog .shorts .story .item-preview img {
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0px !important;
  max-width: unset !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.blog .shorts .story .info {
  padding: 20px 15px;
  position: relative;
  z-index: 3;
  color: #fff;
  display: block !important;
  line-height: 1 !important;
}

.blog .shorts .story .info .name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
}

.blog .shorts .story .info .time {
  display: none !important;
}

.blog .shorts .story .item-preview {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#zuck-modal-content .story-viewer .head .left {
  display: none !important;
}

#zuck-modal-content .story-viewer .slides-pointers {
  top: unset;
  bottom: 0;
  width: 470px;
  max-width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  right: unset;
}

#zuck-modal-content .story-viewer .slides .item>.media {
  height: 830px;
  width: 470px;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 10px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#zuck-modal-content .story-viewer .slides .item {
  background: unset;
  background: rgba(60, 69, 108, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#zuck-modal {
  background: unset;
}

#zuck-modal-content .story-viewer>.slides {
  background: unset;
}

.thanks .thanks .thanks__desc {
  opacity: 1;
}

.thanks.testimonials .stories {
  padding-top: 0 !important;
}

.thanks.blog .shorts {
  margin: 0;
  margin-top: 120px;
  margin-bottom: 0 !important;
}

.thanks .thanks {
  margin-top: 0 !important;
  padding-bottom: 60px;
}

.thanks .reviews .reviews-card::after,
.thanks .video .reviews-card::after {
  display: block !important;
}

.thanks .reviews .reviews-card__subtitle,
.thanks .video .reviews-card__subtitle {
  opacity: 1 !important;
}

.thanks .question {
  padding-top: 200px;
}

.thanks .question .reviews-card {
  position: relative;
  background: -o-linear-gradient(left, #30AD7B 0%, #47D99E 100%);
  background: -webkit-gradient(linear, left top, right top, from(#30AD7B), to(#47D99E));
  background: linear-gradient(90deg, #30AD7B 0%, #47D99E 100%);
}

.thanks .question .reviews-card__subtitle {
  opacity: 1;
  margin-bottom: 30px;
}

.thanks .question .reviews-card__img {
  width: 390px;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.thanks .question .reviews-card__link {
  border: 1px solid #B7E9C4;
  background: #FFFFFF;
  color: #2C895C;
}

.thanks .garanty .garanty-card__img {
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  height: 300px;
}

.privacy {
  margin-top: 50px;
}

.privacy__title {
  margin-bottom: 20px;
  color: #18181A;
  opacity: 0.8;
}

.privacy p {
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  color: #18181A;
  opacity: 0.8;
}

.quiz-page {
  display: none;
}

.quiz-page.active {
  display: block;
}

.quiz {
  padding-bottom: 0 !important;
}

.quiz-area {
  display: none;
}

.quiz-area.active {
  display: block;
}

.quiz__back {
  display: none;
}

.quiz__back.active {
  display: inline-block;
}

.quiz-area.quiz-final {
  padding: 0;
  overflow: hidden;
}

.quiz-area.quiz-final .final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.quiz-area.quiz-final .final-left {
  width: 50%;
  padding-top: 100px;
  padding-left: 100px;
}

.quiz-area.quiz-final .final__title {
  margin-bottom: 40px;
}

.quiz-area.quiz-final .final__subtitle {
  margin-bottom: 10px;
}

.quiz-area.quiz-final .final__desc {
  max-width: 330px;
  line-height: 1.5;
}

.quiz-area.quiz-final .final-right {
  width: 50%;
  height: 100%;
}

.quiz-area.quiz-final .final .quiz-form__title {
  display: inline-block;
  margin-bottom: 30px;
  color: #FFFFFF;
  opacity: 1;
  padding: 5px 15px;
  background: #3F5199;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.quiz-area.quiz-final .final .consult {
  padding: 0;
  height: 100%;
}

.quiz-area.quiz-final .final .questions-card {
  width: 100%;
  height: 100%;
  max-width: unset;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.quiz-area.quiz-final .final .form__desc {
  text-align: center;
}

.menu-button {
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.menu-button:hover {
  background: #D8E7FF;
  border-color: #B3CCF3;
  color: #3F5199;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.menu-button:active {
  border-color: #C8DBFA;
  background: #F4F9FF;
  color: #6E7FC9;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.menu-button.green:hover {
  background: #B7E9C4;
  border-color: #72CD8A;
  color: #2C895C;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.menu-button.green:active {
  background: #F1FFF5;
  border-color: #B7E9C4;
  color: #569E7B;
  -webkit-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.button-medium {
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.button-medium:hover {
  background: #3C456C;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.button-medium:active {
  background: #5F72BE;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.popup[data-target="order-call"] {
  background: #FFF4E7;
}

.popup[data-target="order-call"] .popup-form {
  max-width: 390px;
  margin: 0 auto;
}

.numbers-video-wrap {
  position: relative;
  cursor: pointer;
}

.numbers-video-wrap.disactive::after {
  position: absolute;
  content: 'Посмотреть видео-презентацию нашей компании';
  display: inline-block;
  width: 170px;
  height: 58px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3C456C;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.numbers-video-wrap.disactive::before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 32px;
  height: 41px;
  background-image: url(../img/touch-video.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 375px) {
  .popups .team-popup__img {
    -o-object-position: center;
    object-position: center;
  }
}

.questions-card-img {
  position: absolute;
  top: 280px;
  -webkit-transform: translateY(-50%) rotate(-13deg);
  -ms-transform: translateY(-50%) rotate(-13deg);
  transform: translateY(-50%) rotate(-13deg);
  right: -30px;
}

.questions-card {
  position: relative;
  overflow: hidden;
}

.garanty .garanty-card {
  background-color: #3F5199;
  border-color: #3F5199;
}

.garanty .button-medium {
  background-color: #fff;
  color: #3F5199;
}

.garanty .button-medium:hover {
  background-color: #FFF4E7 !important;
}

.garanty .garanty-card__title {
  color: #fff;
}

.garanty .garanty-card__desc {
  color: #fff;
}

.questions .questions-card {
  background-color: #3F5199;
  overflow: visible;
}

.questions .questions-card__title {
  color: #fff;
}

.questions .button-medium {
  background-color: #fff;
  color: #3F5199;
}

.questions .button-medium:hover {
  background-color: #FFF4E7 !important;
}

.questions .questions-card__desc {
  color: #fff;
}

.questions .button-medium .arrow {
  background: url(../img/button-medium-arrow-blue.svg) no-repeat center;
  width: 22px;
}

.office-slider-wrapper {
  height: auto !important;
}

@media (max-width: 1200px) {
  .questions-card-img {
    opacity: 0.2;
  }

  .garanty .garanty-card__img {
    opacity: 0.2;
  }

  .questions .questions-card__img {
    right: 50px !important;
    left: unset !important;
    top: -3px;
    height: 310px;
    width: auto;
  }

  .process .questions-card__img {
    left: unset;
    right: 20px;
    height: auto;
    width: 500px;
  }

  .consult .questions-card__img {
    position: absolute;
    display: inline-block;
    top: 70px;
    right: 65px;
    height: 390px;
    left: unset;
    z-index: 3;
  }

  .consult .questions-card::before {
    display: inline-block !important;
    width: 388px;
    height: 334px;
    bottom: 0;
    top: unset;
    right: 30px;
    z-index: 2;
    background-size: contain;
  }

  .consult .questions-card-badge {
    right: 178px;
  }

  .services .questions-card-img {
    opacity: 1;
  }

  .faq .consult .questions-card__img {
    right: 66px;
    height: 385px;
  }
}

@media (max-width: 991px) {
  .consult .questions-card::before {
    display: none !important;
  }

  .questions .questions-card__img {
    opacity: 1;
    position: static;
    left: unset;
    right: unset;
    top: unset;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    bottom: unset;
    margin: 0 auto;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
  }

  .questions .questions-card {
    overflow: hidden;
  }

  .process .questions-card__img {
    position: static;
    left: unset;
    right: unset;
    top: unset;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    bottom: unset;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    opacity: 1;
  }

  .services .questions-card-img {
    opacity: 1;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    bottom: unset;
    width: 100%;
    height: unset;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .services .questions-card {
    background: -o-linear-gradient(top, #2C3352 -20.7%, rgba(46, 54, 87, 0.97) -11.23%, rgba(49, 58, 94, 0.75) 2.34%, rgba(63, 81, 153, 0) 23.9%), -o-linear-gradient(bottom, #2C3352 47.37%, rgba(46, 54, 87, 0.97) 53.47%, rgba(49, 58, 94, 0.75) 62.21%, rgba(63, 81, 153, 0) 76.1%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-20.7%, #2C3352), color-stop(-11.23%, rgba(46, 54, 87, 0.97)), color-stop(2.34%, rgba(49, 58, 94, 0.75)), color-stop(23.9%, rgba(63, 81, 153, 0))), -webkit-gradient(linear, left bottom, left top, color-stop(47.37%, #2C3352), color-stop(53.47%, rgba(46, 54, 87, 0.97)), color-stop(62.21%, rgba(49, 58, 94, 0.75)), color-stop(76.1%, rgba(63, 81, 153, 0)));
    background: linear-gradient(180deg, #2C3352 -20.7%, rgba(46, 54, 87, 0.97) -11.23%, rgba(49, 58, 94, 0.75) 2.34%, rgba(63, 81, 153, 0) 23.9%), linear-gradient(360deg, #2C3352 47.37%, rgba(46, 54, 87, 0.97) 53.47%, rgba(49, 58, 94, 0.75) 62.21%, rgba(63, 81, 153, 0) 76.1%);
  }

  .services .questions-card-list {
    margin-bottom: 200px;
  }

}


@media (max-width: 700px) {
  .services .questions-card-img {
    height: 50%;
    -o-object-fit: unset;
    object-fit: unset;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.main .main-banner img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gray-post-block {
  border-radius: 20px;
  background: #EBEBF0;
  padding: 50px 0;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.gray-post-block h2 {
  margin-bottom: 40px;
}

.slider {
  position: relative;
}

.other-post .block {
  padding: 1px;
}

.other-post .block .img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
}

.other-post .block .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 10px;
}

.other-post .block .cont {
  border-radius: 10px;
  border: 1px solid rgba(43, 58, 78, 0.15);
  background: #FFF;
  padding: 40px 30px;
  margin-top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.other-post .block .data {
  color: #18181A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

.other-post .block .tag {
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid #F4D4AE;
  background: #FFF4E7;
  color: #B18046;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.other-post .block .name {
  color: #18181A;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  display: block;
}

.slider .navigate {
  position: absolute;
  top: -73px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider .navigate .swiper-button-next,
.slider .navigate .swiper-button-prev {
  position: unset;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
}

.slider .navigate .swiper-button-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}


.slider .navigate .swiper-button-next::after,
.slider .navigate .swiper-button-prev::after {
  display: none;
}

.sw-review-bottom a {
  display: none !important;
  z-index: -1;
  position: absolute;
  top: -1000000px;
}

.sw-review-box-tabs-body {
  display: none !important;
}

.sw-review-box-tabs {
  display: none;
}

.sw-review-box-right span,
.sw-review-bottom span {
  background: #3F5199;
  border-radius: 10px;
  padding: 16px 60px;
  color: #FFFFFF;
  border: none;
  font-size: 20px;
}

.sw-review-bottom span:after {
  content: ' отзывы';
}


@media (max-width: 767px) and (min-width: 480px) {
  #sw-app-21d6df74fd93f42fba5c04398e703d6b .sw-review-list-body {
    grid-template-columns: repeat(1, minmax(100px, 1fr)) !important;
  }

  #sw-app-21d6df74fd93f42fba5c04398e703d6b .sw-review-box-bottom {
    gap: 20px;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}


@media (max-width: 767px) {
  .gray-post-block h2 {
    text-align: center;
  }

  .slider .navigate {
    top: 80px;
    width: calc(100% + 10px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: -5px;
    right: -5px;
  }

  .gray-post-block .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .other-post .block .data,
  .other-post .block .tag {
    font-size: 12px;
  }

  .other-post .block .data {
    width: 100%;
  }

  .other-post .block .name {
    font-size: 18px;
  }

  .other-post .block .cont {
    gap: 10px;
  }
}