@charset "UTF-8";
@font-face {
  font-family: "Montserrat-Bold";
  src: url(../fonts/Montserrat-Bold.ttf);
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url(../fonts/Montserrat-Medium.ttf);
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: "Roboto-Regular";
  src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: "Roboto-Bold";
  src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: "Roboto-Medium";
  src: url(../fonts/Roboto-Medium.ttf);
}
:root {
  --fz18-22: clamp(1.125rem, 0.92rem + 0.61vw, 1.375rem);
  --fz28-46: clamp(1.75rem, 0.83rem + 2.73vw, 2.875rem);
  --fz22-32: clamp(1.375rem, 0.864rem + 1.52vw, 2rem);
  --fz10-14: clamp(0.625rem, 0.42rem + 0.61vw, 0.875rem);
  --fz14-18: clamp(0.875rem, 0.67rem + 0.61vw, 1.125rem);
  --fz22-24: clamp(1.375rem, 1.273rem + 0.3vw, 1.5rem);
  --fz14-16: clamp(0.875rem, 0.773rem + 0.3vw, 1rem);
  --fz16-22: clamp(1rem, 0.693rem + 0.91vw, 1.375rem);
  --fz14: 14px;
  --fz16: 16px;
  --fz18: 18px;
  --fz22: 22px;
  --fz24: 24px;
  --fz40: 40px;
  --lh36-58: clamp(2.25rem, 1.125rem + 3.33vw, 3.625rem);
  --lh28-42: clamp(1.75rem, 1.034rem + 2.12vw, 2.625rem);
  --lh12-20: clamp(0.75rem, 0.341rem + 1.21vw, 1.25rem);
  --lh28-32: clamp(1.75rem, 1.545rem + 0.61vw, 2rem);
  --lh20-24: clamp(1.25rem, 1.045rem + 0.61vw, 1.5rem);
  --lh18-28: clamp(1.125rem, 0.614rem + 1.52vw, 1.75rem);
  --lh20: 20px;
  --lh24: 24px;
  --lh28: 28px;
  --lh32: 32px;
  --black-color: #000;
  --white-color: #fff;
  --primary-color: #ff4e50;
  --secondary-color: #f8f8f8;
  --gray-text: #7a7b81;
  --green-color: #19cf6d;
  --red-label-text: #fff1f5;
  --red-label: #ff4e50;
  --swiper-pagination-color: #000;
  --border20: 20px;
  --border32: 32px;
}

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

/* чтобы текст не увеличивался */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

/* убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* опционально, убираем маркеры у списков*/
/* задаем высоту body и межстрочный интервал */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* межстрочный интервал для заголовков и.т.д */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
  line-height: 1.1;
}

/* равномерное распределение символов при переносе текста */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* а наследует цвет текста при отстуствии класса */
a:not([class]) {
  color: currentColor;
}

/* block для картинок */
img,
picture {
  display: block;
}

/* элементы наследуют шрифт родителя */
input,
button,
textarea,
select {
  font: inherit;
}

/* убираем рамку у выбранного элемента (прир выборе через tab) */
:focus,
:active {
  outline: none;
}

body {
  font-family: "Montserrat-Regular", sans-serif;
  color: var(--black-color);
}

section {
  padding: 40px 0;
}
section:first-child {
  padding-top: 0;
}

footer {
  padding-top: 40px;
}

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

b {
  font-family: "Roboto-Bold";
  color: inherit;
  font-weight: normal;
}

.button__wrapper {
  padding: 28px 0 20px 0;
  --btn-border: #e6e6e6;
  --btn-bg: #ff4e50;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .button__wrapper {
    padding-top: 40px;
  }
}
.button__wrapper .button {
  font-family: "Roboto-Regular";
  border-radius: 12px;
  padding: 12px 20px;
  line-height: var(--lh24);
  text-decoration: none;
  background-color: var(--btn-bg);
  color: var(--white-color);
  font-size: var(--fz16);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .button__wrapper .button {
    padding: 20px 32px;
  }
}
.button__wrapper .button:hover {
  opacity: 0.8;
}
.button__wrapper .button.button--black {
  background-color: #333333;
  color: var(--white-color);
}
.button__wrapper .button.button--white {
  outline: 1px solid var(--btn-border);
  background-color: var(--white-color);
  color: var(--black-color);
}

