@charset "UTF-8";
:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Gilroy", sans-serif;
  --third-family: "Unbounded", sans-serif;
  --font3: "Poppins", sans-serif;
  --font4: "HelveticaNeueCyr", sans-serif;
  --content-alternative: #fff;
  --content-primary: #252834;
  --content-secondary: #737a96;
  --content-tertiary: rgba(115, 122, 150, 0.6);
  --content-attention: #fa4145;
  --content-accent: #3966ad;
  --content-attention-2: #00b633;
  --background-screen: #f5f7fb;
  --background-elevated-0: #fff;
  --background-elevated-10: #ebf0f7;
  --background-elevated-20: #d7e0ef;
  --background-elevated-30: #b0c2de;
  --background-elevated-40: #88a3ce;
  --background-elevated-50: #6185bd;
  --stroke-neutral: #e6eef2;
  --categories-charged: #f4efd5;
  --categories-co2: #efd9df;
  --categories-corporate-client: #8d90ec;
  --categories-leaderboard: #e6eef2;
  --categories-overcome: #e1dcec;
  --port-available: #eba92a;
  --port-busy: #cbdc05;
  --port-charging: #34c380;
  --port-not-work: #ef555d;
}

html,
body {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
}

.body--noscroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.companies {
  padding: clamp(20px, 6vw, 70px) 0;
  overflow: hidden;
  /* Анимации */
}
.companies__line {
  position: relative;
  overflow: hidden;
}
.companies__line::before, .companies__line::after {
  position: absolute;
  top: 0;
  content: "";
  height: 100%;
  width: 270px;
  z-index: 5;
}
.companies__line::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.companies__line::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(-90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.companies .companies-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  gap: 50px;
}
.companies .companies-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  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;
  height: 100px;
  width: 180px;
  padding: 15px;
}
.companies .companies-item img {
  height: 25px;
  max-width: 100%;
}
.companies .companies-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-left 50s linear infinite;
          animation: scroll-left 50s linear infinite;
}
.companies .line-right .companies-track {
  -webkit-animation: scroll-right 50s linear infinite;
          animation: scroll-right 50s linear infinite;
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scroll-right {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 576px) {
  .companies__line::before, .companies__line::after {
    width: 170px;
  }
  .companies .companies-track {
    -webkit-animation-duration: 30s;
            animation-duration: 30s;
    gap: 20px;
  }
  .companies .companies-item {
    height: 60px;
    width: 90px;
    padding: 5px;
  }
  .companies .companies-item img {
    height: 15px;
    max-width: 100%;
  }
}

.join-us {
  padding-bottom: clamp(25px, 5.333vw, 50px);
}
.join-us__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.join-us .join-us-item {
  width: 50%;
  min-height: 560px;
  border-radius: 18px;
  padding: 65px 13px 13px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.join-us .join-us-item__title {
  max-width: 320px;
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 138%;
  color: var(--content-primary);
}
.join-us .join-us-item__lbl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 10px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.31);
  border-radius: 45px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: rgba(37, 40, 52, 0.88);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.join-us .join-us-item__image {
  position: absolute;
  bottom: 0;
  right: 0;
}
.join-us .join-us-item__content {
  background: var(--content-alternative);
  border-radius: 18px;
  padding: 36px 34px 30px 34px;
  min-height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 14px;
}
.join-us .join-us-item__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: var(--content-primary);
}
.join-us .join-us-item--user {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
}
.join-us .join-us-item--user::before {
  position: absolute;
  display: block;
  content: "";
  width: 1010px;
  height: 1010px;
  right: -50%;
  bottom: -50%;
  background-image: url(../img/joinbg1.svg);
  background-size: contain;
}
.join-us .join-us-item--user .join-us-item__image {
  right: 70px;
}
.join-us .join-us-item--partner {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
}
.join-us .join-us-item--partner::before {
  position: absolute;
  display: block;
  content: "";
  width: 1010px;
  height: 1010px;
  right: -50%;
  bottom: -50%;
  background-image: url(../img/joinbg2.svg);
  background-size: contain;
}
@media (max-width: 768px) {
  .join-us__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .join-us .join-us-item {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .join-us .hide-on-mobile {
    display: none;
  }
  .join-us .join-us-item {
    border-radius: 23px;
    padding: 40px 12px 17px 12px;
    position: relative;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .join-us .join-us-item__title {
    max-width: 170px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .join-us .join-us-item__lbl {
    margin-top: 0px;
    margin-bottom: 16px;
  }
  .join-us .join-us-item__content {
    border-radius: 18px;
    padding: 0px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: transparent;
  }
  .join-us .join-us-item__content p {
    text-align: left;
  }
  .join-us .join-us-item--user::before {
    width: 1010px;
    height: 1010px;
    right: -80%;
    bottom: -50%;
  }
  .join-us .join-us-item--user .join-us-item__image {
    right: 0px;
    left: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .join-us .join-us-item--user .join-us-item__image img {
    width: 220px;
  }
  .join-us .join-us-item--partner::before {
    width: 1010px;
    height: 1010px;
    right: -80%;
    bottom: -50%;
  }
  .join-us .join-us-item--partner .join-us-item__image img {
    width: 260px;
  }
  .join-us .join-us-item .link-more {
    position: absolute;
    bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
    background: var(--content-alternative);
    padding: 4px 4px 4px 20px;
  }
  .join-us .join-us-item .link-more .link-more__ic {
    background: #1e558e;
    border: 1px solid rgba(0, 0, 0, 0.14);
  }
  .join-us .join-us-item .link-more .link-more__ic svg path {
    fill: #fff;
  }
  .join-us .join-us-item .link-more:hover {
    color: var(--content-primary);
  }
}

.buy-section {
  padding-top: clamp(25px, 5.067vw, 50px);
  padding-bottom: clamp(25px, 5.067vw, 50px);
}
.buy-section .top {
  margin: 0 auto;
  max-width: 640px;
}
.buy-section__tabbtn {
  margin-top: clamp(22px, 5.067vw, 55px);
  margin-bottom: clamp(16px, 3.467vw, 34px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .buy-section__tabbtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.buy-section__item {
  display: none;
}
.buy-section__item.active {
  display: block;
}
.buy-section__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(20px, 4vw, 40px);
}
@media (max-width: 576px) {
  .buy-section .buySlider {
    width: calc(100vw - 0px);
    left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.btn-tb {
  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;
  gap: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #62646a;
  padding: 14px 21px;
  border-radius: 34px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  cursor: pointer;
  border: none;
  background: transparent;
}
.btn-tb:hover {
  background: rgba(37, 40, 52, 0.04);
}
.btn-tb.active {
  background: var(--content-primary);
  color: var(--content-alternative);
}

.about {
  padding-top: 50px;
  padding-bottom: 50px;
}
.about__title {
  font-family: var(--third-family);
  font-weight: 300;
  font-size: clamp(21px, 5.333vw, 68px);
  line-height: 115%;
  text-transform: uppercase;
  text-align: center;
  color: var(--content-primary);
}
.about__title span {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: clamp(21px, 5.333vw, 68px);
  line-height: 115%;
  text-transform: uppercase;
  text-align: center;
  color: #1e558e;
}
.about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
  margin-top: clamp(50px, 8vw, 70px);
  gap: 60px;
}
@media (max-width: 992px) {
  .about__box {
    gap: 24px;
  }
}
.about__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 55px;
  max-width: 313px;
}
.about__main p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
  line-height: 140%;
}
.about__list ul {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.about__list ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--content-primary);
}
.about__list ul li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  position: relative;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
  background-color: #E9EEF5;
  border-radius: 100px;
  background-image: url(../img/icons/uil_check-dark.svg);
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 576px) {
  .about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
  .about__main {
    min-width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__main p {
    display: none;
  }
  .about__list ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.partner-acc {
  padding-top: 50px;
  padding-bottom: 60px;
}
.partner-acc__box {
  position: relative;
  overflow: hidden;
  background: #0e0e0e;
  border-radius: 18px;
  padding: 100px 46px 64px 46px;
}
.partner-acc__box .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1010px;
}
.partner-acc__box .top .ttl-label {
  background: #313131;
  color: #d2d2d2;
}
.partner-acc__box .top .title-main {
  text-align: left;
  color: var(--content-alternative);
}
.partner-acc__box::before {
  display: block;
  position: absolute;
  z-index: 0;
  content: "";
  width: 822px;
  height: 1221px;
  background-image: url(../img/Ellipse96.svg);
  right: -20px;
  bottom: -140px;
}
@media (max-width: 768px) {
  .partner-acc__box::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .partner-acc__box {
    background-image: url(../img/Ellipse96.svg);
    background-position: center;
    background-size: 700px;
  }
}
.partner-acc__content {
  width: 100%;
  max-width: 619px;
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .partner-acc__content {
    position: relative;
    z-index: 2;
  }
}
.partner-acc__content img {
  position: absolute;
  width: 1220px;
  top: 130px;
  left: 450px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .partner-acc__content img {
    width: 1020px;
    top: 240px;
    left: 300px;
  }
}
@media (max-width: 768px) {
  .partner-acc__content img {
    width: 537px;
    top: auto;
    left: auto;
    right: -130px !important;
    margin: 0 auto;
    margin-top: -20px;
    position: absolute;
  }
}
@media (max-width: 768px) {
  .partner-acc__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 440px;
  }
}
.partner-acc__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 130%;
  color: #95969f;
}
.partner-acc__list {
  margin-top: 32px;
  margin-bottom: 24px;
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .partner-acc__list {
    margin-top: -80px;
  }
}
.partner-acc__list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--content-alternative);
}
.partner-acc__list li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  position: relative;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background-image: url(../img/icons/uil_check.svg);
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .partner-acc {
    padding-top: 25px;
    padding-bottom: 0;
  }
  .partner-acc .container {
    padding-left: 0;
    padding-right: 0;
  }
  .partner-acc__box {
    padding: 50px 16px;
    border-radius: 0px;
  }
  .partner-acc__bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mobile-app {
  padding-top: 40px;
  padding-bottom: 68px;
  background-image: url(../img/Bgspot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mobile-app {
    padding-top: 50px;
    padding-bottom: 37px;
  }
}
.mobile-app .mobile-app-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin-bottom: 760px;
}
.mobile-app .mobile-app-links a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mobile-app .mobile-app-links a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}
.mobile-app .mobile-app-links a img {
  width: 100%;
}
.mobile-app__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-app__main {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 120px;
}
.mobile-app__main img {
  width: 1477px;
}
@media (max-width: 1200px) {
  .mobile-app .mobile-app-links {
    margin-bottom: 660px;
  }
  .mobile-app__main {
    bottom: 140px;
  }
  .mobile-app__main img {
    width: 1200px;
  }
}
@media (max-width: 768px) {
  .mobile-app .mobile-app-links {
    margin-bottom: 460px;
  }
  .mobile-app__main {
    bottom: 140px;
  }
  .mobile-app__main img {
    width: 700px;
  }
}
@media (max-width: 576px) {
  .mobile-app {
    background-image: url(../img/Bgspot_mobile.svg);
  }
  .mobile-app .mobile-app-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9px;
    margin-bottom: 280px;
  }
  .mobile-app__main {
    bottom: 110px;
  }
  .mobile-app__main img {
    width: 480px;
  }
}

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(17px, 2.067vw, 14px);
}

.ttl-label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(10px, 1.6vw, 14px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 11px 18px;
  border-radius: 35px;
  background: var(--content-alternative);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ttl-label--blue {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--content-primary);
}

.title-main {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(20px, 3.733vw, 36px);
  line-height: 138%;
  text-align: center;
  color: var(--content-primary);
}

