@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-ExtraBold.ttf);
  font-weight: 800;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

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

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

.ul-style-none {
  padding: 0;
  margin: 0;
}
.ul-style-none li {
  padding: 0;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
  outline: none !important;
  -webkit-appearance: none;
}

.modal__bg {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
}

.modal {
  max-width: 700px;
  width: 100%;
  height: calc(90vh - 30px);
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 90;
  display: none;
}
.modal.active, .modal__bg.active {
  display: block;
}
.modal-body {
  width: 100%;
  height: 100%;
  padding: 50px 30px 30px;
  position: relative;
}
.modal-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
.modal-content {
  width: 100%;
  height: 80%;
  overflow-y: auto;
  padding-right: 20px;
}
#info .modal-content br {
  display: none;
}
#info .modal-content p {
  margin: 0;
}
.modal .wpcf7 form .wpcf7-response-output {
  margin-top: 15px;
}
.modal .wpcf7-spinner {
  display: none;
}
.video-modal .modal-content {
  padding-right: 0;
  overflow-y: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.video-modal {
  max-height: 90vh;
  height: 90vh;
}
.modal.video-modal video {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
}
.modal.video-modal iframe {
  display: none;
}
.modal.video-modal.active iframe {
  display: block;
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
}

body.show-modal {
  overflow: hidden;
}

.close {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.close .inner {
  width: 100%;
  height: 100%;
  border: none !important;
  position: relative;
}
.close .inner::before, .close .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.close .inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.close .inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav .home {
  display: block;
  width: 25px;
  height: 25px;
  margin-right: 20px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu li {
  margin-right: 25px;
}
.menu li:last-child {
  margin-right: 0;
}
.menu a {
  padding: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.menu a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.menu a:hover::before, .menu li.current-menu-item a::before  {
  width: 100%;
}

.social a {
  margin-right: 10px;
}
.social a:last-child {
  margin-right: 0;
}

.mobile-nav .menu {
  display: block;
}
.mobile-nav li {
  margin-right: 0;
  margin-bottom: 25px;
}

.mobile-wrap {
  max-width: 450px;
  width: 100%;
  height: 100vh;
  background-color: #29D0E3;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: -100vw;
  z-index: 70;
}
.mobile-wrap.active {
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-body {
  width: 100%;
  height: 100%;
  padding: 70px 15px 30px 30px;
  position: relative;
}
.mobile-body .close {
  position: absolute;
  top: 25px;
  right: 25px;
}
.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
  background-color: #fff;
}
.mobile-body .phone {
  margin-top: 40px;
  margin-bottom: 40px;
  color: #fff;
}
.mobile-body svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}
.mobile-nav .menu a {
  color: #fff;
}

.mobile-btn {
  width: 46px;
  height: 25px;
  cursor: pointer;
  position: relative;
  display: none;
}
.mobile-btn .inner, .mobile-btn::before, .mobile-btn::after {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #A5A9AE;
  position: absolute;
  left: 0;
}
.mobile-btn .inner {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile-btn::before {
  content: "";
  top: 0;
}
.mobile-btn::after {
  content: "";
  bottom: 0;
}

.tab {
  margin-bottom: 10px;
  border: 1px solid #C0C4C9;
  border-radius: 7px;
  padding: 30px;
}
.tab-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}
.tab-title-row {
  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;
  padding-right: 50px;
  cursor: pointer;
  position: relative;
}
.tab-title-row::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/icons/arrow_btn.svg");
  background-size: cover;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.tab-ans {
  line-height: 1.5;
  margin-top: 25px;
  display: none;
}
.tab.active .tab-ans {
  display: block;
}
.tab.active .tab-ans video, .tab-ans .mejs-container {
  max-width: 100%;
  max-height: 90vh;
}


.tab.active .tab-title-row::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.header-wrap {
  width: 100%;
}

.header-row {
  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;
}

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

.header-top {
  background-color: #29D0E3;
}
.header-top .location {
  padding: 15px 30px;
  background-color: #92EDF7;
  position: relative;
}
.header-top .location-title {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.header-top .location-title span {
  padding-right: 17px;
  position: relative;
}
.header-top .location-title span::before {
  content: "";
  display: block;
  width: 13px;
  height: 11px;
  background-image: url("../img/icons/triangle.svg");
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 60%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header-top .location-icon {
  width: 22px;
  margin-right: 10px;
}
.header-top .location-list {
  display: none;
  width: 100%;
  padding: 15px 25px;
  background-color: #92EDF7;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
.header-top .location-list li {
  margin-bottom: 10px;
}
.header-top .location-list li a {
  font-size: 16px;
}
.header-bottom {
  padding: 10px 0;
}
.header-bottom .logo {
  max-width: 150px;
}
.header .contacts-row {
  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;
}
.header .contacts-row-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 30px;
}
.header .contacts-row a img {
  width: 40px;
  height: 40px;
}
.header .contacts-row .social svg {
  width: 40px;
  height: 40px;
  fill: #29D0E3;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}
.phone__icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.location:hover .location-list {
  display: block;
}

.lang-switcher {
  position: relative;
}
.lang-switcher-active {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  padding-right: 18px;
  position: relative;
  cursor: pointer;
}
.lang-switcher-active::after {
  content: "";
  display: block;
  width: 13px;
  height: 11px;
  background-image: url("../img/icons/triangle_white.svg");
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.lang-switcher-active::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.lang-switcher-active li:not(.active) {
  display: none;
}
.lang-switcher-list {
  padding: 15px 20px;
  background-color: #92EDF7;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  display: none;
}
.lang-switcher ul {
  margin: 0;
  padding: 0;
}
.lang-switcher li {
  list-style-type: none;
}
.lang-switcher-list li {
  margin-bottom: 10px;
}
.lang-switcher-list li a {
  color: #fff;
  font-weight: 600;
}
.lang-switcher-list li.active a {
  text-decoration: underline;
}
.lang-switcher-list li:last-child {
  margin-bottom: 0;
}

.lang-switcher:hover .lang-switcher-list {
  display: block;
}

.banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.banner.turn_off_dark_banner::before {
  display: none;
}
.banner .offer {
  max-width: 760px;
  color: #fff;
  text-align: center;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.banner .offer-name {
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banner .offer-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #fff;
}
.main-banner .offer-title {
  font-size: 45px;
}
.main-banner {
  background-image: url("../img/main.jpg");
  margin-bottom: 50px;
}

.main-banner .offer .social, .main-banner .offer .btn {
  display: none;
}

.main-links .wrap {
  max-width: 1000px;
}
.main-links .section-title {
  padding: 0 15px;
}
.main-links-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main-links-item img {
  transform: scale(1);
  transition: 0.3s;
}
.main-links-item:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}
.main-links-item .item__img {
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
}
.main-links-item .item__img img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.main-links-item .item__title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.section {
  margin-bottom: 150px;
}
.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.receive .section-title {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}
.receive .section-title .section-title-text {
  display: block;
  transform: translateX(70px);
}
.receive .wrap {
  max-width: 1400px;
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #F5F5F5;
  border-radius: 7px;
  position: relative;
}
.receive .wrap .doc {
  max-width: 560px;
  position: absolute;
  top: -120px;
  left: 0;
}
.receive-row {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.receive-item {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  margin-bottom: 40px;
  position: relative;
}
.receive-item .item__img {
  min-width: 65px;
  width: 65px;
  margin-right: 20px;
}
.receive-item .item__title {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.exper .wrap {
  padding: 0;
}
.exper .section-title {
  padding: 0 15px;
}
.exper-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.exper-item {
  width: 33.3333%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.exper-item .inner {
  height: 100%;
  padding: 25px 15px;
  background-color: #29D0E3;
  border-radius: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.exper-item:nth-child(2) .inner, .exper-item:nth-child(4) .inner {
  background-color: #0875A4;
}
.exper-item:nth-child(3) .inner, .exper-item:nth-child(5) .inner {
  background-color: #92EDF7;
}
.exper-item .inner .item__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.locale-ru .exper-item .inner .item__title {
  font-size: 27px;
}
.exper-item .inner .item__text_strong {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.exper-item .inner .item__text {
  font-size: 15px;
}
.exper-item-content {
  margin-bottom: 35px;
}

.item-btn {
  max-width: 300px;
  width: 100%;
  line-height: 55px;
  border-radius: 50px;
  padding: 0 30px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.item-btn::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/icons/arrow_btn.svg");
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.item-btn span {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.item-btn:hover::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.item-btn:hover span {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.exper-item.item__blue_dark .inner {
  background-color: #0875A4;
  color: #fff;
}

.exper-item.item__blue_light .inner {
  background-color: #92EDF7;
}

.vendors .section-title {
  font-size: 25px;
  padding: 0 15px;
}
.vendors .wrap {
  padding: 0;
}
.vendors-content {
  background-color: #F5F5F5;
  border-radius: 7px;
  padding: 60px;
}
.vendors-row {
  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;
}
.vendors-item {
  padding: 0 15px;
}

.callback .wrap {
  max-width: 530px;
}
.callback-title {
  font-size: 25px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}
.callback-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 50px;
}
.callback-row .messengers {
  margin-left: 30px;
}
.callback-row .phone__icon {
  width: 30px;
  height: 30px;
}

.messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.messengers a {
  margin-right: 15px;
}
.messengers a:last-child {
  margin-right: 0;
}

.footer {
  background-color: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 30px;
}
.footer-row {
  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;
}
.footer .logo {
  max-width: 150px;
  display: block;
}
.footer .owner-text {
  width: 230px;
  font-size: 12px;
}
.footer .phone {
  font-size: 16px;
  font-weight: 500;
}
.footer .address-str {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .address-str span {
  font-weight: 700;
}
.footer .callback-row .messengers {
  margin-left: 0;
}

.btn {
  max-width: 450px;
  width: 100%;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #29D0E3;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
}

.btn:hover {
  background-color: #21C4D6;
}

form label {
  margin-bottom: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}
.form-row .form-group {
  margin-bottom: 0;
  width: 48%;
}

.required label {
  position: relative;
}

.required label::after {
  content: "*";
  display: block;
  color: red;
  position: absolute;
  top: 0;
  right: -8px;
}

.form-group {
  margin-bottom: 15px;
}

.group-results .form-row {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 5px;
}
.group-results .results__item {
  margin-right: 15px;
}

.group-results .results__item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.group-results .results__item label {
  margin-right: 5px;
  margin-bottom: 0;
  cursor: pointer;
}
.group-results .results__item label::after {
  display: none;
}

input:not([type=submit], [type=radio]),
textarea {
  width: 100%;
  border: 1px solid rgb(26, 26, 53);
  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
  margin-top: 5px;
}

input:not([type=submit], [type=radio]):focus,
textarea:focus {
  border: 1px solid #29D0E3;
}

input[type=submit].btn {
  max-width: 250px;
  height: 45px;
  font-size: 18px;
  border: none;
  margin-top: 30px;
}

.slider-nav {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.slider-nav .slick-dots {
  position: static;
}
.slider-nav-dots {
  margin: 0 15px;
}
.slider-nav-arrow {
  width: 12px;
  height: 22px;
  background-image: url("../img/icons/arrow_slider.svg");
  background-size: cover;
}
.slider-nav-arrow.item__prev {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social a {
  margin-right: 15px;
}
.social a:last-child {
  margin-right: 0;
}

.breadcrumbs {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 13px;
  color: gray;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  font-size: 14px;
  margin-right: 10px;
  list-style-type: none;
}
.breadcrumbs li:last-child {
  margin-right: 0;
  margin-left: 10px;
  color: gray;
}
.breadcrumbs a {
  font-size: 14px;
  color: #504e4e;
  position: relative;
}
.breadcrumbs a::after {
  content: '>';
  display: block;
  width: 7px;
  height: 16px;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.reviews .wrap {
  padding: 0 7.5px;
}
.reviews-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.reviews .card {
  width: 33.3333%;
  padding: 0 7.5px;
  margin-bottom: 15px;
}
.reviews .card .inner {
  height: 100%;
  padding: 15px;
  border: 1px solid #C0C4C9;
  border-radius: 7px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.reviews .card .item__img {
  margin-bottom: 20px;
  aspect-ratio: 39/22;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.reviews .card .item__title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
.reviews .card .item__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.reviews .card .item__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.reviews .card .item-btn {
  border: 1px solid #000;
  font-size: 15px;
  font-weight: 500;
}
.reviews .card .item-btn::after {
  background-image: url("../img/icons/video_icon.svg");
}

.page-content {
  line-height: 1.5;
}
.page-content .wrap {
  max-width: 1000px;
}
.page-content h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 50px;
}
h1 {
  text-transform: uppercase;
}
.page-text iframe {
  max-width: 100%;
}
.home .section:not(.no-animate) {
  transform: translateY(200px);
}
.home .section.animate {
  transform: translateY(0);
  transition: .5s;
}
.header.fixed-header {
  padding-top: 200px;
}
.header.fixed-header .header-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.header.fixed-header .header-bottom {
  display: none;
}

.inst-row {
  display: flex;
  flex-wrap: wrap;
}
.inst-post {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 10px;
}
.inst-post-link {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
}
.inst-post video, .inst-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}






/** Adaptive **/
@media (max-width: 1200px) {
  .header-top .location {
    display: none;
  }
  .header-top .header-row {
    height: 50px;
  }
  .header .contacts-row-title {
    display: none;
  }
  .header .social {
    margin-right: 15px;
  }
  .breadcrumbs {
    margin-bottom: 50px;
  }
  .phone {
    font-size: clamp(16px, 1.6vw, 22px);
  }
  .header .contacts-row a img, .header .contacts-row .social svg {
    width: 25px;
    height: 25px;
  }
  .logo {
    max-width: 150px;
  }
  .header-bottom {
    padding: 10px 0;
  }
  .section-title {
    font-size: clamp(25px, 2.9vw, 35px);
  }
  .main-links-item .item__title {
    font-size: 16px;
  }
  .receive .wrap {
    padding-top: 25%;
  }
  .receive .wrap .doc {
    top: -300px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
  .receive {
    margin-top: 300px;
  }
  .section {
    margin-bottom: 70px;
  }
  .receive-item .item__img {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .exper-item .inner .item__title {
    font-size: 20px !important;
  }
  .exper-item .inner .item__text_strong {
    font-size: 13px;
  }
  .exper-item .inner .item__text {
    font-size: 14px;
  }
  .item-btn {
    font-size: 20px;
  }
  .exper-item {
    width: 50%;
  }
  .vendors-content {
    padding: 30px 0;
  }
  .callback-title {
    font-size: 20px;
  }
  .btn {
    max-width: 300px;
    height: 45px;
    font-size: 16px;
    margin: 0 auto;
  }
  .page-content h1 {
    font-size: clamp(30px, 4.1vw, 50px);
  }
  .main-links-item .item__title::before {
    display: none;
  }
  .receive .section-title .section-title-text {
    transform: translateX(0);
  }
}
/* 1200 end */
@media (max-width: 900px) {
  .reviews .card {
    width: 50%;
  }
  .banner .offer-title {
    width: 80%;
    font-size: 6.5vw;
    text-align: center;
    margin: 0 auto;
  }
  .main-banner .offer-title {
    font-size: 5vw;
  }
  .locale-ru .banner .offer-title {
    width: auto;
  }
  .tab {
    padding: 30px 15px;
  }
  .tab-title-row {
    padding-right: 45px;
  }
  .tab-title-row::after {
    width: 30px;
    height: 30px;
  }
  .tab-title {
    font-size: clamp(18px, 2.4vw, 22px);
  }
  .inst-post {
    width: 33.33333%;
  }
}
/* 900 end */
@media (max-width: 800px) {
  .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
    background-color: #fff;
    position: relative;
  }
  .header.fixed-header {
    padding-top: 70px;
  }
  .header.fixed-header .header-wrap {
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  .header.fixed-header .header-bottom {
    display: block;
  }
  .header .nav {
    display: none;
  }
  .header .logo {
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .mobile-btn {
    display: block;
  }
  .header .contacts-row {
    display: none;
  }
  .lang-switcher-active {
    color: #A5A9AE;
    font-size: 18px;
  }
  .lang-switcher-active::after {
    background-image: url("../img/icons/arrow_grey.svg");
  }
  .header-top {
    background-color: transparent;
  }
  .lang-switcher-list {
    right: 0;
    left: auto;
  }
  .main-links .wrap {
    padding: 0;
  }
  .main-links-item {
    width: 33.3333%;
    padding: 0 15px;
  }
  .main-links-item .item__img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
  }
  .main-links-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-row {
    display: block;
  }
  .footer-row .logo {
    margin: 0 auto;
  }
  .footer-row .owner-text {
    margin: 0 auto;
  }
  .footer-row .owner {
    margin-bottom: 30px;
  }
  .footer .address {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer .phone {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* 800 end */
@media (max-width: 700px) {
  .modal {
    width: 98vw;
  }
}
@media (max-width: 600px) {
  .main-links-item {
    width: 100%;
    margin-bottom: 35px;
  }
  .main-links-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .receive-item {
    width: 100%;
  }
  .exper-item {
    margin-bottom: 0;
  }
  .slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .vendors-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .vendors-item {
    width: 50%;
    margin-bottom: 30px;
  }
  .modal-title {
    font-size: 14px;
  }
  .modal-body {
    padding: 40px 15px 15px;
  }
  .form-row {
    display: block;
  }
  .form-row .form-group {
    width: 100%;
    margin-bottom: 15px;
  }
  input[type=submit].btn {
    font-size: 16px;
  }
  .reviews .card .item__desc {
    display: none;
  }
  .reviews .card .item-btn {
    line-height: 45px;
    padding: 0 15px;
  }
  .reviews .card .item-btn::after {
    width: 25px;
    height: 25px;
  }
  .exper-item {
    width: 100%;
    margin-bottom: 25px;
  }
  .item-btn {
    margin: 0 auto;
  }
  .inst-post {
    width: 50%;
    padding: 0 5px;
  }
}
/* 600 end */
@media (max-width: 500px) {
  .main-banner {
    background-image: url("../img/main_mobile.jpeg");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .main-banner .offer {
    width: 100%;
    display: block;
    padding: 0 15px;
  }
  .main-banner .offer-name {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .main-banner .offer-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
  }
  .main-banner .offer .social, .main-banner .offer .btn {
    display: flex;
  }
  .main-banner .offer .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
  }
  .main-banner .offer .social svg {
    width: 40px;
    height: 40px;
    fill: #29D0E3;
  }
  .banner.main-banner {
    height: 700px;
  }
  .exper .slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .callback-row {
    display: block;
    margin-bottom: 30px;
  }
  .callback-row .phone {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .callback-row .messengers {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 30px;
  }
  .reviews .card .item-btn {
    font-size: 13px;
    text-align: center;
    line-height: 35px;
    white-space: nowrap;
  }
  .reviews .card .item-btn::after {
    display: none;
  }
  .reviews .card .inner {
    padding: 7.5px;
  }
  .reviews .card .item__title {
    font-size: 10px;
  }
  .breadcrumbs {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .banner:not(.main-banner) {
    margin-bottom: 50px;
  }
}
/* 500 end */
@media (max-width: 450px){
  .item-btn {
    margin: 0 auto;
  }
}
@media (max-width: 400px){
  .locale-ru .exper-item .inner .item__title {
    font-size: 6.75vw;
  }
}
@media (max-width: 350px) {
  .reviews .card .item-btn {
    font-size: 12px;
  }
}