.promocode__wrapper {
  padding: 28px 0 20px 0;
  --btn-border: #e6e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .promocode__wrapper {
    padding-top: 40px;
  }
}
.promocode__wrapper #promocode {
  font-family: "Roboto-Medium";
  text-transform: uppercase;
  border-radius: 12px;
  padding: 12px 20px;
  line-height: var(--lh24);
  background-color: var(--white-color);
  color: var(--black);
  font-size: var(--fz16);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  outline: 1px dashed var(--black-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .promocode__wrapper #promocode {
    padding: 20px 32px;
  }
}

.block-title {
  text-align: center;
}
.block-title .title {
  font-family: "Montserrat-SemiBold";
  font-size: var(--fz28-46);
  line-height: var(--lh36-58);
}
.block-title .subtitle {
  padding-top: 12px;
  font-family: "Roboto-Regular";
  font-size: var(--fz16);
  line-height: var(--lh24);
  max-width: 740px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .block-title .subtitle {
    padding-top: 20px;
  }
}

.wrapper {
  border-radius: var(--border20);
  padding: 20px;
}
@media (min-width: 768px) {
  .wrapper {
    border-radius: var(--border32);
    padding: 32px;
  }
}

.red-text {
  color: #ff4e50;
}

.plus-wrapper {
  --pluswrap-active-col: #eaecee;
  --plus-active-col: #5a6e85;
  background-color: var(--black-color);
  border-radius: 100%;
  max-width: 24px;
  max-height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .plus-wrapper {
    max-width: 32px;
    max-height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
}
.plus-wrapper .plus {
  width: 8px;
  height: 8px;
  background-color: var(--white-color);
  clip-path: polygon(10% 0, 0 10%, 40% 50%, 0 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0, 50% 40%);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .plus-wrapper .plus {
    width: 10px;
    height: 10px;
  }
}

.annotation {
  font-family: "Roboto-Regular";
  text-align: left;
  font-size: var(--fz14-16);
  line-height: var(--lh20-24);
  position: relative;
}
.annotation svg {
  margin-bottom: -7px;
  cursor: pointer;
}
.annotation .annotation-text {
  display: none;
  border-radius: 16px;
  position: absolute;
  background-color: var(--white-color);
  padding: 16px;
  max-width: 296px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  z-index: 3;
  bottom: 25px;
}
@media (min-width: 768px) {
  .annotation .annotation-text {
    max-width: 416px;
  }
}
.annotation .active {
  display: block;
}

.head {
  background: url(../img/banner-bg-mob.webp) var(--primary-color);
  background-size: 983px 1069px;
  background-repeat: no-repeat;
  background-position: 30% 68%;
}
@media (min-width: 1024px) {
  .head {
    background: url(../img/banner-bg-desc.webp) var(--primary-color);
    background-size: 2351px 1858px;
    background-position: 48% 69%;
  }
}

.header {
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 28px 0;
  }
}
.header .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__wrapper a {
  height: 16px;
}
@media (min-width: 768px) {
  .header .header__wrapper a {
    height: 22px;
  }
}
.header .header__wrapper a svg {
  width: 100%;
  height: 16px;
}
@media (min-width: 768px) {
  .header .header__wrapper a svg {
    height: 22px;
  }
}
.header .header__phone a {
  color: var(--white-color);
  text-decoration: none;
  font-family: "Montserrat-SemiBold";
  font-size: var(--fz18-22);
}