.faq-section {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), #d9d9d9;
  padding: clamp(50px, 10vw, 100px) 0;
}
.faq-section .top {
  max-width: 610px;
  margin: 0 auto;
}
.faq-section__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faq-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-top: clamp(30px, 5.333vw, 50px);
}
@media (max-width: 768px) {
  .faq-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.faq-btn {
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 147%;
  color: #62646a;
  padding: 14.5px 21px;
  border-radius: 34px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  text-align: left;
}
.faq-btn:hover {
  background: rgba(37, 40, 52, 0.04);
}
.faq-btn.active {
  background: var(--content-primary);
  color: var(--content-alternative);
}
.faq-btn.active svg path {
  fill: white;
}

.faq-tabs {
  margin-top: clamp(30px, 5.333vw, 50px);
  margin-bottom: clamp(48px, 7.2vw, 60px);
}

.faq-tabs-item {
  display: none;
}
.faq-tabs-item.active {
  display: block;
}

.faqitem {
  margin-bottom: 16px;
  background: var(--content-alternative);
  border-radius: 18px;
  padding: 25px clamp(16px, 3.2vw, 30px);
}
.faqitem:last-child {
  margin-bottom: 0;
}
.faqitem__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.faqitem__top::after {
  display: block;
  content: "";
  min-width: 20px;
  max-width: 20px;
  min-height: 20px;
  max-height: 20px;
  background-image: url(../img/icons/arrow-up-black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: clamp(4px, 0.8vw, 8px);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faqitem__title {
  font-weight: 600;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 140%;
  color: var(--content-primary);
  padding-right: 8px;
}
.faqitem__content {
  padding-top: 24px;
  display: none;
}
.faqitem__content p {
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
  line-height: 140%;
}
.faqitem__content ul {
  list-style-type: disc;
  padding-left: 25px;
}
.faqitem.active .faqitem__top::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.seoblock {
  padding: clamp(50px, 10vw, 100px) 0;
  color: var(--content-primary);
  font-weight: 300;
  line-height: 140%;
}
.seoblock .container {
  position: relative;
}
.seoblock__box {
  position: relative;
  max-height: 584px;
  overflow: hidden;
  -webkit-transition: all 0.23s;
  transition: all 0.23s;
}
.seoblock__box::after {
  display: block;
  content: "";
  height: 184px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(15.2%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #fff 15.2%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.seoblock h2 {
  line-height: 140%;
  font-size: clamp(24px, 3.733vw, 32px);
}
.seoblock h3 {
  font-size: clamp(20px, 2.933vw, 24px);
}
.seoblock h4 {
  font-size: clamp(18px, 2.533vw, 20px);
}
.seoblock h5 {
  font-size: clamp(16px, 2.267vw, 18px);
}
.seoblock p {
  font-size: clamp(14px, 2vw, 16px);
}
.seoblock__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 22px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}

.action-btn {
  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;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  text-align: center;
  color: var(--content-primary);
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: var(--content-alternative);
  padding: 4px 6px 4px 21px;
  border-radius: 104px;
  cursor: pointer;
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.action-btn__ic {
  background: var(--content-alternative);
  border: 1px solid #d3dce0;
  border-radius: 61px;
  width: 46px;
  height: 46px;
  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;
}
.action-btn__ic svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.action-btn:hover {
  background: #1e558e;
  color: #fff;
}
.action-btn:hover .action-btn__ic {
  border-color: #fff;
}
.action-btn:hover .action-btn__ic svg path {
  stroke: #1E558E;
}

.action-btn-v2 {
  background: #1e558e;
  color: #fff;
}
.action-btn-v2 .action-btn__ic {
  border-color: #fff;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.action-btn-v2 .action-btn__ic svg path {
  stroke: none !important;
  fill: #1E558E;
}
.action-btn-v2:hover {
  color: var(--content-primary);
  background: var(--content-alternative);
}
.action-btn-v2:hover .action-btn__ic {
  border: 1px solid #d3dce0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.action-btn-v21 {
  background: #fff;
  color: var(--content-primary);
}
.action-btn-v21 .action-btn__ic {
  background: #1e558e;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  border-color: #1e558e;
}
.action-btn-v21 .action-btn__ic svg path {
  stroke: none !important;
  fill: #fff;
}
.action-btn-v21:hover {
  color: var(--content-primary);
  background: var(--content-alternative);
  gap: 16px;
}
.action-btn-v21:hover .action-btn__ic {
  border: 1px solid #d3dce0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.action-btn-v3 {
  background: #1e558e;
  color: #fff;
}
.action-btn-v3 .action-btn__ic {
  border-color: #fff;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.action-btn-v3 .action-btn__ic svg path {
  stroke: #1E558E !important;
  fill: none;
}
.action-btn-v3:hover {
  color: var(--content-primary);
  background: var(--content-alternative);
}
.action-btn-v3:hover .action-btn__ic {
  border: 1px solid #d3dce0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.seoblock_btn.active .action-btn__ic {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.seoblock__box.active {
  max-height: 4000px;
  margin-bottom: 40px;
}

.seoblock__box.active::after {
  display: none;
}

.seoblock__bottom.active {
  bottom: -80px;
}

.top-section {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  padding-bottom: 40px;
}
.top-section--white {
  background: #fff;
  padding-bottom: 0;
}
.top-section__info {
  display: -ms-grid;
  display: grid;
  gap: 21px;
}

.top-section-onlyheader {
  padding-bottom: 0;
}

.d-flex-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  padding-bottom: clamp(0px, 1.733vw, 26px);
}
.d-flex-1 .page-title {
  width: 100%;
  max-width: 634px;
}
.d-flex-1 .page-pretitle {
  width: 464px;
}
@media (max-width: 992px) {
  .d-flex-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 21px;
  }
  .d-flex-1 .page-pretitle {
    width: 100%;
  }
}

.page-title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(26px, 4.267vw, 36px);
  line-height: 138%;
  color: var(--content-primary);
}

.page-pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #62646a;
  max-width: 776px;
}

.subscribe-section {
  padding-top: 67px;
  padding-bottom: 86px;
}
@media (max-width: 576px) {
  .subscribe-section {
    padding-top: 30px;
    padding-bottom: 48px;
  }
}
.subscribe-section__box {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border-radius: 18px;
  padding: 32px 22px;
  display: -ms-grid;
  display: grid;
  gap: 23px;
}
.subscribe-section__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--content-primary);
}
.subscribe-section__title span {
  color: #1e558e;
}
.subscribe-section__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 576px) {
  .subscribe-section__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subscribe-section__form .action-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.map-section {
  padding-bottom: clamp(50px, 10vw, 100px);
}
.map-section .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .map-section .map-select-list .shop-filter__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .map-section .map-select-list .select {
    min-width: 206px;
  }
}

.map-area {
  margin-top: 30px;
}

.map-box {
  border-radius: 23px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .map-box {
    border-radius: 18px;
  }
}

#map {
  width: 100%;
  height: 588px;
}

.map-main {
  width: 315px;
  height: 488px;
  border-radius: 17px;
  background: var(--background-elevated-0);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 17px;
  left: 15px;
  padding: 12px 15px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.map-main .map-main-close-mob {
  display: none;
}
@media (max-width: 768px) {
  .map-main {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 60;
    border-radius: 0px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 27px 17px;
    overflow: auto;
    left: -100vw;
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }
  .map-main.active {
    left: 0;
  }
  .map-main .map-main-close {
    display: none;
  }
  .map-main .map-main-close-mob {
    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;
    min-width: 47px;
    max-width: 47px;
    min-height: 47px;
    max-height: 47px;
    background-color: #F5F7FB;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .map-main .map-main__tabbtns {
    margin-top: 10px;
  }
  .map-main .map-main__selected {
    margin-bottom: 10px;
  }
}
.map-main .map-main-close {
  position: absolute;
  right: 11px;
  top: 13px;
  width: 14px;
  height: 14px;
  background-image: url(../img/icons/ic_round-close.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-main .map-main-close:hover {
  opacity: 0.7;
}
.map-main__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 11px;
}
.map-main__rate span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  color: var(--content-primary);
}
.map-main__selected {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
.map-main__selectedLocation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  padding-left: 16px;
  color: #7c7c7c;
  background-image: url(../img/icons/mapmapmin.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 13px;
}
.map-main .btn-to-map {
  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;
  gap: 11px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  text-align: right;
  color: var(--content-secondary);
  background: var(--background-screen);
  border-radius: 100px;
  padding: 12.5px;
  margin-top: 24px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-main .btn-to-map:hover {
  background-color: #ecf3ff;
}
.map-main__tabbtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 14px;
}
.map-main__btn {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 164%;
  color: var(--content-primary);
  padding: 6.5px;
  width: 50%;
  border: none;
  border-bottom: 1px solid rgba(37, 40, 52, 0.06);
  background: transparent;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-main__btn.active {
  border-bottom: 1px solid #3966AD;
}
.map-main__btn:hover {
  border-bottom: 1px solid #3966AD;
}
.map-main .charge-list {
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
.map-main .charge-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-main .charge-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.map-main .charge-item__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.map-main .charge-item__sc1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.map-main .charge-item__detail {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--content-primary);
}
.map-main .charge-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  color: #7c7c7c;
}
.map-main .charge-item__power {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: #7c7c7c;
}
.map-main .map-photos-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.map-main .map-photos-list .map-photo {
  height: 84px;
  border-radius: 9px;
  overflow: hidden;
  width: calc(50% - 3px);
}
.map-main .map-photos-list .map-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.map-main .map-photos-list .map-photo:nth-child(1) {
  width: calc(60% - 3px);
}
.map-main .map-photos-list .map-photo:nth-child(2) {
  width: calc(40% - 3px);
}
.map-main .map-photos-list .map-photo:nth-child(5) {
  width: calc(33.33% - 4px);
}
.map-main .map-photos-list .map-photo:nth-child(6) {
  width: calc(33.33% - 4px);
}
.map-main .map-photos-list .map-photo:nth-child(7) {
  width: calc(33.33% - 4px);
}
@media (max-width: 768px) {
  .map-main .map-photos-list .map-photo {
    height: 140px;
  }
}
@media (max-width: 576px) {
  .map-main .map-photos-list .map-photo {
    height: 110px;
  }
}
@media (max-width: 400px) {
  .map-main .map-photos-list .map-photo {
    height: 84px;
  }
}

.map-top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  position: absolute;
  top: 18px;
  right: 18px;
}
@media (max-width: 768px) {
  .map-top-nav {
    width: calc(100% - 36px);
    left: 18px;
  }
}
.map-top-nav .select {
  width: 314px;
}
@media (max-width: 768px) {
  .map-top-nav .select {
    width: 100%;
  }
}
.map-top-nav .select .select-list {
  max-height: 400px;
  overflow: auto;
}

.map-full-creen {
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  padding: 16px 18px;
  min-width: 54px;
  max-width: 54px;
  min-height: 50px;
  max-height: 50px;
  background: var(--background-elevated-0);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-full-creen:hover {
  background-color: #ecedf0;
}

.map-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.map-zoom__btn {
  background: var(--background-elevated-0);
  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;
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  width: 54px;
  height: 50px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.map-zoom__btn:hover {
  background-color: #ecedf0;
}

.map-page .title-main {
  text-align: left;
  max-width: 828px;
}
.map-page .map-section {
  padding-bottom: clamp(16px, 4.4vw, 50px);
}
.map-page .map-filters {
  padding-top: clamp(36px, 5.867vw, 50px);
}

.modal {
  display: none;
  position: fixed;
  background: rgba(16, 19, 22, 0.69);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}
.modal__wrap {
  width: 100%;
  height: 100%;
  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;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 27px;
  padding-right: 27px;
  overflow: auto;
}
@media (max-width: 768px) {
  .modal__wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.modal .modal-box {
  -webkit-box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
  background: #f6f8fc;
  border-radius: 18px;
  width: 100%;
  max-width: 530px;
  position: relative;
  padding: 48px 24px;
}
@media (max-width: 576px) {
  .modal .modal-box {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 12px;
  }
}
.modal .modal-close {
  position: absolute;
  top: 26px;
  right: 15px;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal .modal-close:hover {
  opacity: 0.7;
}
.modal .modal-title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(18px, 2.533vw, 20px);
  line-height: 138%;
  text-transform: uppercase;
  color: var(--content-primary);
  margin-bottom: 27px;
}

.modal-partner__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 24px;
}
.modal-partner__steps::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #000;
  opacity: 0.14;
  bottom: 4px;
}
.modal-partner__steps:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 1px;
  border-bottom: 1px dashed #000;
  bottom: 4px;
}
.modal-partner__steps.step2::after {
  width: 50%;
}
.modal-partner__steps.step3::after {
  width: 100%;
}
.modal-partner .modal-partner-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 13px;
  position: relative;
  z-index: 2;
}
.modal-partner .modal-partner-step span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 123%;
  color: var(--content-primary);
  opacity: 0.6;
}
.modal-partner .modal-partner-step::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 100px;
  background-color: #f6f8fc;
  border: 1px solid var(--content-primary);
}
.modal-partner .modal-partner-step:nth-child(1) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.modal-partner .modal-partner-step:nth-child(3) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.modal-partner .modal-partner-step.active {
  opacity: 1;
}
.modal-partner .modal-partner-step.active::after {
  background-color: var(--content-primary);
}

.input-item input {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 13px;
  background: white;
}
.input-item input::-webkit-input-placeholder {
  opacity: 0.6;
}
.input-item input::-moz-placeholder {
  opacity: 0.6;
}
.input-item input:-ms-input-placeholder {
  opacity: 0.6;
}
.input-item input::-ms-input-placeholder {
  opacity: 0.6;
}
.input-item input::placeholder {
  opacity: 0.6;
}

.partner-step {
  display: none;
}
.partner-step .input-item {
  margin-bottom: 11px;
}
.partner-step .select {
  margin-bottom: 11px;
}
.partner-step .select-selected span {
  color: #252834 !important;
  opacity: 0.6;
}
.partner-step.active {
  display: block;
}

.form-btn-next {
  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;
  margin-top: 36px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--content-primary);
  padding: 22px 20px;
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: var(--background-elevated-0);
  border-radius: 104px;
  border: none;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.form-btn-next:hover {
  color: #fff;
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: #1e558e;
}

.form-btn-submit {
  border-radius: 104px;
  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;
  margin-top: 36px;
  border: none;
  gap: 10px;
  padding: 4px 4px 4px 20px;
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: #1e558e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--background-elevated-0);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.form-btn-submit span {
  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;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 61px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  max-height: 46px;
  background: #1e558e;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.form-btn-submit:hover {
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: var(--background-elevated-0);
  color: var(--content-primary);
}
.form-btn-submit:hover span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.modal-partner-thankyou .modal-box {
  width: 100%;
  max-width: 446px;
}
.modal-partner-thankyou__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-partner-thankyou img {
  mix-blend-mode: darken;
  width: 152px;
}
.modal-partner-thankyou__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 138%;
  text-transform: uppercase;
  text-align: center;
  color: var(--content-primary);
  margin: 0 auto;
  margin-top: 31px;
  margin-bottom: 12px;
  max-width: 276px;
}
.modal-partner-thankyou p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--content-primary);
  max-width: 211px;
  margin: 0 auto;
  line-height: 120%;
}

.modal-close-btn {
  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;
  margin: 0 auto;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--content-primary);
  text-align: center;
  padding: 12px;
  height: 54px;
  min-width: 174px;
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--content-primary);
  border-radius: 104px;
  background-color: #f6f8fc;
  margin-top: 66px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal-close-btn:hover {
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.23);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.23);
}

.modal-title2 {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 138%;
  color: var(--content-primary);
}

.modal-lead-magnet .modal-box,
.modal-lead-magnetV2 .modal-box {
  width: 100%;
  max-width: 369px;
}
.modal-lead-magnet .modal-title2,
.modal-lead-magnetV2 .modal-title2 {
  max-width: 288px;
}
.modal-lead-magnet form,
.modal-lead-magnetV2 form {
  width: 100%;
  margin-top: 37px;
}
.modal-lead-magnet .input-item,
.modal-lead-magnetV2 .input-item {
  margin-bottom: 11px;
}
.modal-lead-magnet .select .select-list,
.modal-lead-magnetV2 .select .select-list {
  max-height: 140px;
  overflow: auto;
}
.modal-lead-magnet .select-selected span,
.modal-lead-magnetV2 .select-selected span {
  color: #252834 !important;
  opacity: 0.6;
}
.modal-lead-magnet .form-btn-submit,
.modal-lead-magnetV2 .form-btn-submit {
  margin: 0 auto;
  margin-top: 21px;
}
.modal-lead-magnet .checkbox,
.modal-lead-magnetV2 .checkbox {
  margin-top: 21px;
}

.modal-calc .modal-box {
  width: 100%;
  max-width: 1281px;
  background-color: #FFFFFF;
}
.modal-calc .modal-calc-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 992px) {
  .modal-calc .modal-calc-wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.modal-calc .modal-calc-main {
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .modal-calc .modal-calc-main {
    padding-right: 0;
  }
}
.modal-calc__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--content-primary);
  opacity: 0.6;
}
.modal-calc__title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 36px;
  line-height: 138%;
  text-transform: uppercase;
  color: var(--content-primary);
  margin-top: 24px;
  margin-bottom: 41px;
}
.modal-calc .kvt-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9px 1fr 9px 1fr 9px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  background: #F5F7FB;
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .modal-calc .kvt-box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal-calc .kvt-option input {
  display: none;
}
.modal-calc .kvt-option label {
  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;
  gap: 3px;
  border-radius: 11px;
  padding: 6px 22px;
  min-width: 60px;
  width: 100%;
  max-width: 122px;
  height: 54px;
  background: var(--background-screen);
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 147%;
  text-transform: capitalize;
  color: #000;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.modal-calc .kvt-option label:hover {
  background: var(--content-primary);
  color: var(--background-screen);
}
.modal-calc .kvt-option label:hover span {
  color: #787b83;
}
.modal-calc .kvt-option label span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #787b83;
}
.modal-calc .kvt-option input:checked + label {
  background: var(--content-primary);
  color: var(--background-screen);
}
.modal-calc .kvt-option input:checked + label span {
  color: #787b83;
}
@media (max-width: 576px) {
  .modal-calc .kvt-option label {
    height: 46px;
  }
}
@media (max-width: 992px) {
  .modal-calc__title {
    font-size: 32px;
    margin-bottom: 30px;
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .modal-calc__title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.calc-inp-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .calc-inp-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.calc-inp-group label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-primary);
  opacity: 0.6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 16px;
}

.calc-inp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calc-inp input {
  background: #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 13px;
  height: 62px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  color: var(--content-primary);
  width: 100%;
  padding-left: 15px;
}
.calc-inp span {
  position: absolute;
  right: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #787b83;
}
@media (max-width: 576px) {
  .calc-inp input {
    height: 52px;
  }
}

.calc-specs {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.calc-specs .calc-specs-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.calc-specs .calc-specs-item::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #787b83;
}
.calc-specs .calc-specs-item span {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.calc-specs .calc-specs-item span:nth-child(1) {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: rgba(37, 40, 52, 0.6);
}
@media (max-width: 576px) {
  .calc-specs .calc-specs-item span:nth-child(1) {
    font-size: 14px;
  }
}
.calc-specs .calc-specs-item span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--content-primary);
}
@media (max-width: 576px) {
  .calc-specs .calc-specs-item span:nth-child(2) {
    font-size: 14px;
  }
}

.calc-tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  margin-bottom: 29px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.calc-tab-nav .calc-tab-btn {
  width: 50%;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--content-primary);
  padding: 10px 5px;
  opacity: 0.6;
  border-bottom: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -1px;
  cursor: pointer;
}
.calc-tab-nav .calc-tab-btn.active {
  opacity: 1;
  border-bottom: 1px solid #1e558e;
}
@media (max-width: 1200px) {
  .calc-tab-nav .calc-tab-btn {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .calc-tab-nav .calc-tab-btn {
    font-size: 16px;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.calc-tab-box {
  margin-bottom: 29px;
}
.calc-tab-box .calc-tab-item {
  display: none;
  -ms-grid-columns: 1fr 14px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.calc-tab-box .calc-tab-item.active {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 1200px) {
  .calc-tab-box .calc-tab-item {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 992px) {
  .calc-tab-box .calc-tab-item {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .calc-tab-box .calc-tab-item {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.calc-detail-sec {
  background: var(--background-screen);
  border-radius: 12px;
  padding: 49px 23px;
}
.calc-detail-sec__icon {
  margin-bottom: 20px;
  border-radius: 100px;
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--background-elevated-0);
}
.calc-detail-sec__lbl {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.calc-detail-sec__num {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: var(--content-primary);
  margin-top: 7px;
}
@media (max-width: 1200px) {
  .calc-detail-sec {
    padding: 23px 23px;
  }
}
@media (max-width: 576px) {
  .calc-detail-sec {
    padding: 16px;
  }
  .calc-detail-sec__icon {
    margin-bottom: 20px;
    width: 42px;
    height: 42px;
  }
  .calc-detail-sec__lbl {
    font-size: 16px;
  }
  .calc-detail-sec__num {
    font-size: 24px;
    margin-top: 7px;
  }
}

.calc-form p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  text-align: center;
  margin-bottom: 17px;
}
.calc-form__bottom {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.calc-form .form-btn-submit {
  margin-top: 0;
}
@media (max-width: 576px) {
  .calc-form p {
    text-align: left;
  }
}

.header-wrap {
  position: relative;
}

.shadow {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.47);
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.shadow.active {
  display: block;
}

.header {
  padding-top: 27px;
  padding-bottom: 18px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #d3dce0;
  z-index: 30;
}
.header__wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

.header-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
  }
}
.header-hide {
  top: -100%;
}

.header-fixed {
  position: fixed;
  top: 0px;
  z-index: 50;
  background-color: #fff;
}

.header-section-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}

.header-section-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.hh-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.h-btn-v1 {
  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;
  border: 1px solid #d3dce0;
  border-radius: 52px;
  width: 53px;
  height: 53px;
  cursor: pointer;
}
.h-btn-v1 svg {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.h-btn-v1:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.h-btn-v2 {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--content-primary);
  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;
  padding: 8px 24px;
  height: 53px;
  border: 1px solid var(--content-primary);
  border-radius: 104px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.h-btn-v2--dark {
  background: var(--content-primary);
  color: var(--content-alternative);
}
.h-btn-v2--dark:hover {
  color: var(--content-primary) !important;
  background-color: #fff !important;
}
.h-btn-v2:hover {
  background: var(--content-primary);
  color: var(--content-alternative);
}
@media (max-width: 1280px) {
  .h-btn-v2 {
    padding: 8px 10px;
  }
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.header-menu__list a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
@media (max-width: 1280px) {
  .header-menu__list {
    gap: 12px;
  }
}
.header-menu .has-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.header-menu .has-dropdown::after {
  display: block;
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  background-image: url(../img/icons/mnu-arr.svg);
}
.header-menu .has-dropdown.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-menu .menu-dropdown {
  position: absolute;
  top: 100%;
  width: 100vw;
  background-color: #fff;
  left: 0;
  right: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
  display: none;
}
.header-menu .menu-dropdown::before {
  display: block;
  content: "";
  position: absolute;
  height: 1px;
  width: 150vw;
  background-color: #f0f0f0;
  left: -50vw;
  top: 0;
}
.header-menu .menu-dropdown .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.header-menu .menu-dropdown.active {
  display: block;
}
.header-menu .menu-item-about,
.header-menu .menu-item-map,
.header-menu .menu-item-blog {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f5f7fb;
  padding: 7px 9px;
  border-radius: 7px;
  gap: 7px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-menu .menu-item-about::before,
.header-menu .menu-item-map::before,
.header-menu .menu-item-blog::before {
  position: relative;
  display: block;
  content: "";
  width: 41px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
}
.header-menu .menu-item-about:hover,
.header-menu .menu-item-map:hover,
.header-menu .menu-item-blog:hover {
  background-color: #eaecf0;
}
.header-menu .menu-item-about::before {
  background-image: url(../img/icons/mi1.svg);
}
.header-menu .menu-item-map::before {
  background-image: url(../img/icons/mi2.svg);
}
.header-menu .menu-item-blog::before {
  background-image: url(../img/icons/mi3.svg);
}

.header-mobile .container {
  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-mobile .header-logo {
  position: relative;
  z-index: 2;
}

.mobile-menu {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  padding-left: 16px;
  padding-right: 16px;
  z-index: 20;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__top {
  position: fixed;
  right: 0;
  top: 0;
  padding: 15px 16px 21px 16px;
  z-index: 2;
}
.mobile-menu .mobile-menu-wrap {
  position: relative;
  overflow: scroll;
  height: 100vh;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  padding-top: 20px;
  padding-bottom: 70px;
}
.mobile-menu .mobile-menu-wrap::-webkit-scrollbar {
  width: 0;
}
.mobile-menu .mobile-menu-wrap .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 27px;
}
.mobile-menu .hh-btns {
  position: fixed;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 15px;
  gap: 15px;
}
.mobile-menu .hh-btns .search {
  height: 47px;
  width: 47px;
}
.mobile-menu .hh-btns .lang {
  height: 47px;
  width: 47px;
}

.mobile-h-search {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100%;
  height: 100vh;
  z-index: 100;
  padding: 30px 16px;
  background: #fff;
}
.mobile-h-search.active {
  left: 0;
}
.mobile-h-search__close {
  cursor: pointer;
}
.mobile-h-search__form {
  background: var(--content-alternative);
  border-bottom: 1px solid #d3dce0;
  padding-left: 14px;
  padding-right: 14px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  margin-top: 17px;
}
.mobile-h-search__form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  background-image: url(../../img/icons/search-gray.svg);
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
}
.mobile-h-search__form input {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #62646a;
  padding: 18px 0;
  width: 100%;
  border: none;
  background: transparent;
}

.header-search {
  position: relative;
}
.header-search__box {
  position: absolute;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: none;
}
.header-search__box.active {
  opacity: 1;
  visibility: visible;
}
.header-search__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
  background: var(--content-alternative);
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  padding-left: 14px;
  width: 294px;
}
.header-search__input button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  background-image: url(../../img/icons/search-gray.svg);
  background-repeat: no-repeat;
  border: none;
  background-color: transparent;
}
.header-search__input input {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #62646a;
  padding: 18px 14px;
  padding-left: 0;
  border: none;
  background-color: transparent;
  width: 100%;
}

.header-lang {
  position: relative;
}
.header-lang__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  padding: 8px 0;
  display: -ms-grid;
  display: grid;
  gap: 2px;
  -webkit-box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 14px 40px 0 rgba(0, 0, 0, 0.15);
  background: var(--content-alternative);
  border-radius: 12px;
  width: 74px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-lang__list.active {
  opacity: 1;
  visibility: visible;
}
.header-lang__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 8px 14px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: var(--content-primary);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.header-lang__list li a:hover {
  background-color: rgba(211, 220, 224, 0.3);
}
.header-lang__list li a.active::after {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../../img/icons/checkedic.svg);
  background-repeat: no-repeat;
}

.mob-lang {
  margin-bottom: 37px;
}
.mob-lang__list {
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.mob-lang__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding-right: 5px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  color: var(--content-primary);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.mob-lang__list li a.active::after {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../../img/icons/checkedic.svg);
  background-repeat: no-repeat;
}

.mobile-menu .h-btn-v1 svg path {
  fill: #000000 !important;
}

.mob-nav {
  display: -ms-grid;
  display: grid;
  gap: 19px;
  margin-bottom: 35px;
}
.mob-nav span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(124, 126, 133, 0.5);
}
.mob-nav ul {
  display: -ms-grid;
  display: grid;
  gap: 22px;
}
.mob-nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #000;
}

.mob-prod-nav {
  display: -ms-grid;
  display: grid;
  gap: 19px;
  margin-bottom: 33px;
}
.mob-prod-nav span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: rgba(124, 126, 133, 0.5);
}
.mob-prod-nav ul {
  display: -ms-grid;
  display: grid;
  gap: 22px;
}
.mob-prod-nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #000;
  padding-right: 12px;
  background-image: url(../img/icons/link-ic-dark.svg);
  background-position: bottom 4px right;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.mob-prod-nav ul li a:hover {
  padding-right: 14px;
}

.menu-burger {
  width: 46px;
  height: 46px;
  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;
  cursor: pointer;
  background: #1e558e;
  border-radius: 90px;
  position: relative;
  z-index: 2;
}
.menu-burger .burger-lines {
  width: 22px;
  height: 22px;
  position: relative;
}
.menu-burger .burger-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.menu-burger .burger-lines span:first-child {
  top: calc(50% - 3px);
}
.menu-burger .burger-lines span:last-child {
  top: calc(50% + 3px);
}
.menu-burger.active .burger-lines span:first-child {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 50%;
}
.menu-burger.active .burger-lines span:last-child {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 50%;
}

.header-transparent {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.header-transparent .header-logo svg path {
  fill: #fff;
}
.header-transparent .header-menu li > a:not(.menu-dropdown a) {
  color: #fff;
}
.header-transparent .header-menu .has-dropdown::after {
  background-image: url(../../img/icons/mnu-arr-white.svg);
}
.header-transparent .h-btn-v1 svg path {
  fill: #fff;
}
.header-transparent .h-btn-v2 {
  color: var(--content-alternative);
  border: 1px solid var(--content-alternative);
}
.header-transparent .h-btn-v2--dark {
  background: var(--content-alternative);
  color: var(--content-primary);
}
.header-transparent .h-btn-v2--dark:hover {
  color: var(--content-alternative) !important;
  background-color: transparent !important;
}
.header-transparent .h-btn-v2:hover {
  background: var(--content-alternative);
  color: var(--content-primary);
}

.header-light {
  background-color: transparent;
}

.header-light-bgwhite {
  background-color: #fff;
}

.hero-section {
  overflow: hidden;
}

.hero {
  height: 753px;
  position: relative;
}

.hero_slider {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #444648;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 100px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 2;
}
@media (max-width: 1200px) {
  .hero-slide {
    padding-top: 80px;
  }
}
.hero-slide .container {
  min-height: 100%;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 120px;
}
.hero-slide--dark {
  background: #101316;
}
.hero-slide__image1 {
  position: absolute;
  bottom: -50px;
  right: 0px;
  z-index: 0;
}
.hero-slide__image1::before {
  position: absolute;
  display: block;
  content: "";
  height: 1400px;
  width: 800px;
  background-image: url(../../img/bgblure.png);
  background-repeat: no-repeat;
  background-position: top center;
  top: -100px;
  right: -100px;
  z-index: -1;
}

.title_hero_1 {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(64px, 12vw, 110px);
  line-height: 138%;
  text-align: center;
  color: var(--content-alternative);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: clamp(23px, 4.4vw, 45px);
}

.pretitle1 {
  font-family: var(--third-family);
  font-weight: 300;
  font-size: clamp(20px, 2.933vw, 24px);
  line-height: 138%;
  color: #c0c0c0;
  max-width: 742px;
}
.pretitle1 span {
  font-weight: 600;
  color: var(--content-alternative);
}

.slide1_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero-slide-first__content {
  position: relative;
  z-index: 2;
}

.numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 43px;
  position: relative;
  z-index: 2;
}
.numbers .numbers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
}
.numbers .numbers-item__lbl {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-alternative);
  opacity: 0.6;
}
.numbers .numbers-item__number {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 26px;
  line-height: 147%;
  text-transform: uppercase;
  color: var(--content-alternative);
}