.banner.banner--default {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.banner.banner--default .banner__wrapper {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 80px;
  color: var(--white-color);
}
@media (min-width: 768px) {
  .banner.banner--default .banner__wrapper {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.banner.banner--default .banner__wrapper .banner__title {
  max-width: 840px;
  margin: 0 auto;
}
.banner.banner--default .banner__wrapper .banner__title .title {
  position: relative;
}
.banner.banner--default .banner__wrapper .banner__title .title::before {
  content: "";
  position: absolute;
  width: 174px;
  height: 186px;
  background: url(../img/banner-before1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: -150px;
  right: -74px;
}
@media (min-width: 1280px) {
  .banner.banner--default .banner__wrapper .banner__title .title::before {
    width: 507px;
    height: 543px;
    top: -300px;
    right: -404px;
  }
}
.banner.banner--default .banner__wrapper .banner__title .title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 65px;
  background: url(../img/banner-after1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: -47px;
  left: -30px;
}
@media (min-width: 1280px) {
  .banner.banner--default .banner__wrapper .banner__title .title::after {
    width: 146px;
    height: 158px;
    left: -100px;
  }
}
.banner.banner--default .banner__wrapper .banner__title .subtitle {
  position: relative;
}
.banner.banner--default .banner__wrapper .banner__title .subtitle::before {
  content: "";
  position: absolute;
  width: 194px;
  height: 200px;
  background: url(../img/banner-after2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 40px;
  left: -80px;
}
@media (min-width: 1280px) {
  .banner.banner--default .banner__wrapper .banner__title .subtitle::before {
    width: 499px;
    height: 515px;
    top: -120px;
    left: -400px;
  }
}
.banner.banner--default .banner__wrapper .banner__title .subtitle::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 65px;
  background: url(../img/banner-before2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 80px;
  right: 0;
}
@media (min-width: 1280px) {
  .banner.banner--default .banner__wrapper .banner__title .subtitle::after {
    width: 135px;
    height: 145px;
    right: -170px;
  }
}
.banner.banner--default .banner__wrapper .button__wrapper {
  padding-bottom: 0;
}
.banner.banner--default .banner__wrapper .banner__image {
  position: relative;
  padding-top: 80px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .banner.banner--default .banner__wrapper .banner__image {
    padding-top: 60px;
  }
}
.banner.banner--default .banner__wrapper .banner__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 200px);
  top: calc(50% - 135px);
  width: 400px;
  height: 317px;
  background-image: url(../img/ban-image-after.webp);
  background-size: contain;
  z-index: -1;
}
@media (min-width: 1024px) {
  .banner.banner--default .banner__wrapper .banner__image::before {
    width: 800px;
    height: 634px;
    left: calc(50% - 400px);
    top: calc(50% - 275px);
  }
}
.banner.banner--default .banner__wrapper .banner__image img {
  margin: 0 auto;
  max-width: 150px;
  width: 100%;
}
@media (min-width: 1024px) {
  .banner.banner--default .banner__wrapper .banner__image img {
    max-width: 205px;
  }
}

.mono-block .mono-block__wrapper {
  background: url(../img/mono-block-bg.webp) var(--primary-color);
  background-size: 1320px;
  background-position: 50% 60%;
  background-repeat: no-repeat;
  color: var(--white-color);
  overflow: hidden;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper {
    border-radius: 32px;
    display: flex;
    align-items: center;
    gap: 160px;
    background-position: 280% 60%;
  }
}
.mono-block .mono-block__wrapper .mono-block__group {
  text-align: center;
  max-width: 726px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__group {
    text-align: left;
  }
}
.mono-block .mono-block__wrapper .mono-block__group .mono-block__label {
  color: #484848;
  font-family: "Roboto-Regular";
  font-size: 12px;
  line-height: 20px;
  border-radius: 6px;
  background-color: var(--white-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 6px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__group .mono-block__label {
    font-size: 14px;
    margin-left: 0;
  }
}
.mono-block .mono-block__wrapper .mono-block__group .mono-block__title {
  font-family: "Montserrat-SemiBold";
  font-size: var(--fz22-32);
  line-height: var(--lh28-42);
}
.mono-block .mono-block__wrapper .mono-block__group .mono-block__subtitle {
  font-family: "Roboto-Regular";
  padding-top: 12px;
  font-size: var(--fz14-18);
  line-height: var(--lh20-24);
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__group .mono-block__subtitle {
    padding-top: 16px;
  }
}
.mono-block .mono-block__wrapper .mono-block__group .mono-block__button-area .button__wrapper {
  position: relative;
  flex-direction: column;
  justify-items: stretch;
  z-index: 100;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__group .mono-block__button-area .button__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}
.mono-block .mono-block__wrapper .mono-block__group .mono-block__button-area .button__wrapper .button {
  min-width: 234px;
}
.mono-block .mono-block__wrapper .mono-block__image {
  position: relative;
  z-index: 1;
}
.mono-block .mono-block__wrapper .mono-block__image::before {
  content: "";
  position: absolute;
  top: calc(50% - 153px);
  left: calc(50% - 200px);
  width: 400px;
  height: 317px;
  background-image: url(../img/ban-image-after.webp);
  background-size: contain;
  z-index: -1;
}
@media (min-width: 1024px) {
  .mono-block .mono-block__wrapper .mono-block__image::before {
    width: 800px;
    height: 634px;
    left: calc(50% - 400px);
    top: calc(50% - 275px);
  }
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__image {
    display: block;
  }
}
.mono-block .mono-block__wrapper .mono-block__image img {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .mono-block .mono-block__wrapper .mono-block__image img {
    min-width: 300px;
  }
}
.mono-block .mono-block__popup-layout {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.mono-block .mono-block__popup-layout .mono-block__popup {
  text-align: center;
  position: fixed;
  top: calc(50% - 154px);
  right: calc(50% - 164px);
  max-width: 328px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  background-color: var(--white-color);
  z-index: 101;
}
@media (min-width: 768px) {
  .mono-block .mono-block__popup-layout .mono-block__popup {
    right: calc(50% - 367px);
    max-width: 550px;
  }
}
.mono-block .mono-block__popup-layout .mono-block__popup p {
  font-family: "Roboto-Bold";
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ededed;
}
.mono-block .mono-block__popup-layout .mono-block__popup .button__wrapper {
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__popup-layout .mono-block__popup .button__wrapper {
    flex-direction: unset;
  }
}
.mono-block .mono-block__popup-layout .mono-block__popup .button__wrapper .button {
  min-width: 175px;
}
.mono-block .mono-block__popup-layout .mono-block__popup [data-close-button] {
  cursor: pointer;
  position: absolute;
  max-width: 20px;
  top: 10px;
  right: 10px;
}
@media (min-width: 768px) {
  .mono-block .mono-block__popup-layout .mono-block__popup [data-close-button] {
    max-width: 28px;
    top: 20px;
    right: 20px;
  }
}

.accordion .accordion__wrapper .accordion__tab {
  margin-top: 16px;
  background-color: var(--secondary-color);
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .accordion .accordion__wrapper .accordion__tab {
    margin-top: 24px;
  }
}
.accordion .accordion__wrapper .accordion__tab:nth-child(1) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .accordion .accordion__wrapper .accordion__tab:nth-child(1) {
    margin-top: 52px;
  }
}
.accordion .accordion__wrapper .accordion__tab .accordion__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
  padding: 20px 20px 20px 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .accordion .accordion__wrapper .accordion__tab .accordion__title {
    padding: 32px;
  }
}
.accordion .accordion__wrapper .accordion__tab .accordion__title p {
  font-family: "Montserrat-Bold";
  font-size: var(--fz16-22);
  line-height: var(--lh18-28);
}
.accordion .accordion__wrapper .accordion__tab .accordion__content {
  display: none;
  padding: 0 20px 20px 20px;
}
@media (min-width: 768px) {
  .accordion .accordion__wrapper .accordion__tab .accordion__content {
    padding: 0 32px 32px 32px;
  }
}
.accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner {
  margin-top: 12px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner {
    margin-top: 20px;
  }
}
.accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner ol {
  padding-left: 20px;
}
.accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner p,
.accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner li {
  font-family: "Roboto-Regular";
  text-align: left;
  font-size: var(--fz14-16);
  line-height: var(--lh20-24);
}
.accordion .accordion__wrapper .accordion__tab .accordion__content .accordion__inner img {
  width: 100%;
  margin: 0 auto;
}
.accordion .accordion__tab.active {
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  background-color: var(--secondary-color);
}
.accordion .accordion__tab.active .accordion__title {
  padding-bottom: 12px;
}
.accordion .accordion__tab.active .accordion__title .plus-wrapper {
  background-color: var(--pluswrap-active-col);
  transform: rotate(135deg);
}
.accordion .accordion__tab.active .accordion__title .plus-wrapper .plus {
  background-color: var(--plus-active-col);
}
.accordion .accordion__tab.active .accordion__content {
  display: block;
}

.privelege-block {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  background-color: var(--white-color);
  border-radius: 60px;
}
@media (min-width: 991px) {
  .privelege-block {
    padding-top: 90px;
  }
}
.privelege-block .privelege-block__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 0;
  padding-top: 40px;
}
@media (min-width: 991px) {
  .privelege-block .privelege-block__wrapper {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
.privelege-block .privelege-block__wrapper .privelege-block__item {
  border-radius: var(--border20);
  padding: 25px;
  background-color: var(--secondary-color);
  overflow: hidden;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(1) {
  background-color: #fdf1fe;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(2) {
  background-color: #f5f6fa;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(3) {
  background-color: #f6f1fe;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(4) {
  background-color: #f6f1fe;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(5) {
  background-color: #fdf1fe;
}
.privelege-block .privelege-block__wrapper .privelege-block__item:nth-child(6) {
  background-color: #f5f6fa;
}
@media (min-width: 991px) {
  .privelege-block .privelege-block__wrapper .privelege-block__item {
    border-radius: var(--border32);
    padding: 32px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.privelege-block .privelege-block__wrapper .privelege-block__item img {
  display: block;
  max-width: 60px;
}
@media (min-width: 991px) {
  .privelege-block .privelege-block__wrapper .privelege-block__item img {
    max-width: 132px;
    margin-right: -15px;
    margin-bottom: -60px;
    margin-top: -60px;
  }
}
.privelege-block .privelege-block__wrapper .privelege-block__item .privelege-block-text {
  padding-top: 20px;
}
@media (min-width: 991px) {
  .privelege-block .privelege-block__wrapper .privelege-block__item .privelege-block-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
  }
}
.privelege-block .privelege-block__wrapper .privelege-block__item .privelege-block-text .privelege-block__title {
  font-family: "Montserrat-SemiBold";
  font-size: var(--fz18);
  line-height: var(--lh28);
}
.privelege-block .privelege-block__wrapper .privelege-block__item .privelege-block-text .privelege-block__subtitle {
  padding-top: 8px;
  font-family: "Roboto-Regular";
  font-size: var(--fz14-16);
  line-height: var(--lh20-24);
}
@media (min-width: 991px) {
  .privelege-block .privelege-block__wrapper .privelege-block__item .privelege-block-text .privelege-block__subtitle {
    max-width: 190px;
  }
}
.privelege-block .privelege-block__wrapper .privelege-block__item--selected {
  background-color: var(--primary-color);
}
@media (min-width: 768px) {
  .privelege-block .privelege-block__wrapper .privelege-block__item--selected {
    height: 260px;
  }
}

.privelege-block--second {
  margin-top: 0;
}
@media (min-width: 991px) {
  .privelege-block--second .privelege-block__wrapper {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
@media (min-width: 991px) {
  .privelege-block--second .privelege-block__wrapper .privelege-block__item {
    display: block;
  }
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item:nth-child(1) {
  background: linear-gradient(140deg, rgb(208, 200, 255) 17%, rgb(199, 238, 255) 100%);
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item:nth-child(2) {
  background-color: var(--secondary-color);
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item:nth-child(3) {
  background-color: var(--secondary-color);
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item:nth-child(4) {
  background-color: var(--secondary-color);
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item img {
  display: block;
  max-width: 52px;
  margin: 0;
}
.privelege-block--second .privelege-block__wrapper .privelege-block__item .privelege-block-text {
  padding-top: 20px;
}
@media (min-width: 991px) {
  .privelege-block--second .privelege-block__wrapper .privelege-block__item .privelege-block-text .privelege-block__subtitle {
    max-width: none;
  }
}

.footer {
  --footer-tel: clamp(1.375rem, 1.273rem + 0.3vw, 1.5rem);
  --footer-bg: #f8f8f8;
  --footer-border-col: #ededed;
  --footer-text-color: #5a6e85;
  --footer-link-color: #3184ff;
  font-family: "Roboto-Regular";
}
.footer .footer__wrapper {
  background-color: var(--footer-bg);
}
.footer .footer__wrapper .footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--footer-border-col);
}
.footer .footer__wrapper .footer__top .footer__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .footer__wrapper .footer__top .footer__socials svg {
  border-radius: 12px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}
@media (min-width: 768px) {
  .footer .footer__wrapper .footer__top {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.footer .footer__wrapper .footer__top .footer__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer__wrapper .footer__top .footer__group .footer__logo {
  margin-bottom: 12px;
}
.footer .footer__wrapper .footer__top .footer__group .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer__wrapper .footer__top .footer__group .footer__contact a {
  font-family: "Montserrat-SemiBold";
  color: var(--black-color);
  text-decoration: none;
  font-size: var(--footer-tel);
}
.footer .footer__wrapper .footer__top .footer__group .footer__contact span {
  font-size: var(--fz14-16);
}
.footer .footer__wrapper .footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer .footer__wrapper .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
  }
}
.footer .footer__wrapper .footer__bottom .footer__bottom-text {
  text-align: left;
}
.footer .footer__wrapper .footer__bottom .footer__bottom-text p {
  font-size: var(--fz14-16);
  line-height: clamp(1.25rem, 1.045rem + 0.61vw, 1.5rem);
  color: var(--footer-text-color);
  margin-bottom: 32px;
}
.footer .footer__wrapper .footer__bottom .footer__bottom-text p:last-child {
  margin-bottom: 0;
}
.footer .footer__wrapper .footer__bottom .footer__bottom-text p b {
  font-family: "Roboto-Bold";
  color: var(--black-color);
}
.footer .footer__wrapper .footer__bottom .footer__bottom-text p a {
  color: currentColor;
}
@media (min-width: 768px) {
  .footer .footer__wrapper .footer__bottom .footer__bottom-text {
    max-width: 80%;
  }
}
.footer .footer__wrapper .footer__bottom .footer__markets {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
}
.footer .footer__disclamer {
  background-color: var(--secondary-color);
  margin-top: 12px;
}
.footer .footer__disclamer .footer__disclamer-main {
  font-family: "Montserrat-Medium";
  text-transform: uppercase;
  font-size: clamp(1.125rem, 0.409rem + 2.12vw, 2rem);
  line-height: clamp(1.75rem, 1.034rem + 2.12vw, 2.625rem);
  color: var(--black-color);
  padding-bottom: 8px;
  max-width: 800px;
}
@media (min-width: 768px) {
  .footer .footer__disclamer .footer__disclamer-main {
    padding-bottom: 12px;
  }
}
.footer .footer__disclamer p {
  font-size: var(--fz14-16);
  line-height: clamp(1.25rem, 1.045rem + 0.61vw, 1.5rem);
  color: var(--footer-text-color);
}
.footer .footer__disclamer p a {
  color: var(--footer-link-color);
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer .footer__disclamer p {
    max-width: 80%;
  }
}
.footer .footer__coopyright {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  font-size: clamp(0.75rem, 0.443rem + 0.91vw, 1.125rem);
  color: var(--black-color);
}
@media (min-width: 768px) {
  .footer .footer__coopyright {
    padding: 32px;
  }
}/*# sourceMappingURL=main.css.map */