@media (max-width: 1200px) {
  .hero-slide__image1 {
    right: -80px;
  }
  .hero-slide__image1 img {
    width: 900px;
  }
  .hero-slide__image1::before {
    height: 800px;
    width: 600px;
    background-image: url(../../img/bgblure.png);
    top: -200px;
    right: -100px;
  }
}
@media (max-width: 992px) {
  .hero {
    height: 770px;
  }
  .title_hero_1 img {
    display: none;
  }
  .title_hero_1 {
    font-size: 64px;
    margin-bottom: 20px;
  }
  .pretitle1 {
    font-size: 20px;
  }
  .numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .numbers .numbers-item {
    gap: 3px;
  }
  .numbers .numbers-item__lbl {
    font-size: 13px;
  }
  .numbers .numbers-item__number {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .hero-slide__image1 {
    right: -80px;
  }
  .hero-slide__image1 img {
    width: 600px;
  }
  .hero-slide__image1::before {
    height: 700px;
    width: 600px;
    background-image: url(../../img/bgblure.png);
    top: -250px;
    right: -240px;
  }
}
.hero-slide__bgimage {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
}
.hero-slide__bgimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.hero-title-main {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 48px;
  line-height: 138%;
  text-transform: uppercase;
  color: var(--content-alternative);
}

.hero-pretitle-main {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: var(--content-alternative);
}

.hero-btn-main {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--content-primary);
  background: var(--content-alternative);
  border-radius: 104px;
  padding: 21px;
  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;
}

.hero-slide-default .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-slide-default__content {
  max-width: 793px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 768px) {
  .hero-title-main {
    font-size: 34px;
  }
  .hero-pretitle-main {
    font-size: 20px;
  }
  .hero-btn-main {
    font-weight: 500;
    font-size: 16px;
    border-radius: 104px;
    padding: 21px;
  }
}
@media (max-width: 576px) {
  .hero-slide__bgimage img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
  }
}
.slider-pagination {
  position: absolute;
  width: 100%;
  bottom: 42px;
  z-index: 10;
}
.slider-pagination .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.slider-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.13);
  padding: 8px;
}
.slider-pagination ul li {
  border-radius: 42px;
  width: 8px;
  height: 8px;
  background: var(--content-alternative);
  opacity: 0.4;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.slider-pagination ul li.active {
  width: 20px;
  background: #fff;
  opacity: 1;
}

.blog-section {
  padding-top: 32px;
  padding-bottom: 100px;
}
@media (max-width: 576px) {
  .blog-section {
    padding-bottom: 125px;
    position: relative;
  }
  .blog-section .blog-section-top__btnplace {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
    right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  }
}
.blog-section .blog-section-top {
  margin-bottom: 40px;
}
.blog-section .blog-section-top__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
}
.blog-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(23px, 3.867vw, 35px) 16px;
}

.blog-list-v1 .blog-s-item:nth-child(1) {
  width: 100%;
  gap: 28px;
}
.blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__title {
  font-size: 24px;
}
.blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__image {
  min-width: 61%;
  max-width: 61%;
  min-height: 384px;
  max-height: 384px;
}
@media (max-width: 1400px) {
  .blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__image {
    min-width: 50%;
    max-width: 50%;
    min-height: 384px;
    max-height: 100%;
  }
}
.blog-list-v1 .blog-s-item:nth-child(2), .blog-list-v1 .blog-s-item:nth-child(3) {
  width: calc(50% - 8px);
}
@media (max-width: 1400px) {
  .blog-list-v1 .blog-s-item:nth-child(2), .blog-list-v1 .blog-s-item:nth-child(3) {
    gap: 28px;
  }
  .blog-list-v1 .blog-s-item:nth-child(2) .blog-s-item__title, .blog-list-v1 .blog-s-item:nth-child(3) .blog-s-item__title {
    font-size: 24px;
  }
  .blog-list-v1 .blog-s-item:nth-child(2) .blog-s-item__image, .blog-list-v1 .blog-s-item:nth-child(3) .blog-s-item__image {
    min-width: 50%;
    max-width: 50%;
    min-height: 384px;
    max-height: 100%;
  }
}
@media (max-width: 1200px) {
  .blog-list-v1 .blog-s-item:nth-child(2), .blog-list-v1 .blog-s-item:nth-child(3) {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .blog-list-v1 .blog-s-item:nth-child(1), .blog-list-v1 .blog-s-item:nth-child(2), .blog-list-v1 .blog-s-item:nth-child(3) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__title, .blog-list-v1 .blog-s-item:nth-child(2) .blog-s-item__title, .blog-list-v1 .blog-s-item:nth-child(3) .blog-s-item__title {
    font-size: 18px;
  }
  .blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__image, .blog-list-v1 .blog-s-item:nth-child(2) .blog-s-item__image, .blog-list-v1 .blog-s-item:nth-child(3) .blog-s-item__image {
    min-width: 100%;
    max-width: 100%;
    min-height: 284px;
    max-height: 284px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .blog-list-v1 .blog-s-item:nth-child(1) .blog-s-item__image, .blog-list-v1 .blog-s-item:nth-child(2) .blog-s-item__image, .blog-list-v1 .blog-s-item:nth-child(3) .blog-s-item__image {
    min-height: 184px;
    max-height: 184px;
  }
}

.blog-list-v4 {
  gap: clamp(21px, 3.2vw, 28px) 16px;
}
.blog-list-v4 .blog-s-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(33.33% - 11px);
  border-bottom: 1px solid #d3dce0;
  padding-bottom: 24px;
}
.blog-list-v4 .blog-s-item .blog-s-item__image {
  min-width: 100%;
  max-width: 100%;
  min-height: 240px;
  max-height: 240px;
}
@media (max-width: 576px) {
  .blog-list-v4 .blog-s-item .blog-s-item__image {
    min-height: 184px;
    max-height: 184px;
  }
}
.blog-list-v4 .blog-s-item .blog-s-item__box {
  min-height: 230px;
  -ms-flex-line-pack: start;
      align-content: start;
}
@media (max-width: 768px) {
  .blog-list-v4 .blog-s-item .blog-s-item__box {
    min-height: auto;
  }
}
.blog-list-v4 .blog-s-item:nth-child(1) {
  width: 100%;
  gap: 28px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 0px;
  padding-bottom: 0px;
}
@media (max-width: 576px) {
  .blog-list-v4 .blog-s-item:nth-child(1) {
    border-bottom: 1px solid #d3dce0;
    padding-bottom: 24px;
  }
}
.blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__title {
  font-size: 24px;
}
.blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__image {
  min-width: 61%;
  max-width: 61%;
  min-height: 384px;
  max-height: 384px;
}
@media (max-width: 1400px) {
  .blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__image {
    min-width: 50%;
    max-width: 50%;
    min-height: 384px;
    max-height: 100%;
  }
}
@media (max-width: 992px) {
  .blog-list-v4 .blog-s-item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 576px) {
  .blog-list-v4 .blog-s-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .blog-list-v4 .blog-s-item:nth-child(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__title {
    font-size: 18px;
  }
  .blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__image {
    min-width: 100%;
    max-width: 100%;
    min-height: 284px;
    max-height: 284px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .blog-list-v4 .blog-s-item:nth-child(1) .blog-s-item__image {
    min-height: 184px;
    max-height: 184px;
  }
}

.blog-s-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  display: flex;
}
@media (max-width: 768px) {
  .blog-s-item {
    border-bottom: 1px solid #d3dce0;
    padding-bottom: 23px;
  }
}
.blog-s-item__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.blog-s-item__box {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.blog-s-item__image {
  border-radius: 12px;
  overflow: hidden;
  min-width: 221px;
  max-width: 221px;
  min-height: 221px;
  max-height: 100%;
}
.blog-s-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.43s;
  transition: 0.43s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.blog-s-item__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-s-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
}
.blog-s-item__cat {
  font-weight: 500;
  font-size: 13px;
  line-height: 147%;
  text-transform: uppercase;
  color: #62646a;
}
.blog-s-item__time {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #62646a;
  white-space: nowrap;
  padding-left: 19px;
  background-image: url(../img/icons/ci_timer.svg);
  background-position: left center;
  background-repeat: no-repeat;
}
.blog-s-item__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--content-primary);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.blog-s-item__title:hover {
  color: #1e558e;
}
.blog-s-item__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #62646a;
}

.b-author {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.b-author .auth-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.b-author__author {
  min-width: 42px;
  max-width: 42px;
  min-height: 42px;
  max-height: 42px;
  border-radius: 100px;
  overflow: hidden;
}
.b-author__author img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-author .auth-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 147%;
  color: var(--content-primary);
}
.b-author .auth-position {
  font-weight: 400;
  font-size: 12px;
  line-height: 147%;
  color: #62646a;
}

.link-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 104px;
  padding: 4px 21px 4px 5px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--content-primary);
}
.link-more__ic {
  background: var(--content-alternative);
  border: 1px solid #d3dce0;
  border-radius: 61px;
  width: 46px;
  height: 46px;
  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;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.link-more:hover {
  background: #1e558e;
  color: #fff;
}
.link-more:hover .link-more__ic {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.blog-page .title-main {
  text-align: left;
}
@media (max-width: 768px) {
  .blog-page .blog-section {
    padding-bottom: 66px;
  }
}

.author-toka {
  border: 1px solid rgba(0, 0, 0, 0.06);
  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;
}
.author-toka img {
  width: 17px;
}

.blog-list-v2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 144px;
  gap: 28px 16px;
}
@media (max-width: 992px) {
  .blog-list-v2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-list-v2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }
}
.blog-list-v2 .blog-s-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #d3dce0;
  padding-bottom: 24px;
}
.blog-list-v2 .blog-s-item .blog-s-item__image {
  min-width: 100%;
  max-width: 100%;
  min-height: 240px;
  max-height: 240px;
}
@media (max-width: 576px) {
  .blog-list-v2 .blog-s-item .blog-s-item__image {
    min-height: 184px;
    max-height: 184px;
  }
}
.blog-list-v2 .blog-s-item .blog-s-item__box {
  min-height: 230px;
  -ms-flex-line-pack: start;
      align-content: start;
}
@media (max-width: 768px) {
  .blog-list-v2 .blog-s-item .blog-s-item__box {
    min-height: auto;
  }
}

.blog-list-v3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}
@media (max-width: 576px) {
  .blog-list-v3 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-list-v3 .blog-s-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #d3dce0;
  padding-bottom: 24px;
}
.blog-list-v3 .blog-s-item .blog-s-item__image {
  min-width: 100%;
  max-width: 100%;
  min-height: 240px;
  max-height: 240px;
}
@media (max-width: 576px) {
  .blog-list-v3 .blog-s-item .blog-s-item__image {
    min-height: 184px;
    max-height: 184px;
  }
}
.blog-list-v3 .blog-s-item .blog-s-item__box {
  min-height: 230px;
  -ms-flex-line-pack: start;
      align-content: start;
}
@media (max-width: 768px) {
  .blog-list-v3 .blog-s-item .blog-s-item__box {
    min-height: auto;
  }
}

.author-list {
  padding-top: 50px;
  padding-bottom: 20px;
}
.author-list__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 138%;
  color: var(--content-primary);
  margin-bottom: clamp(24px, 3.867vw, 35px);
}
.author-list__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .author-list__box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .author-list__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.author-item {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border-radius: 13px;
  padding: 20px 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
.author-item__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  color: var(--content-primary);
}
.author-item__link:hover {
  text-decoration: none;
}

.author-pg-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(21px, 2.933vw, 24px);
  padding-top: 6px;
}
.author-pg-top .b-author {
  gap: 34px;
}
.author-pg-top .b-author .b-author__author {
  min-width: 122px;
  max-width: 122px;
  min-height: 122px;
  max-height: 122px;
}
.author-pg-top .b-author .auth-section {
  gap: 12px;
}
.author-pg-top .b-author .auth-name {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 138%;
}
.author-pg-top .b-author .auth-position {
  font-size: 16px;
  line-height: 147%;
}
.author-pg-top .page-pretitle {
  width: 464px;
}
@media (max-width: 768px) {
  .author-pg-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author-pg-top .b-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author-pg-top .auth-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author-pg-top .auth-name {
    text-align: center;
  }
  .author-pg-top .auth-position {
    text-align: center;
  }
  .author-pg-top .page-pretitle {
    width: 100%;
    text-align: center;
  }
}

.article-page__mainimage {
  height: 912px;
  margin-bottom: clamp(35px, 6.667vw, 87px);
}
@media (max-width: 2000px) {
  .article-page__mainimage {
    height: 712px;
  }
}
@media (max-width: 1700px) {
  .article-page__mainimage {
    height: 512px;
  }
}
@media (max-width: 992px) {
  .article-page__mainimage {
    height: 413px;
  }
}
@media (max-width: 768px) {
  .article-page__mainimage {
    height: 313px;
  }
}
@media (max-width: 576px) {
  .article-page__mainimage {
    height: 213px;
  }
}
.article-page__mainimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.article-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
  position: relative;
}

.article-nav {
  min-width: 304px;
  max-width: 304px;
  height: 100%;
  position: sticky;
  top: 110px;
}
@media (max-width: 1300px) {
  .article-nav {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 992px) {
  .article-nav {
    display: none;
  }
}
.article-nav span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 14px;
  color: #62646a;
}
.article-nav ul {
  margin-top: 25px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 235px;
}
.article-nav ul li a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #62646a;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.article-nav ul li a.active {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--content-primary);
}
.article-nav ul li a:hover {
  color: var(--content-primary);
}

.article-content {
  width: 100%;
}
.article-content p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  color: var(--content-primary);
  margin-bottom: clamp(14px, 2.267vw, 20px);
}
.article-content ul {
  list-style-type: disc;
  padding-left: 30px;
}
.article-content ul li {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 10px;
  color: var(--content-primary);
}
.article-content img {
  width: 100%;
  border-radius: 12px;
}
.article-content .subscribe-section {
  padding: 0;
  margin: 42px 0;
}

.article-topline {
  margin-bottom: clamp(10px, 1.733vw, 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.article-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(13px, 1.8vw, 14px);
  color: #62646a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.article-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(13px, 1.8vw, 14px);
  color: #62646a;
  padding-left: 19px;
  background-image: url(../img/icons/ci_timer.svg);
  background-position: left center;
  background-repeat: no-repeat;
  display: none;
}
@media (max-width: 768px) {
  .article-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.article-maintitle {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 138%;
  color: var(--content-primary);
  margin-bottom: 27px;
}

.article-content-block {
  margin: 42px 0;
}

.article-title-3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 135%;
  color: var(--content-primary);
  margin-bottom: clamp(20px, 3.333vw, 30px);
}

.article-title-2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(20px, 3.467vw, 32px);
  text-align: center;
  color: #1e558e;
  margin: 42px 0;
}

.article-title-4 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 24px;
  color: var(--content-primary);
  margin-bottom: 20px;
  line-height: 130%;
}

.fsize-18 {
  font-size: 18px;
}

.article-info {
  min-width: 304px;
  max-width: 304px;
}
@media (max-width: 1300px) {
  .article-info {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 992px) {
  .article-info {
    display: none;
  }
}

.article-share {
  margin-top: clamp(27px, 4vw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .article-share {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.article-share span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #62646a;
}
.article-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  list-style-type: none;
}
.article-share ul li a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.article-share ul li a:hover {
  opacity: 0.8;
}

.blog-popular {
  padding-top: 30px;
  padding-bottom: 57px;
}
.blog-popular__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 138%;
  color: var(--content-primary);
  margin-bottom: clamp(32px, 4.8vw, 40px);
}
.blog-popular .blog-section__list {
  margin-top: 0;
}

.shop-product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  padding-top: clamp(18px, 3.2vw, 30px);
  margin-top: clamp(24px, 3.6vw, 30px);
}
.shop-product-list .product-card {
  width: calc(25% - 12px);
  margin-right: 16px;
}
@media (min-width: 1200px) {
  .shop-product-list .product-card:nth-child(4n+4) {
    margin-right: 0;
  }
}
@media (max-width: 1200px) and (min-width: 839px) {
  .shop-product-list .product-card:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .shop-product-list .product-card {
    width: calc(33.33% - 11px);
  }
}
@media (max-width: 839px) {
  .shop-product-list .product-card {
    width: calc(50% - 8px);
  }
  .shop-product-list .product-card:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .shop-product-list .product-card {
    width: 100%;
    margin-right: 0 !important;
  }
}

.shop-filter-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: clamp(38px, 6.4vw, 60px);
  padding-bottom: clamp(24px, 4.267vw, 42px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
@media (max-width: 576px) {
  .shop-filter-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .shop-filter-category .btn-tb {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 10px;
    padding-right: 10px;
  }
  .shop-filter-category .btn-tb svg {
    width: 18px;
    height: 18px;
  }
}

.mob-filter-btn {
  display: none;
  background: var(--content-alternative);
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  padding: 16px 24px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  height: 48px;
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 17px;
}
.mob-filter-btn::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  background-image: url(../../img/icons/mnu-arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  right: 24px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .mob-filter-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.shop-filter-close {
  display: none;
  position: absolute;
  right: 16px;
  top: 24px;
  background-color: #DFE3E9;
  width: 28px;
  height: 28px;
  border-radius: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.shop-filter-close img {
  width: 22px;
}
@media (max-width: 768px) {
  .shop-filter-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.shop-filter {
  padding-top: clamp(24px, 4vw, 35px);
}
@media (max-width: 768px) {
  .shop-filter__box {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    display: none;
    background-color: #fff;
    padding: 70px 16px;
    overflow: auto;
  }
  .shop-filter__box.active {
    display: block;
  }
}
.shop-filter__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px 20px;
}
@media (max-width: 1200px) {
  .shop-filter__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .shop-filter__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.select {
  position: relative;
}
.select__main {
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  padding: 16px 24px;
  background: var(--content-alternative);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.select__main::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  position: relative;
  background-image: url(../../img/icons/mnu-arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.select .select-list {
  position: absolute;
  border: 1px solid #e0e3e9;
  border-radius: 11px;
  background: var(--content-alternative);
  cursor: pointer;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 8px;
  display: -ms-grid;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 768px) {
  .select .select-list {
    position: relative;
    top: auto;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    margin-top: 4px;
  }
}
.select .select-item {
  padding: 16px 24px;
  border-radius: 8px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  color: #000;
}
.select .select-item:hover {
  background: var(--background-screen);
}
.select .select-item.selected {
  background: var(--background-screen);
}
.select.active .select__main::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.select.active .select-list {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .select.active .select-list {
    display: -ms-grid;
    display: grid;
  }
}

.filter-selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 21px;
  margin-top: clamp(24px, 3.333vw, 26px);
}
.filter-selected__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}

.filter-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 147%;
  color: #000;
  padding: 7px 10px;
  background: var(--background-screen);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.filter-label__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14px;
  height: 14px;
  background-image: url(../../img/icons/icremove.svg);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.filter-label__remove:hover {
  opacity: 0.5;
}

.remove-selected-filters {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.04em;
  text-decoration: underline;
  color: #000;
  opacity: 0.67;
  cursor: pointer;
}
.remove-selected-filters:hover {
  text-decoration: none;
}

.top-section-v2 {
  margin-bottom: 58px;
}

.title-big {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(24px, 4.267vw, 48px);
  line-height: 138%;
  text-align: center;
  color: var(--content-primary);
}
@media (max-width: 992px) {
  .title-big {
    text-align: left;
  }
}

.steps-business {
  padding-bottom: clamp(54px, 9.867vw, 95px);
}
.steps-business__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-bottom: clamp(50px, 9.333vw, 94px);
  position: relative;
}
.steps-business__box::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  margin: 0 auto;
  height: 1px;
  width: 80%;
  border-top: 1px dashed #d3dce0;
  z-index: -1;
}
.steps-business .steps-business-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
}
.steps-business .steps-business-item__num {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 147%;
  text-align: center;
  color: #1e558e;
  border-radius: 37px;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
}
.steps-business .steps-business-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--content-primary);
}
.steps-business .steps-business-item__txt {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #62646a;
}
@media (max-width: 1200px) {
  .steps-business .steps-business-item__title {
    font-size: 20px;
  }
}
.steps-business__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .steps-business__box {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-business__box::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps-business__box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .steps-business__box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .steps-business .steps-business-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .steps-business .steps-business-item__title {
    text-align: left;
  }
  .steps-business .steps-business-item__txt {
    text-align: left;
  }
}

.pd0 {
  padding: 0;
}

.charging-station {
  position: relative;
  overflow: hidden;
  padding-top: clamp(50px, 8vw, 70px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.charging-station .charging-station-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin-top: clamp(21px, 4vw, 40px);
  margin-bottom: clamp(29px, 4.667vw, 40px);
}

.chargingSlider .swiper-wrapper {
  margin-left: -20px;
}
@media (max-width: 768px) {
  .chargingSlider .swiper-wrapper {
    margin-left: 0;
  }
}
.chargingSlider .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  width: 308px;
  height: 345px;
}
@media (max-width: 768px) {
  .chargingSlider .swiper-slide {
    width: 288px;
    height: 345px;
  }
}

.charging-station-item {
  width: 100%;
  height: 100%;
}
.charging-station-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.why {
  position: relative;
  padding-top: clamp(25px, 4.933vw, 50px);
  padding-bottom: clamp(25px, 4.933vw, 50px);
}
.why::before {
  position: absolute;
  display: block;
  content: "";
  width: 100vw;
  height: 1467px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -400px;
  z-index: -1;
  background-image: url(../../img/Bgspot2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .why::before {
    background-image: url(../../img/Bgspot2mob.svg);
    height: 2200px;
    width: 100vw;
    top: -300px;
  }
}
.why__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 957px;
  margin: 0 auto;
  gap: 16px;
  margin-top: clamp(32px, 6vw, 60px);
}
@media (max-width: 768px) {
  .why__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}
.why .why-col {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .why .why-col {
    width: 100%;
  }
}
.why .why-col:nth-child(1) .why-item:nth-child(1):nth-child(1) {
  min-height: 232px;
}
@media (max-width: 768px) {
  .why .why-col:nth-child(1) .why-item:nth-child(1):nth-child(1) {
    min-height: auto;
  }
}
.why .why-col:nth-child(2) .why-item:nth-child(1) {
  min-height: 337px;
}
@media (max-width: 768px) {
  .why .why-col:nth-child(2) .why-item:nth-child(1) {
    min-height: auto;
  }
}
.why .why-item {
  background: var(--content-alternative);
  border-radius: 13px;
  padding: 24px 24px 31px 24px;
}
.why .why-item__top {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.why .why-item .w-ccalc {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
  color: var(--content-primary);
}
.why .why-item .w-ccalc:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .why .why-item .w-ccalc {
    display: none;
  }
}
.why .why-item__ico {
  background: var(--background-screen);
  background-image: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border-radius: 37px;
  width: 56px;
  height: 56px;
  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;
}
.why .why-item__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: var(--content-primary);
  margin-bottom: 16px;
  max-width: 273px;
}
.why .why-item__txt {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #62646a;
}

.services-sc {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.services-sc__box {
  display: -ms-grid;
  display: grid;
  gap: clamp(40px, 8.667vw, 90px);
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
}
.services-sc .services-sc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services-sc .services-sc-item__info {
  padding-right: clamp(32px, 4.667vw, 52px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.services-sc .services-sc-item__image {
  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;
  min-width: 470px;
  max-width: 470px;
  height: 470px;
  border-radius: 18px;
  overflow: hidden;
}
.services-sc .services-sc-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .services-sc .services-sc-item__image {
    min-width: 390px;
    max-width: 390px;
    height: 390px;
  }
}
@media (max-width: 768px) {
  .services-sc .services-sc-item__image {
    min-width: 280px;
    max-width: 280px;
    height: 280px;
  }
}
.services-sc .services-sc-item .title-main {
  margin-bottom: clamp(16px, 2.267vw, 18px);
  text-align: left;
}
.services-sc .services-sc-item__txt {
  margin-bottom: clamp(32px, 5.333vw, 50px);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #62646a;
}
@media (max-width: 576px) {
  .services-sc .services-sc-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-sc .services-sc-item__info {
    padding-bottom: 32px;
  }
  .services-sc .services-sc-item__image {
    height: 337px;
    min-width: 100%;
    max-width: 100%;
  }
}
.services-sc .services-sc-item-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.services-sc .services-sc-item-reverse .services-sc-item__info {
  padding-right: 0;
  padding-left: clamp(32px, 4.667vw, 52px);
}
@media (max-width: 576px) {
  .services-sc .services-sc-item-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-sc .services-sc-item-reverse .services-sc-item__info {
    padding-left: 0;
  }
}

.charg-gallery {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
  position: relative;
}
.charg-gallery .top .title-main {
  max-width: 730px;
}
.charg-gallery__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(40px, 8vw, 80px);
}
.charg-gallery .chargGallery-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 450px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
  bottom: 330px;
}
@media (max-width: 576px) {
  .charg-gallery .chargGallery-nav {
    position: relative;
    bottom: auto;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 18px;
  }
}
.charg-gallery .chargGallery {
  margin-top: 60px;
}
@media (max-width: 576px) {
  .charg-gallery .chargGallery {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 22px;
  }
}
.charg-gallery .chargGallery-item {
  border-radius: 18px;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  height: 350px;
  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;
  padding: 24px;
  overflow: hidden;
}
.charg-gallery .chargGallery-item img {
  mix-blend-mode: darken;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.charg-gallery .chargGallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 576px) {
  .charg-gallery .chargGallery-item {
    height: 300px;
  }
}

.steps-3 {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.steps-3 .top {
  max-width: 790px;
  margin: 0 auto;
}
.steps-3__box {
  display: -ms-grid;
  display: grid;
  gap: 56px;
  position: relative;
  margin-top: clamp(43px, 7.333vw, 65px);
}
.steps-3__box::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 590px;
  background-image: url(../../img/ststlines.svg);
  left: 0;
  top: 157px;
  z-index: -1;
}
@media (max-width: 992px) {
  .steps-3__box::before {
    left: 27px;
  }
}
@media (max-width: 768px) {
  .steps-3__box::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps-3__box {
    gap: 18px;
  }
}
.steps-3 .steps-3-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-3 .steps-3-item:nth-child(3) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.steps-3 .steps-3-item__sc1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-3 .steps-3-item__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-elevated-0);
  border-radius: 37px;
  min-width: 56px;
  max-width: 56px;
  height: 56px;
  margin-right: 34px;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 18px;
  line-height: 147%;
  text-align: center;
  color: #1e558e;
  margin-left: -28px;
}
@media (max-width: 992px) {
  .steps-3 .steps-3-item__num {
    margin-left: 0;
  }
}
.steps-3 .steps-3-item__image {
  border-radius: 18px;
  min-width: 397px;
  max-width: 397px;
  height: 262px;
  overflow: hidden;
  margin-right: 48px;
}
@media (max-width: 992px) {
  .steps-3 .steps-3-item__image {
    min-width: 300px;
    max-width: 300px;
    height: 262px;
  }
}
.steps-3 .steps-3-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.steps-3 .steps-3-item__content {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 140%;
  color: #737478;
}
.steps-3 .steps-3-item__content strong {
  font-weight: 700;
  color: var(--content-primary);
}
.steps-3 .steps-3-item__content span {
  font-size: 16px;
  line-height: 140%;
}
.steps-3 .steps-3-item__double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: clamp(28px, 4.667vw, 40px) 0;
}
@media (max-width: 1200px) {
  .steps-3 .steps-3-item__double {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.steps-3 .steps-3-item__doubleitem {
  width: 50%;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1200px) {
  .steps-3 .steps-3-item__doubleitem {
    width: 100%;
  }
}
.steps-3 .steps-3-item__doubleitem span {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(18px, 2.533vw, 20px);
  line-height: 140%;
  color: var(--content-primary);
}
.steps-3 .steps-3-item__doubleitem p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #737478;
}
@media (max-width: 768px) {
  .steps-3 .steps-3-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .steps-3 .steps-3-item__sc1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .steps-3 .steps-3-item__num {
    margin-right: 0;
    margin-bottom: 28px;
  }
  .steps-3 .steps-3-item__image {
    margin-right: 0;
    margin-bottom: 28px;
    width: 100%;
    min-width: 100%;
    max-width: 500px;
    height: 288px;
  }
}

.faq-min {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.faq-min .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq-min .top .title-main {
  text-align: left;
  max-width: 630px;
}
.faq-min__box {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .faq-min__box {
    margin-top: 38px;
  }
}
.faq-min .faq-tabs-item {
  display: block;
}
.faq-min .faqitem {
  border: 1px solid #f0f0f0;
}
.banner-vv1 {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(50px, 8.667vw, 80px);
}
.banner-vv1__box {
  border-radius: 18px;
  overflow: hidden;
  background-image: url(../../img/bgbanner.png);
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: clamp(68px, 10.667vw, 90px) clamp(21px, 2.933vw, 24px);
}
.banner-vv1__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(20px, 3.733vw, 36px);
  line-height: 138%;
  text-align: center;
  color: var(--content-alternative);
}
.banner-vv1__pretitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: var(--content-alternative);
}

.contact-page {
  padding-bottom: 46px;
}
.contact-page__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact-page__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 54px;
  }
}
.contact-page__main {
  width: 50%;
  max-width: 567px;
}
@media (max-width: 768px) {
  .contact-page__main {
    width: 100%;
    max-width: 100%;
  }
}
.contact-page__main .title-main {
  text-align: left;
}
.contact-page__info {
  width: 50%;
}
@media (max-width: 768px) {
  .contact-page__info {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .contact-page .title-main {
    font-size: 24px;
  }
}

.contact-form {
  margin-top: clamp(20px, 4.667vw, 50px);
  display: -ms-grid;
  display: grid;
  gap: 11px;
}
.contact-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-form .input-item textarea {
  height: 187px;
}
.contact-form .checkbox {
  margin-top: 4px;
  margin-bottom: clamp(8px, 1.733vw, 16px);
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox_inp {
  display: none;
}

.checkbox_lbl {
  min-width: 16px;
  max-width: 16px;
  min-height: 16px;
  max-height: 16px;
  border: 1px solid #a1a4a9;
  border-radius: 4px;
  display: inline-block;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.checkbox_lbl:hover {
  border: 1px solid #c3c7d2;
  background-color: #e9efff;
}

.checkbox_inp:checked + .checkbox_lbl {
  background-color: #1e558e;
  border: 1px solid #1e558e;
  background-image: url("../../img/icons/checkboxi.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.checkbox_lbl_txt {
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--content-primary);
}
.checkbox_lbl_txt a {
  font-weight: 600;
  text-decoration: underline;
  color: #1e558e;
}

.contact-map {
  height: 700px;
  border-radius: 23px;
  overflow: hidden;
  background-image: url(../../img/map.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .contact-map {
    height: 470px;
  }
}

.contact-sc-min {
  background: var(--background-elevated-0);
  border-radius: 17px;
  width: 100%;
  padding: 30px 25px;
}
.contact-sc-min__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--content-primary);
  margin-bottom: 15px;
}
.contact-sc-min__location {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  background-image: url(../../img/icons/mapmapmin.svg);
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 26px;
}
@media (max-width: 576px) {
  .contact-sc-min {
    padding: 30px 15px 18px 15px;
  }
  .contact-sc-min__location {
    background-image: none;
    padding-left: 0;
  }
}
.contact-sc-min span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #62646a;
}

.contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 1300px) {
  .contact-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.contact-details__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 11px;
}

.cont-tel {
  padding: 4px;
  padding-right: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 100%;
  gap: 11px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
}
.cont-tel__icon {
  border-radius: 74px;
  width: 51px;
  height: 51px;
  background: var(--background-screen);
  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;
}
@media (min-width: 768px) {
  .cont-tel {
    border: none;
    min-width: auto;
    padding-right: 0;
  }
  .cont-tel:not(:first-child) {
    padding: 0;
  }
  .cont-tel:not(:first-child) .cont-tel__icon {
    display: none;
  }
}

.contact-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.contact-social a {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 74px;
  width: 51px;
  height: 51px;
  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;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.contact-social a img {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contact-social a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 1300px) {
  .contact-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-section-v3 {
  max-width: 628px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(21px, 3.467vw, 36px);
}
.top-section-v3 .title-big {
  text-align: center;
}
.top-section-v3 .page-pretitle {
  text-align: center;
}

.app-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.app-links a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.app-links a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}
@media (max-width: 576px) {
  .app-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.app-mockp {
  margin-top: 120px;
  padding-bottom: clamp(77px, 11.6vw, 100px);
  position: relative;
}
.app-mockp::after {
  display: block;
  content: "";
  position: absolute;
  width: 928px;
  height: 354px;
  top: 20px;
  background-image: url(../../img/bgforappimg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .app-mockp {
    margin-top: 43px;
  }
}
.app-mockp__box {
  background: #f6f8fc linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border-radius: 23px;
  width: 100%;
  max-width: 958px;
  min-height: 310px;
  max-height: 310px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.app-mockp__img {
  width: 312px;
  position: absolute;
}
.app-mockp__img img {
  width: 100%;
}
.app-mockp__img:nth-child(1) {
  bottom: 0;
  margin-left: -340px;
}
.app-mockp__img:nth-child(2) {
  top: 0;
  margin-right: -340px;
}
.app-mockp__imgmob {
  display: none;
}
@media (max-width: 992px) {
  .app-mockp__box {
    min-height: 190px;
    max-height: 190px;
  }
  .app-mockp__img {
    width: 200px;
  }
  .app-mockp__img:nth-child(1) {
    margin-left: -220px;
  }
  .app-mockp__img:nth-child(2) {
    margin-right: -220px;
  }
}
@media (max-width: 576px) {
  .app-mockp__box {
    margin-top: 85px;
    min-height: 310px;
    max-height: 310px;
  }
  .app-mockp__img {
    display: none;
  }
  .app-mockp__imgmob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
  }
  .app-mockp__imgmob img {
    width: 200px;
  }
}

.benefits {
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.benefits__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 576px) {
  .benefits__box {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.benefits-lbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--background-elevated-0);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 11px 21px 11px 11px;
}
.benefits-lbl__icon {
  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;
  border-radius: 100px;
  min-width: 49px;
  max-width: 49px;
  min-height: 49px;
  max-height: 49px;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-elevated-0);
}
.benefits-lbl span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--content-primary);
}
@media (max-width: 768px) {
  .benefits-lbl__icon {
    min-width: auto;
    max-width: auto;
    min-height: auto;
    max-height: auto;
    background: none;
  }
  .benefits-lbl span {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--content-primary);
  }
}

.how-use {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(50px, 10vw, 100px);
}
.how-use__box {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
  padding-top: 60px;
}
.how-use .how-use-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.how-use .how-use-item__info {
  width: 50%;
  padding-right: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how-use .how-use-item__image {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-elevated-0);
  border-radius: 18px;
  min-width: 470px;
  max-width: 470px;
  min-height: 337px;
  max-height: 337px;
  position: relative;
}
.how-use .how-use-item__image::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-image: url(../../img/shadow.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.how-use .how-use-item__image img {
  width: 206px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .how-use .how-use-item__image {
    min-width: 50%;
    max-width: 50%;
  }
}
.how-use .how-use-item__icon {
  margin-bottom: 11px;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-elevated-0);
  border-radius: 37px;
  width: 56px;
  height: 56px;
  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;
}
.how-use .how-use-item__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(20px, 3.467vw, 32px);
  line-height: 138%;
  color: var(--content-primary);
  margin-bottom: 18px;
}
.how-use .how-use-item__txt {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #62646a;
  max-width: 368px;
}
.how-use .how-use-item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.how-use .how-use-item--reverse .how-use-item__info {
  padding-right: 0;
  padding-left: 52px;
}
.how-use .how-use-item .imgtop img {
  bottom: auto;
  top: 0;
}
@media (max-width: 768px) {
  .how-use .how-use-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
  }
  .how-use .how-use-item__image {
    min-width: 100%;
    max-width: 100%;
  }
  .how-use .how-use-item__info {
    min-width: 100%;
    max-width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

.bonuses {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  padding-top: clamp(50px, 10vw, 100px);
  padding-bottom: clamp(75px, 11.333vw, 100px);
}
.bonuses .top {
  max-width: 632px;
  margin: 0 auto;
}
.bonuses .top .page-pretitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2.267vw, 18px);
  text-align: center;
  color: #62646a;
}
@media (max-width: 576px) {
  .bonuses .top .title-main {
    text-transform: uppercase;
  }
}
.bonuses__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .bonuses__box {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .bonuses__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 51px;
  }
}
.bonuses .bonuses-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.bonuses .bonuses-item__icon {
  width: 71px;
  height: 71px;
  position: relative;
}
.bonuses .bonuses-item__icon::before {
  position: absolute;
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  bottom: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(../../img/shadow-min.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bonuses .bonuses-item__iconbox {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.74);
  position: relative;
  z-index: 1;
  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;
}
.bonuses .bonuses-item__txt {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: var(--content-primary);
}
@media (max-width: 992px) {
  .bonuses .bonuses-item__txt {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .bonuses .bonuses-item {
    max-width: 350px;
    margin: 0 auto;
  }
}

.top-about .page-pretitle {
  max-width: 585px;
}
@media (max-width: 576px) {
  .top-about .page-title {
    text-align: center;
  }
  .top-about .page-pretitle {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .mob-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.history {
  padding-top: clamp(52px, 8.667vw, 88px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.history .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.history .top .title-main {
  text-align: left;
}

.history-top {
  padding-top: 50px;
  overflow: auto;
  min-height: 170px;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.history-top::-webkit-scrollbar {
  height: 0;
}
@media (max-width: 768px) {
  .history-top {
    position: relative;
    width: 100vw;
    left: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.history-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.history-item {
  padding-bottom: 42px;
  position: relative;
  cursor: pointer;
  padding-right: 27px;
  width: 100%;
}
.history-item__year {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
}
.history-item__date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  opacity: 0.6;
}
.history-item .line {
  background-color: #d3dce0;
  height: 1px;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.history-item .line__line {
  background-color: var(--content-primary);
  height: 1px;
  display: block;
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.history-item .line::before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background-color: var(--content-primary);
  position: absolute;
  bottom: -5.5px;
  left: 0;
  background-color: #fff;
  border: 1px solid #d3dce0;
  z-index: 2;
}
.history-item .line.active .line__line {
  width: 100%;
}
.history-item .line.active::before {
  background-color: var(--content-primary);
  border: 1px solid var(--content-primary);
}
.history-item .line.active-current .line__line {
  width: 0%;
}
.history-item .line.active-current::before {
  background-color: var(--content-primary);
  border: 1px solid var(--content-primary);
}
.history-item.active .history-item__year {
  font-size: 32px;
}

.history-info {
  margin-top: 50px;
}
@media (max-width: 992px) {
  .history-info {
    margin-top: 20px;
  }
}

.history-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1200px) {
  .history-info-item {
    gap: 34px;
  }
}
@media (max-width: 992px) {
  .history-info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 23px;
  }
}
.history-info-item__image {
  min-width: 566px;
  max-width: 566px;
}
.history-info-item__image img {
  width: 100%;
  border-radius: 18px;
}
@media (max-width: 1200px) {
  .history-info-item__image {
    min-width: 420px;
    max-width: 420px;
  }
}
@media (max-width: 992px) {
  .history-info-item__image {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 768px) {
  .history-info-item__image {
    min-width: 100%;
    max-width: 100%;
  }
}
.history-info-item__content {
  width: 100%;
  max-width: 543px;
  padding-top: 38px;
}
@media (max-width: 992px) {
  .history-info-item__content {
    padding-top: 0;
  }
}
.history-info-item__txt {
  margin-top: 23px;
  margin-bottom: 23px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(18px, 2.533vw, 20px);
  color: var(--content-primary);
  line-height: 140%;
}
.history-info-item__txt a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--content-primary);
  text-decoration: underline;
}
.history-info-item__txt a:hover {
  text-decoration: none;
}

.hi-info-year {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 24px;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
}

.hi-info-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-primary);
  opacity: 0.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
}

.history-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.history-info-item__image {
  position: relative;
  overflow: hidden;
  height: 463px;
}
@media (max-width: 768px) {
  .history-info-item__image {
    height: 302px;
  }
}

.history-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  height: 463px;
  width: 100%;
}
@media (max-width: 768px) {
  .history-slide-image {
    height: 302px;
  }
}

.history-slide-image.active {
  opacity: 1;
  visibility: visible;
}

.history-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.history-info-item__content {
  position: relative;
}

.history-info-item__contentItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.history-info-item__contentItem.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.history-prev:disabled,
.history-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.history-item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.team {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}

.team-top {
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 7px;
}
.team-top .title-main {
  text-align: left;
}
.team-top .page-pretitle {
  max-width: 410px;
}
@media (max-width: 768px) {
  .team-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 42px;
  }
}

.tt-label {
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 47px;
  padding: 10px;
  min-width: 143px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 114%;
  text-transform: uppercase;
  color: var(--content-primary);
  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;
}

.team-box {
  display: -ms-grid;
  display: grid;
  gap: clamp(42px, 6.267vw, 52px);
}

.team-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(23px, 3.333vw, 28px) 16px;
  margin-top: clamp(23px, 3.267vw, 26px);
}
@media (max-width: 1200px) {
  .team-list .team-item__main {
    min-height: 350px;
    max-height: 350px;
  }
}
.team-list--v2 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .team-list--v2 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .team-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .team-list .team-item__main {
    min-height: 265px;
    max-height: 265px;
  }
  .team-list .team-item__img {
    max-width: 167px;
  }
}

.team-item__main {
  margin-bottom: 26px;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  overflow: hidden;
  min-height: 382px;
  max-height: 382px;
  border-radius: 18px;
  padding: 20px 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.team-item__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  text-align: left;
  color: var(--content-primary);
  margin-bottom: 6px;
  display: block;
}
.team-item__position {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: left;
  color: #464e5f;
  margin-bottom: 10px;
  display: block;
}
.team-item__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team-item .tl-link {
  background: #e6e9ee;
  border-radius: 100px;
  width: 34px;
  height: 34px;
  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;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.team-item .tl-link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team-item__img {
  width: 100%;
  max-width: 283px;
  margin: 0 auto;
  mix-blend-mode: darken;
}
.team-item__txt {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #62646a;
}

.mission {
  padding-top: clamp(75px, 11.333vw, 100px);
  padding-bottom: clamp(25px, 4.667vw, 50px);
}
.mission .top {
  max-width: 632px;
  margin: 0 auto;
}
.mission__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(38px, 6.4vw, 60px);
  gap: 16px;
}
.mission .mission-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  padding-left: 28px;
  padding-right: 28px;
}
.mission .mission-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border-radius: 14px;
  width: 71px;
  height: 71px;
}
.mission .mission-item__txt {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: var(--content-primary);
}
@media (max-width: 1200px) {
  .mission .mission-item {
    padding-left: 12px;
    padding-right: 12px;
  }
  .mission .mission-item__txt {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .mission .mission-item {
    padding-left: 28px;
    padding-right: 28px;
  }
  .mission .mission-item__txt {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .mission__list {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 16px;
  }
}
@media (max-width: 576px) {
  .mission__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.values {
  margin-top: clamp(40px, 6.667vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.values .values-item {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-elevated-0);
  border-radius: clamp(12px, 1.867vw, 16px);
  padding: 20px clamp(16px, 3.2vw, 33px);
  width: calc(50% - 8px);
}
.values .values-item:nth-child(3) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(4) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(5) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(8) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(9) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(10) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(13) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(14) {
  width: calc(33.33% - 12px);
}
.values .values-item:nth-child(15) {
  width: calc(33.33% - 12px);
}
.values .values-item__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 36px;
  line-height: 138%;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: clamp(14px, 2.667vw, 28px);
}
.values .values-item__title i {
  font-size: 28px;
  line-height: 120%;
  margin-top: 12px;
  margin-left: 10px;
}
.values .values-item__txt {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #595959;
}
@media (max-width: 992px) {
  .values .values-item {
    width: calc(50% - 8px) !important;
  }
  .values .values-item__title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .values .values-item__title i {
    font-size: 20px;
    margin-top: 0;
    margin-left: 5px;
    line-height: 138%;
  }
  .values .values-item__txt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .values .values-item {
    width: 100% !important;
  }
}

.vacancies {
  padding-top: clamp(25px, 4.667vw, 50px);
  padding-bottom: clamp(50px, 10vw, 100px);
}
.vacancies .top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.vacancies .vc-list {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
.vacancies .vc-item {
  padding: 36px 26px;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  background: var(--background-elevated-0);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  cursor: pointer;
  position: relative;
}
.vacancies .vc-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vacancies .vc-item__content {
  cursor: default;
  padding-top: 17px;
  display: -ms-grid;
  display: grid;
  gap: 42px;
  display: none;
}
@media (max-width: 768px) {
  .vacancies .vc-item__content {
    padding-top: 24px;
  }
}
.vacancies .vc-item.active {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  border: 1px solid rgba(240, 240, 240, 0);
}
.vacancies .vc-item.active .vc-item__icon {
  background-color: transparent;
}
.vacancies .vc-item.active .vc-item__icon::after {
  content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 8.5H4" stroke="%23252834" stroke-width="1.875" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}
.vacancies .vc-item__title {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 36px;
  line-height: 138%;
  color: var(--content-primary);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .vacancies .vc-item__title {
    font-size: 20px;
  }
}
.vacancies .vc-item__icon {
  border: 1px solid #f0f0f0;
  border-radius: 61px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  max-height: 46px;
  background: var(--content-primary);
  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;
  margin-bottom: 30px;
}
.vacancies .vc-item__icon::after {
  display: block;
  position: relative;
  width: 18px;
  height: 19px;
  content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 8.5H4M8.5 4V13" stroke="white" stroke-width="1.875" stroke-linecap="round" stroke-linejoin="round" /></svg>');
}
@media (max-width: 768px) {
  .vacancies .vc-item__icon {
    position: absolute;
    top: 24px;
    right: 16px;
  }
}
.vacancies .vc-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 38px;
}
.vacancies .vc-location span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--content-primary);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.vacancies .vc-location span::after {
  position: relative;
  right: 0;
  top: -3px;
  content: url('data:image/svg+xml,<svg width="4" height="4" viewBox="0 0 4 4" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23252834" /></svg>');
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vacancies .vc-location span:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .vacancies .vc-location {
    margin-bottom: 42px;
  }
}
.vacancies .vc-experience {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--content-primary);
  border: 1px solid var(--content-primary);
  border-radius: 40px;
  padding: 7px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.vacancies .vc-txt-block {
  margin-bottom: 42px;
}
.vacancies .vc-txt-block:last-child {
  margin-bottom: 0;
}
.vacancies .vc-txt-block h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  color: var(--content-primary);
  margin-bottom: 30px;
}
.vacancies .vc-txt-block h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--content-primary);
  margin-bottom: 30px;
}
.vacancies .vc-txt-block p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--content-primary);
}
.vacancies .vc-txt-block ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .vacancies .vc-txt-block h3, .vacancies .vc-txt-block h4 {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .vacancies .vc-txt-block p {
    font-size: 16px;
  }
}

.top-section-faq .title-big {
  max-width: 776px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .top-section-faq .breadcrumb-centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top-section-faq .title-big {
    text-align: center;
  }
}

.faq-page {
  margin-top: clamp(23px, 4.667vw, 50px);
  padding-bottom: 50px;
}

.faq-page-search {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
}
.faq-page-search__wrap {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  padding: 30px 28px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .faq-page-search__wrap {
    padding: 26px 17px;
  }
}
.faq-page-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.faq-page-search .faq-page-search-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.faq-page-search .faq-search-input {
  width: 100%;
  border: 1px solid #d3dce0;
  border-radius: 13px;
  width: 100%;
  height: 62px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
}
.faq-page-search .faq-search-input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.faq-page-search .faq-search-input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.faq-page-search .faq-search-input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.faq-page-search .faq-search-input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.faq-page-search .faq-search-input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .faq-page-search .faq-search-input {
    padding-right: 40px;
  }
}
.faq-page-search .faq-search-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../../img/icons/mingcute_search-line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  position: absolute;
  background-color: transparent;
  border: none;
  right: 20px;
}
@media (max-width: 768px) {
  .faq-page-search .faq-search-submit {
    right: 10px;
  }
}
.faq-page-search .faq-search-popup {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  width: 100%;
  max-width: 704px;
  max-height: 594px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 13px;
  -webkit-box-shadow: 0 15px 26px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 15px 26px 0 rgba(0, 0, 0, 0.05);
  background: var(--background-elevated-0);
}
.faq-page-search .faq-search-popup__top {
  padding: 20px 18px;
  border-bottom: 1px solid rgba(37, 40, 52, 0.14);
}
.faq-page-search .faq-search-popup__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
}
.faq-page-search .faq-topic {
  overflow: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  max-height: 537px;
}
.faq-page-search .faq-topic::-webkit-scrollbar {
  width: 0;
}
.faq-topic-item {
  border-bottom: 1px solid rgba(37, 40, 52, 0.14);
  padding: 18px 0px;
  padding-bottom: 0;
}
.faq-topic-item:last-child {
  border-bottom: none;
}
.faq-topic-item .faq-topic-main {
  padding: 0px 17px;
  padding-bottom: 18px;
}
.faq-topic-item .faq-topic-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  color: var(--content-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq-topic-item .faq-topic-title:hover {
  text-decoration: underline;
}
.faq-topic-item .faq-topic-title::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  background-image: url(/img/icons/uil_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.faq-topic-item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #545454;
  margin-bottom: 8px;
  padding-right: 69px;
}
.faq-topic-item span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  color: #95969f;
}

.faq-topic-articles {
  display: none;
  display: -ms-grid;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(37, 40, 52, 0.14);
}
.faq-topic-articles__item {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 2.267vw, 18px);
  line-height: 114%;
  color: var(--content-primary);
  padding: 15px 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq-topic-articles__item::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  background-image: url(/img/icons/uil_arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.faq-topic-articles__item:hover {
  text-decoration: underline;
}

.faq-popup-secondary .faq-topic-title::after {
  display: none;
}
.faq-popup-secondary .faq-topic-item {
  padding-bottom: 15px;
}

.faq-main-wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 43px;
  margin-top: 22px;
}
.faq-main-wrap .faq-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 284px;
  max-width: 284px;
}
.faq-main-wrap .faq-nav .faq-btn {
  border-radius: 10px;
  padding: 14px 10px;
}
.faq-main-wrap .faq-tabs {
  width: 100%;
}
.faq-main-wrap .faqitem {
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.faq-main-wrap .faqitem__title {
  font-size: clamp(16px, 2.133vw, 18px);
}
.faq-main-wrap .faqitem__content {
  padding-bottom: 30px;
}
.faq-main-wrap .faqitem__content a {
  font-weight: 600;
  text-decoration: underline;
  color: #1e558e;
}
.faq-main-wrap .faqitem__content a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .faq-main-wrap .faqitem__content {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .faq-main-wrap .faqitem__content p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .faq-main-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 23px;
    margin-top: 16px;
  }
  .faq-main-wrap .faq-nav {
    min-width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .faq-main-wrap .faq-nav .faq-btn {
    padding: 12px 10px;
  }
  .faq-main-wrap .faq-tabs {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.btn-light {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: clamp(10px, 4vw, 50px);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--content-primary) !important;
  text-decoration: none !important;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-light span {
  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;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 61px;
  min-width: 46px;
  max-width: 46px;
  height: 46px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-light:hover {
  gap: 14px;
  color: #1e558e !important;
}
.btn-light:hover span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq-popup-search .faq-topic-articles {
  border-top: none;
  padding-top: 15px;
  padding-bottom: 25px;
}

.btn-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  background: var(--background-elevated-0);
  border-radius: 104px;
  padding: 4px 4px 4px 20px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: var(--content-primary);
}
.btn-white span {
  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;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 61px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  max-height: 46px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-white span svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn-white:hover {
  -webkit-box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover span {
  background-color: #1E558E;
}
.btn-white:hover span svg path {
  fill: #fff;
}

.faq-search-bottom {
  border-top: 1px solid rgba(37, 40, 52, 0.17);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 25px 17px 36px 17px;
}
.faq-search-bottom__ttl {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  text-align: left;
  color: #545454;
}
@media (max-width: 768px) {
  .faq-search-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}

.faq-search-noresult {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  padding-top: 40px;
  padding-bottom: 48px;
}
.faq-search-noresult img {
  width: 110px;
}
.faq-search-noresult span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 114%;
  color: var(--content-primary);
}
.faq-search-noresult p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  text-align: center;
  color: #545454;
}

.faq-mob-top {
  display: none;
}
@media (max-width: 576px) {
  .faq-mob-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 28px 17px 20px 17px;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .mobile-btn-back {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #F5F7FB;
    min-width: 47px;
    max-width: 47px;
    min-height: 47px;
    max-height: 47px;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 100px;
  }
}

@media (max-width: 576px) {
  .faq-popups-box {
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    left: -100vw;
    right: 0;
    top: 0;
    z-index: 70;
    padding-bottom: 64px;
    -webkit-transition: 0.23s;
    transition: 0.23s;
  }
  .faq-popups-box.active {
    left: 0;
  }
  .faq-popups-box .faq-search-popup {
    position: relative !important;
    top: 0;
    min-height: calc(100vh - 191px);
    max-height: calc(100vh - 191px);
    height: calc(100vh - 191px);
    border-radius: 0px;
    padding-bottom: 64px;
    overflow: auto;
  }
  .faq-popups-box .faq-topic {
    max-height: 100%;
  }
  .faq-popups-box .faq-main-popup {
    display: block;
  }
}

.breadcrumb-secion {
  overflow: auto;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
@media (max-width: 992px) {
  .breadcrumb-secion {
    width: calc(100vw - 0px);
    left: -16px;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.breadcrumb-secion::-webkit-scrollbar {
  width: 0;
}

.breadcrumb {
  border: 1px solid #f0f0f0;
  border-radius: 37px;
  padding: 12px 21px;
  margin: 20px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.breadcrumb--v2 {
  border: 1px solid #d3dce0;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 100%;
}
@media (max-width: 992px) {
  .breadcrumb__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.breadcrumb .breadcrumb-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.breadcrumb .breadcrumb-item::after {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  position: relative;
  background-image: url(../../img/icons/icarr.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}
.breadcrumb .breadcrumb-item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #62646a;
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 992px) {
  .breadcrumb-centered {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(9px, 1.867vw, 20px);
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.pagination .page-item {
  border: 1px solid #e0e3e9;
  border-radius: 14px;
  width: 46px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--content-alternative);
  overflow: hidden;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.pagination .page-item:hover {
  background-color: #F5F7FB;
}
.pagination .page-item a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  text-align: right;
  color: var(--content-primary);
  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: 100%;
}
.pagination .page-item.active {
  background: var(--content-primary);
}
.pagination .page-item.active a {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  text-align: right;
  color: var(--content-alternative);
}
.pagination .page-item.active:hover {
  opacity: 0.9;
  background-color: var(--content-primary) !important;
}
.pagination .page-item__back:hover {
  background-color: #F5F7FB;
}
.pagination .page-item__next:hover {
  background-color: #F5F7FB;
}

.product-card {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  margin-bottom: 25px;
}
.product-card__top {
  position: relative;
  overflow: hidden;
}
.product-card__image {
  overflow: hidden;
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  border-radius: 18px;
  height: 308px;
  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;
  position: relative;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.product-card__image:after {
  background: rgba(37, 40, 52, 0.15);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.product-card__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.33s;
  transition: 0.33s;
  mix-blend-mode: darken;
}
.product-card__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 375px) {
  .product-card__image {
    height: 283px;
  }
}
.product-card:hover {
  margin-bottom: 16px;
}
.product-card:hover .product-card__image {
  height: 317px;
}
.product-card:hover .product-card__image::after {
  opacity: 1;
}
.product-card__order {
  -webkit-transition: 0.53s;
  transition: 0.53s;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -100%;
  bottom: 18px;
  -webkit-transition: 0.43s;
  transition: 0.43s;
}
.product-card__order .action-btn .action-btn__ic svg path {
  stroke: #1E558E !important;
  fill: none;
}
.product-card__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  position: absolute;
  top: 14px;
  right: 14px;
}
.product-card .prod-lbl {
  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;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  height: 39px;
}
.product-card .prod-lbl--discount {
  color: var(--content-alternative);
  background: #ed5221;
  padding: 10px 20px 10px 10px;
  border-radius: 45px;
}
.product-card .prod-lbl--hit {
  color: var(--content-primary);
  padding: 10px 20px 10px 44px;
  background: #fcbf76;
  border-radius: 45px;
  background-image: url(../img/icons/fire.svg);
  background-position: left 10px center;
  background-repeat: no-repeat;
}
.product-card__content {
  padding: 13px clamp(8px, 1.733vw, 17.5px) 0 clamp(8px, 1.733vw, 17.5px);
}
.product-card__name {
  margin-bottom: 13px;
}
.product-card__name a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--content-primary);
}
.product-card__name a:hover {
  text-decoration: underline;
}
.product-card__pricesec {
  margin-bottom: 13px;
}
.product-card__price {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  color: var(--content-primary);
}
.product-card__specs {
  margin-bottom: 13px;
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.product-card .specs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.product-card .specs-item::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background-image: url(../img/dashline.svg);
  z-index: -1;
}
.product-card .specs-item span {
  background-color: #fff;
  line-height: 130%;
}
.product-card .specs-item span:nth-child(1) {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #62646a;
  padding-right: 4px;
}
.product-card .specs-item span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
  padding-left: 4px;
}

.product-card__ports span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #62646a;
}

.p_ports {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}

.p_ports-item {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 14px;
  color: #464e5f;
  padding: 10px;
  border: 1px solid #d3dce0;
  border-radius: 39px;
}

.product-gallery {
  position: relative;
  margin-bottom: 26px;
}

.product-gallery-item {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%), var(--background-screen);
  border-radius: 18px;
  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;
  padding: 8px;
  height: 359px;
}
.product-gallery-item img {
  height: 100%;
  max-width: 100%;
  mix-blend-mode: darken;
}
@media (max-width: 576px) {
  .product-gallery-item {
    height: 323px;
  }
  .product-gallery-item img {
    max-width: 232px;
    max-height: 216px;
  }
}

.product-gallery .container {
  position: relative;
  overflow: visible;
}

.swiper.prodGallery {
  margin-left: 0;
  overflow: visible;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}

.prodGallery-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: -76px;
  right: 60px;
}
@media (max-width: 992px) {
  .prodGallery-nav {
    bottom: -67px;
    right: 16px;
  }
}

.prod-section {
  padding-bottom: 63px;
}

.prod {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.prod__main {
  padding-top: 25px;
  min-width: 554px;
  max-width: 554px;
}
@media (max-width: 1200px) {
  .prod__main {
    min-width: 454px;
    max-width: 454px;
  }
}
.prod__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 114%;
  color: var(--content-primary);
  margin-bottom: 20px;
}
.prod__price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  color: var(--content-primary);
  margin-bottom: 20px;
}
.prod__info {
  padding-top: 77px;
  width: 100%;
  max-width: 641px;
}
.prod .action-btn .action-btn__ic svg path {
  stroke: #1E558E !important;
  fill: none;
}
@media (max-width: 992px) {
  .prod {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    padding-top: 60px;
  }
  .prod__main {
    padding-top: 0;
    min-width: 100%;
    max-width: 100%;
  }
  .prod__info {
    max-width: 100%;
    padding-top: 20px;
  }
}

.prod-order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
.prod-order .input-name {
  min-width: 160px;
  max-width: 160px;
}
@media (max-width: 1200px) {
  .prod-order__form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .prod-order .input-item {
    width: 60%;
  }
  .prod-order .prod-order-submit {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .prod-order__form {
    max-width: 500px;
  }
  .prod-order .input-item {
    min-width: 100%;
    max-width: 100%;
  }
}

.prodinfo-box {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}

.prodinfo-item__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 114%;
  color: var(--content-primary);
  margin-bottom: 18px;
}
.prodinfo-item__describe {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--content-primary);
}

.prodinfo-specs-wrap .prodinfo-specs {
  margin-bottom: 13px;
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.prodinfo-specs-wrap .specs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.prodinfo-specs-wrap .specs-item::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background-image: url(../img/dashline.svg);
  z-index: -1;
}
.prodinfo-specs-wrap .specs-item span {
  background-color: #fff;
  line-height: 130%;
}
.prodinfo-specs-wrap .specs-item span:nth-child(1) {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #62646a;
  padding-right: 4px;
}
.prodinfo-specs-wrap .specs-item span:nth-child(2) {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--content-primary);
  padding-left: 4px;
}

.product-reviews {
  background: linear-gradient(246deg, #e9eef5 0%, #e9f8f9 100%);
  padding: clamp(32px, 6vw, 60px) 0;
  border-radius: 18px 18px 0 0;
}
.product-reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
.product-reviews__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 24px);
  line-height: 114%;
  color: var(--content-primary);
}
.product-reviews .action-btn .action-btn__ic svg path {
  stroke: #1E558E !important;
  fill: none;
}
.product-reviews__maintop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-reviews__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

@media (max-width: 576px) {
  .add-review-btn {
    padding: 17.5px 21px;
  }
  .add-review-btn .action-btn__ic {
    display: none;
  }
}

.light-btn {
  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;
  border-radius: 100px;
  width: 46px;
  height: 46px;
  background: var(--content-alternative);
  -webkit-transition: 0.23s;
  transition: 0.23s;
  border: none;
}
.light-btn--v2 {
  border: 1px solid #e0e3e9;
}
.light-btn--v2:hover {
  border: 1px solid #1e558e;
}
.light-btn svg path {
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.light-btn:hover {
  background: #1e558e;
}
.light-btn:hover svg path {
  stroke: #fff;
}

.add-review {
  display: none;
  padding-bottom: 60px;
}
.add-review__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 11px;
}

.input-item {
  width: 100%;
}
.input-item input,
.input-item textarea {
  background: var(--content-alternative);
  border: 1px solid #e0e3e9;
  border-radius: 13px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  width: 100%;
  padding: 16px 18px;
}
.input-item input::-webkit-input-placeholder, .input-item textarea::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.input-item input::-moz-placeholder, .input-item textarea::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.input-item input:-ms-input-placeholder, .input-item textarea:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.input-item input::-ms-input-placeholder, .input-item textarea::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.input-item input::placeholder,
.input-item textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--content-primary);
  opacity: 0.6;
}
.input-item textarea {
  padding: 20px 18px;
  height: 300px;
  resize: none;
}

.rating {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rating input {
  display: none;
}

.rating label {
  width: 27px;
  height: 27px;
  background: url("../../img/icons/star-0.svg") no-repeat center/contain;
  cursor: pointer;
}

.rating input:checked ~ label,
.rating label:hover ~ label,
.rating label:hover {
  background: url("../../img/icons/star-1.svg") no-repeat center/contain;
}

.add-review-submit {
  margin-top: 21px;
}

.review-item__content {
  margin-top: 43px;
  padding-bottom: 28px;
  font-family: var(--font4);
  font-weight: 400;
  font-size: clamp(24px, 3.733vw, 32px);
  line-height: 123%;
  color: var(--content-primary);
}
.review-item__bottom {
  border-top: 1px solid #d3dce0;
  padding-top: 28px;
  padding-bottom: 28px;
  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;
}
.review-item__rate img {
  width: 27px;
}
.review-item__date {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 13px;
  line-height: 113%;
  text-align: center;
  color: #595959;
}
.review-item .review-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.review-item .review-author__avatar {
  background: var(--content-alternative);
  border-radius: 65px;
  width: 48px;
  height: 48px;
  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;
}
.review-item .review-author__name {
  font-family: var(--font4);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  text-align: center;
  color: var(--content-primary);
}

.rewSlider .swiper-slide {
  opacity: 0 !important;
}
.rewSlider .swiper-slide-active {
  opacity: 1 !important;
}

.footer {
  overflow: hidden;
  background: linear-gradient(227deg, #0e0e0e 0%, #1c1d1d 67.09%, #0e0e0e 100%);
}

.footer-cline {
  border-radius: 0 0 clamp(20px, 2.533vw, 18px) clamp(20px, 2.533vw, 18px);
  background: #1e558e;
  padding: clamp(18px, 2.667vw, 23px) 0;
  margin-bottom: 20px;
}
.footer-cline__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
.footer-cline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  white-space: nowrap;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: clamp(16px, 2.667vw, 24px);
  line-height: 147%;
  text-transform: uppercase;
  color: var(--content-alternative);
}
.footer-cline__item img {
  width: clamp(18px, 3.467vw, 34px);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.toka-title span {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: clamp(30px, 9vw, 132px);
  line-height: 147%;
  letter-spacing: -0.08em;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right bottom, from(#2c2c2c), color-stop(80%, #f0f0f0), to(#f0f0f0));
  background: linear-gradient(to bottom right, #2c2c2c 0%, #f0f0f0 80%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 15px;
  /* Для Firefox */
  background-clip: text;
  color: transparent;
}

.footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #222;
  padding-top: 44px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 35px;
    padding-bottom: 35px;
    gap: 35px;
    margin-top: 20px;
  }
}

.lc-sec {
  display: -ms-grid;
  display: grid;
  gap: 8px;
}

.lc-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--content-alternative);
}

.lc-detail {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #a7acc2;
  opacity: 0.5;
}

.lc-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.lc-contacts a {
  font-weight: 400;
  font-size: 16px;
  color: var(--content-alternative);
}

.footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  width: 100%;
}
.footer-social li a {
  border: 1px solid #222;
  border-radius: 74px;
  width: 97px;
  height: 51px;
  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;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer-social li a:hover {
  background-color: #222;
}
@media (max-width: 576px) {
  .footer-social {
    width: 100%;
  }
  .footer-social li {
    width: 25%;
  }
  .footer-social li a {
    width: 100%;
  }
}

.f-min-ttl {
  font-weight: 400;
  font-size: 16px;
  color: #a7acc2;
  opacity: 0.5;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #222;
  gap: 24px;
}
.footer-secondary__box {
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
@media (max-width: 768px) {
  .footer-secondary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.footer-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #121518;
  border-radius: 18px;
  padding: 30px 16px;
  gap: 38px;
}
.footer-app__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.footer-app a {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.footer-app a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}
.footer-app a img {
  width: 100%;
}
@media (max-width: 768px) {
  .footer-app .footer-app-qr {
    display: none;
  }
  .footer-app__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 22px;
}
.footer-menu ul li a {
  font-weight: 400;
  font-size: 14px;
  color: var(--content-alternative);
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .footer-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-prod-menu ul {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.footer-prod-menu ul li a {
  font-weight: 400;
  font-size: 14px;
  color: var(--content-alternative);
  padding-right: 12px;
  background-image: url(../img/icons/link-ic.svg);
  background-position: bottom 4px right;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.footer-prod-menu ul li a:hover {
  padding-right: 14px;
}

.footer-last {
  border-top: 1px solid #222;
  padding-top: 40px;
  padding-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-last {
    padding-top: 30px;
    padding-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
  .footer-last .footer-menu-last {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
}

.footer-toka-ttl {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-alternative);
  opacity: 0.4;
}

.footer-menu-last {
  width: 40%;
}
.footer-menu-last li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-alternative);
}
.footer-menu-last li a:hover {
  text-decoration: underline;
}

.cprt {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--content-alternative);
  opacity: 0.4;
}