@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

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

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img {
  display: block;
  max-width: 100%;
}

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
  background-color: var(--Gray-Background);
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --color-accent: #B52939;
  --black-80: #131313cc;
  --color-black: #131313;
  --color-black-alt: #474747;
  --color-white: #ffffff;
  --color-white-60: #ffffff99;
  --color-white-80: #ffffffcc;
  --color-white-alt: #f6f6f6;
  --white-30: #f6f6f64d;
  --color-grey: #C0C0C0;
  --color-grey-alt: #898989;
  --Gray-Background: #EBEBEB;
  --color-shadow: #00000014;
  --border: 1px solid var(--color-white);
  --border-radius: 20px;
  --border-radius-small: 12px;
 --border-radius-medium: 40px;
  --border-radius-large: 50%;
  --shadow: 0px 0px 20px 0px var(--color-shadow);
  --shadow-small: 0px -4px 8px 0px var(--color-shadow);
  --shadow-hover: 0px -4px 0px 0px var(--color-accent);
  --font-family-base: "Inter", sans-serif;
  --container-width: 1400px;
  --container-padding-x: 40px;
  --input-height: 60px;
  --button-height: 60px;
  --transition-duration: 0.2s;
}

/* Стили для WebKit-браузеров */
::-webkit-scrollbar {
  width: 4px;  /* Ширина скроллбара */
}

::-webkit-scrollbar-track {
  background: transparent;  /* Прозрачный фон для трека */
}

::-webkit-scrollbar-thumb {
  background-color: #C0C0C0; /* Цвет ползунка */
  border-radius: 10px;       /* Скругление углов ползунка */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #f6f6f64d;  /* Цвет при наведении */
}

/* Стили для Firefox */
* {
  scrollbar-width: thin;  /* Тонкий скроллбар */
  scrollbar-color: #C0C0C0 transparent;  /* Цвет ползунка и фона */
}

*:hover {
  scrollbar-color: #f6f6f64d transparent; /* Цвет при наведении в Firefox */
}


.container {
  max-width: var(--container-width);
  box-sizing: border-box;
  width: 100%;
  margin-inline: auto;
  padding: var(--container-padding-x);
}

@media (max-width: 900px) {
  .container {
    padding-inline: 20px;
  }
}


.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

 @media (max-width: 1099px) {
  .hidden-mobile {
    display: none !important;
  }
} 

@media (min-width: 1100px) {
  .visible-mobile {
    display: none !important;
  }
}



.position-end {
  margin-top: 44px;
}
 @media (max-width: 1099px) {
  .position-end {
    margin-top: 0px;
  }
} 

.title-2 {
  text-align: left;
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.title-2 span {
  color: var(--color-accent);
}

.row-reverse {
  flex-direction: row-reverse;
  gap: 64px !important;
}
@media (max-width: 766px) {
  .row-reverse {
    gap: 40px !important;
  }
}

.emblem {
  position: absolute;
  top: 144px;
 z-index: 1111111;
  max-height: 500px;
  color: var(--white-30);
}
.emblem-left {
  left: -121px;
}
.emblem-right {
  right: -121px;
}

@media (max-width: 1099px) {
  .emblem-right {
   left: 50%;
   top: unset;
    bottom: -70px;
    transform: translate(-50%);
z-index: 1;
  }
}



.section-bottom {
  position: relative;
}

.fixed {
  top: 190px;
  position: fixed !important;
}

@media (max-width: 450px) {
  .br-main {
    display: none;
  }
}
body {
  font-size: clamp(16px, 1.25vw, 18px);
  font-family: var(--font-family-base);
  font-weight: 500;
  color: var(--color-black);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  text-align: center;
}

h1 {
  font-size: clamp(54px, 4.8611111111vw, 70px);
}

h2 {
  font-size: clamp(40px, 3.1944444444vw, 46px);
}

h3 {
  font-size: clamp(24px, 1.6666666667vw, 24px);
}

h4 {
  font-size: clamp(18px, 1.3888888889vw, 20px);
}

.button {
  margin: 0;
  border: none;
  display: flex;
  display: flex;

height: 60px;
padding: 19px 45px 18px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 40px;
background: var(--color-accent);
color: var(--color-white-alt);
text-align: center;
font-family: "Noto Sans";
font-size: 19px;
font-style: normal;
font-weight: 600;
line-height: 115%; /* 21.85px */
}
@media (min-width: 649px) {
  .button:hover {
    color: var(--color-accent);
    background: transparent;
    border: 1px solid var(--color-accent);
    box-shadow: none;
  }
}
@media (max-width: 649px) {
  .button:active {
    color: var(--color-accent);
    background: transparent;
    border: 1px solid var(--color-accent);
    box-shadow: none;
  }
}
.button-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0 45px;
  width: 100%;
  max-width: 400px;
  margin: auto;
  color: var(--color-accent);
  /* border-radius: var(--border-radius-small); */
  background: var(--color-white);
  box-shadow: 0px 4px 0px 0px #e0e0e0;
}
@media (hover: hover) {
  .button-mobile:hover {
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-white);
    box-shadow: none;
  }
}
@media (hover: none) {
  .button-mobile:active {
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-white);
    box-shadow: none;
  }
}
@media (max-width: 900px) {
  .button-mobile {
    padding: 19px 45px;
  }
}


button {
  cursor: pointer;
}

@media (max-width: 900px) {
  .mobile-hidden {
    display: none!important;
  }
  }
  
  @media (min-width: 649px) {
    .mobile-only {
      display: none!important;
    }
  }

  @media (min-width: 1100px) {
    .desctop-hide {
    display: none;
    }
    }






.header {
  position: fixed;
  top: 0;
  display: flex;
  align-self: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  /* padding: 15px 0; */
  color: rgba(246, 246, 246, 0.80);
  z-index: 99;
  border-bottom: 1px solid var(--white-30, rgba(246, 246, 246, 0.30));
  transition: background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4) ;
  backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}


.header-scrolled {
  background-color: #EBEBEB;
  border-bottom: 1px solid var(--color-grey);
  opacity: 0.9;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled .header__menu-link:hover {
  color: var(--color-black);
  opacity: 1;
}

.header-scrolled .burger-button {
  border: 1px solid var(--color-black);
  opacity: 0.6;
}

.header-scrolled .burger-button::after {
    background-color: var(--color-black);
    border-radius: 6px;
    box-shadow: 0 -6px var(--color-black), 0 6px var(--color-black);
  }




.header-scrolled .header__menu-item {
  color: var(--color-black);
}

.header-scrolled .header__logo-text {
  color: var(--color-black);
}

.header-scrolled .header__sing-up {
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.header-scrolled .header__sing-up:hover {
  color: var(--color-white-alt);
background: var(--color-accent);
}

.header-scrolled .header__flag {
  border: 1px solid var(--color-black);
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: auto;
       column-gap: auto;
}

@media (max-width: 900px) {
    .header__inner {
        padding-left: 10px;
padding-right: 10px;
    }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: "Playfair Display";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 110%;
  
}

.header__logo img{
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header__logo-text {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

@media (max-width: 900px) {
    .header__logo-text {
        font-size: 18px;
    }
}
.header__menu {
  font-size: 16px;
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.header__menu-item {
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: rgba(246, 246, 246, 0.80);
}
@media (hover: hover) {
  .header__menu-link:hover {
    transition-duration: var(--transition-duration);
    color: var(--color-white);
  }
}
@media (hover: none) {
  .header__menu-link:active {
    transition-duration: var(--transition-duration);
    color: var(--color-white);
  }
}
.header__local {
  display: flex;
  gap: 20px;
}
.header__scoreboard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__scoreboard-number {
  background: var(--color-white);
  color: var(--color-accent);
  border-radius: var(--border-radius-small);
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}
@media (max-width: 1099px) {
  .header__scoreboard-number {
    width: 46px;
    height: 46px;
  }
} 
.header__scoreboard-text {
  border: var(--border);
  border-radius: var(--border-radius-small);
  height: 50px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  white-space: nowrap;
}
@media (max-width: 1099px) {
  .header__scoreboard-text {
    height: 46px;
    display: flex;
  }
}
.header__scoreboard-text span {
  color: var(--color-white);
}
.header__flag {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-radius: 900px;
border: 1px solid var(--color-white-alt);
display: flex;
width: 49px;
height: 49px;
justify-content: center;
align-items: center;

}
@media (max-width: 900px) {
  .header__flag {
    width: 46px;
    height: 46px;
  }
}
.header__flag-icon {
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 2.5px;
}

.header__sing-up {
  display: flex;
  background-color: transparent;
  padding: 14px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  border: 1px solid var(--color-white-alt);
  color: var(--color-white-alt);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
}

.header__sing-up:hover {
border: 1px solid var(--color-accent);
color: var(--color-accent);
}

.header__right {
  display: flex;
height: 50px;
justify-content: center;
align-items: center;
gap: 20px;
}





.section-hero {
  scroll-margin-top: -180px;
  padding: 0;
}
@media (max-width: 1099px) {
  .section-hero {
    scroll-margin-top: -110px;
  }
}
@media (max-width: 766px) {
  .section-hero {
    scroll-margin-top: -130px;
  }
}

.section-feedback {
  padding: 0;
}
@media (max-width: 1099px) {
  .section-feedback {
    scroll-margin-top: -500px;
  }
}
.mobile-overlay {
  /* animation: slideInFromTop 0.5s ease forwards; */
  width: 100%;
  margin: 0;
  border: none;
  background-color: var(--color-accent);
  padding: 20px;
  /* position: relative; */
  position: fixed;
  z-index: calc(infinity);
height: calc(var(--vh, 1vh) * 100);
max-height: 100vh;
}
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.mobile-overlay:modal {
  max-width: 100%;
}
.mobile-overlay__header {
  display: flex;
  justify-content: space-between;
}
.mobile-overlay__main {
  display: flex;
  flex-direction: column;
height: calc(100% - 85px);
max-height: calc(100% - 85px);

display: grid;
grid-template-rows: 1fr min-content;
}
.mobile-overlay__footer {
  display: flex;
  justify-content: space-between;
}

.mobile-overlay__footer button {
margin-top: 0;
margin-bottom: 0;

}
@media (max-width: 900px) {
  .mobile-overlay__footer {
    flex-direction: column;
  }
}

.mobile-overlay__icons {
  justify-content: space-between;
}
@media (max-width: 1099px) {
  .mobile-overlay__icons {
    gap: 10px;
  }
}
.mobile-overlay__icons-img {
  display: flex;
  gap: 10px;
}
.mobile-overlay__icons-img img {
  border: 1px solid var(--color-white);
  border-radius: var(--border-radius-small);
}
.mobile-overlay__close-button-wrapper {
  display: flex;
  justify-content: end;
  margin: 0;
}
.mobile-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 50%;
  justify-content: center;
height: 100%;
}
@media (max-width: 900px) {
  .mobile-overlay__list {
    width: 75%;
  }
}
.mobile-overlay__item {
  margin-bottom: 8px;
}
.mobile-overlay-link {
  display: inline-block;
  width:  100%;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 36px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
  color: var(--color-white-alt);
  opacity: 0.8;
}
.mobile-overlay-link:hover {
  opacity: 1;
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 60px;
  aspect-ratio: 1;
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border-radius: var(--border-radius-large);
  border: var(--border);
  opacity: 0.8;
}
.burger-button:hover {
  opacity: 1;
}
@media (hover: hover) {
  .burger-button:hover::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    /* background-color: var(--color-black);
    box-shadow: 0 -6px var(--color-black), 0 6px var(--color-black); */
  }
}
@media (hover: none) {
  .burger-button:active::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-color: var(--color-black);
    box-shadow: 0 -6px var(--color-black), 0 6px var(--color-black);
  }
}
.burger-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  content: "";
  width: 60%;
  height: 1px;
  background-color: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 -6px var(--color-white), 0 6px var(--color-white);
  
}

.cross-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 60px;
  aspect-ratio: 1;
  position: relative;
  height: 40px;
  position: relative;
  cursor: pointer;
  /* margin: 10px 0px; */
}
@media (hover: hover) {
  .cross-button:hover {
    filter: invert(100%);
  }
}
@media (hover: none) {
  .cross-button:active {
    filter: invert(100%);
  }
}
.cross-button:focus-visible {
  outline: none;
}
.cross-button::before, .cross-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 50%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
}
.cross-button::before {
  rotate: 45deg;
}
.cross-button::after {
  rotate: -45deg;
}

dialog:-internal-dialog-in-top-layer::backdrop {
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  overflow: hidden;
}

.main {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1099px) {
  .main {
    min-height: 100%;
    
  }
}
.main__inner {
  display: flex;
  flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  padding-top: 150px;
  width: 100%;
  padding-bottom: 130px;
}
@media (max-width: 1099px) {
  .main__inner {
    flex-direction: column;
    padding-top: 126px;
padding-bottom: 40px;
  }
}
.main__inner-title {
  color: var(--color-white);
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  font-variant-numeric: lining-nums;

font-family: "Playfair Display";
font-size: 64px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 70.4px */
text-transform: uppercase;
}
@media (max-width: 1099px) {
  .main__inner-title {
    font-size: 54px;
  }
}


@media (max-width: 766px) {
  .main__inner-title {
    font-size: 34px;
    font-weight: 400;
  }
}

.main__inner-description {
  color: var(--color-white);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  position: relative;
  padding: 13px 0 40px;
  max-width: 305px;

  font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%;
margin: 0 auto;
}

@media (max-width: 766px) {
  .main__inner-description {
    padding: 20px 0 20px;  
}
}


@media (max-width: 1099px) {
  .main__inner-description::before {
    width: 64px;
    height: 1px;
  }
}
@media (max-width: 766px) {
  .main__inner-description {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .main__inner-description {
    width: 100%;
  }
}

.join {
  padding: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 30px;
  position: relative;
}
@media (max-width: 1200px) {
  .join {
    padding-left: 40px;
    padding-right: 40px;
  }
}


@media (max-width: 900px) {
  .join {
    padding: 70px 20px 35px;
    gap: 7px;
    box-sizing: border-box;
    align-items: center;
  }
}

.join__about {
  align-self: start;
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%;
position: absolute;
top: 160px; 
}

@media (max-width: 900px) {
  .join__about {
    position: static;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.join__title {
  max-width: 895px;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
text-transform: uppercase;
text-align: start;
}

@media (max-width: 900px) {
  .join__title {
text-align: center;
font-size: 28px;
  }
}

.join__title span {

  width: 100%;
  margin-left: auto;
  text-align: end;
  color: var(--color-accent);

}

@media (max-width: 900px) {
  .join__title span {
    display: inline;
    padding: 0;
    margin-top: unset;
  }
}

.join__numbers {
  display: flex;
  gap: 20px;
  max-width: 895px;
  
}

@media (max-width: 900px) {
  .join__numbers {
    gap: 10px;
    flex-wrap: wrap;
  }
}



.join__numbers-card {
  display: flex;
width: 285px;
aspect-ratio: 1/1;
padding: 10px;
flex-direction: column;
justify-content: center;
width: 285px;
align-items: center;
gap: 10px;
border: 1px solid var(--color-grey);
}

@media (max-width: 900px) {
  .join__numbers-card {
    width: calc(50% - 5px);
    gap: 10px;
  }

  .join__numbers-card:last-of-type {
    width: 100%;
    aspect-ratio: unset;
    height: 170px;
  }
}



.join__numbers-card p {
  color: var(--color-accent);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 100px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 110px */
text-transform: uppercase;
margin: 0;
}

@media (max-width: 900px) {
  .join__numbers-card p {
    font-size: 60px;
    font-weight: 400;
    line-height: 110%; /* 66px */
  }
}

.join__numbers-card span {
  color: var(--black-80);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}

@media (max-width: 900px) {
  .join__numbers-card span {
    font-size: 12px;
  }
  
}

.join__description {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 120%;
max-width: 589px;
}

@media (max-width: 900px) {
  .join__description {
    margin-top: 13px;
    margin-bottom: 28px;
    color: var(--color-black);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
padding-left: 5px;
padding-right: 5px;
  }
}

.person__partners-list {
  display: flex;
  align-items: center;
  gap: 80px;
  /* padding: 26px 0; */
}

.person__partners-list {
  animation: marquee 40s linear infinite;
}


@media (max-width: 649px) {
.person__partners-list {
  animation: marquee 8s linear infinite;
}

  }



.person__partners-item {
  min-width: fit-content;
  display: flex;
  justify-content: center;
}


.person__partners-item {
  display: inline-block;
}

.person__partners-item > img {
  max-height: 25px;
}

.marquee {
  white-space: nowrap;
  color: var(--color-accent);
  padding: 65px 0;
  border-top: var(--color-grey) solid 1px;
  border-bottom: var(--color-grey) solid 1px;
  position: relative;
  margin-top: 10px ;
}

.marquee::before {
  content: "(Unsere Partner)";
  color: var(--color-accent);
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%; 
position: absolute;
top: -9px;
left: 200px;
padding: 0 10px;
background: var(--Gray-Background);
}

@media (max-width: 900px) {

  .marquee {
margin-top: 46px;
padding: 55px 0;
  }

  .marquee::before {
    transform: translate(-50%);
    left: 50%;
    font-size: 14px;
  }
  
}



@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.steps {
  padding: 160px 0;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .steps {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .steps {
    padding: 70px 0;
    justify-content: unset;
    flex-direction: column;
  }
}

.steps__caption {
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%;
margin-top: 6px;
}

@media (max-width: 900px) {
  .steps__caption {
    margin-top: 0;
    margin-bottom: 6px;
    width: 100%;
    text-align: center;
  }
}
.steps__content {
  max-width: 590px;
  width: 100%;
}
@media (max-width: 1200px) {
  .steps__content {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 900px) {
  .steps__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.steps__title {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%;
text-transform: uppercase;
text-align: start;
margin-bottom: 30px;
}

@media (max-width: 900px) {
  .steps__title {
    width: 100%;
    text-align: center;
    
font-size: 28px;
margin-bottom: 20px;

  }
}

.steps__title span {
  color: var(--color-accent);
}

.steps__card {
  display: flex;

  padding: 15px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-top: 1px solid var(--Gray, var(--color-grey));
}  

.steps__item-title {
  
width: 100%;
display: flex;
justify-content: space-between;

}

.steps__item-title h3 {
  text-align: start;
  color: var(--color-black);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 110%;
}

@media (max-width: 900px) {
  .steps__item-title h3 {
    font-size: 22px;
    }
}



.steps__item-title span {
  color: var(--color-accent);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 110%;
text-transform: uppercase;
}

@media (max-width: 900px) {
  .steps__item-title span {
    font-size: 22px;
    }
}

.steps__item-description {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
max-width:  351px;
}

@media (max-width: 900px) {
  .steps__item-description {
    font-size: 14px;
  }
}

.steps__button {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .steps__button {
    width: 100%;
    font-size: 17px;
    margin-top: 35px;
  }
}


#benefits,
#stories,
#purpose,
#support,
#reviews {
  scroll-margin-top: 150px;
}

#partners {
scroll-margin-top: 150px;
}
.benefits {
  padding: 0;
  scroll-margin-top: 1000px
}

@media (max-width: 1200px) {
  .benefits {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .benefits  {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.benefits__number {
  font-size: 2rem;
  color: #c00;
}

.benefits__description {
  margin-top: 10px;
}

.benefits__title {
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 64px;
font-style: normal;
font-weight: 400;
line-height: 110%;
text-transform: uppercase;
max-width: 783px;
margin: 0 auto 30px;

}

.benefits__title span {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .benefits__title  {
    font-size: 40px;
    max-width: unset;
    margin-bottom: 20px;
  }
}

.benefits__cards {
  width: 100%;
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .benefits__cards  {
    gap: 10px;
    flex-direction: column;
    
  }
}

.benefits__card {
width: 387px;
display: flex;
height: 387px;
padding: 20px;
flex-direction: column;
justify-content: space-between;
align-items: center;
border: 1px solid var(--color-grey);
flex-shrink: 0;
}

@media (max-width: 900px) {
  .benefits__card  {
    width: 350px;
    height: 350px;
    margin: auto;
  }
}

.benefits__number {
  display: flex;
width: 200px;
height: 200px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
border-radius: 50%;
border: 1px solid var(--color-accent);
}

@media (max-width: 900px) {
  .benefits__number  {
    width: 140px;
height: 140px;
  }
}

.benefits__number span {
  color: var(--color-accent);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 60px;
font-style: normal;
font-weight: 400;
line-height: 110%; 
text-transform: uppercase;
} 

@media (max-width: 900px) {
  .benefits__number span  {
    font-size: 50px;
  }
}

.benefits__description {
  color: var(--Black, #131313);
text-align: center;
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
}

@media (max-width: 900px) {
  .benefits__description  {
    font-size: 22px;
  }
}

.benefits__buttons-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px auto 0;
  width: fit-content;
}

.benefits .benefits__inner-list {
  height: 387px;
  width: 100%;
  overflow: visible!important;
  margin-inline: 0 !important;
  padding-inline: 0 !important;
}

@media (max-width: 1200px) {
  .benefits__wrapper .swiper-slide {
    max-width: fit-content;
    width: fit-content;
  }

  .benefits .benefits__inner-list {
    max-width: 799px;
    margin: auto!important;
  }
  
  
  
}

@media (max-width: 900px) {

  .benefits__wrapper {
    margin: auto;

  }
  .benefits .benefits__inner-list {
    height: fit-content;
    margin: auto;
    pointer-events: none;
    
  }

  .benefits .benefits__inner-list .swiper-slide {
    height: fit-content;
    margin: 0!important;
  }

  .benefits__wrapper {
    height: fit-content!important;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.benefits__buttons-control button {
  display: flex;
width: 60px;
height: 40px;
padding: 0;
justify-content: center;
align-items: center;
  border-radius: 40px;
  border: 1px solid var(--color-accent);

}

.benefits__button-control-right img {
  transform: scale(-1, 1)
}

.benefits__button {
  border-radius: 40px;
border: 1px solid var(--color-accent);
background-color: transparent;
color: var(--color-accent);
width: 100%;
margin-top: 22px;
font-size: 17px;
}

@media (max-width: 900px) {
  .benefits__button {
    max-width: 350px;
  }
}
.hero {
  padding-top: 160px;
  padding-bottom: 160px;
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 75px;
    padding-bottom: 50px;
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}

.hero__caption {
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%; 
}

@media (max-width: 900px) {
  .hero__caption {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 28px;
  width: 894px;

}

@media (max-width: 900px) {
  .hero__inner {
    width: 100%;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero__inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 589px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero__inner-header {
    width: 100%;
    margin-left: unset;
    
  }
}

  .hero__inner-title {
    max-width: 350px;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 44px */
text-transform: uppercase;
text-align: start;
  }

  @media (max-width: 900px) {
    .hero__inner-title {
      width: 100%;
      text-align: center;
      margin-top: 13px;
margin-right: auto;
margin-left: auto;
      font-size: 28px;

    }
  }

  .hero__inner-title span {
    color: var(--color-accent);
    margin-right: 6px;
  }


.hero__container {
  width: 894px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero__container {
    width: 100%;

  }
}

.hero__inner-list {
  display: flex;
  gap: 40px;
}


@media (max-width: 900px) {
  .hero__inner-list {
    padding-top: 0;
    gap: 20px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .pagination {
    margin-top: 20px;
  }
}
.pagination .dot {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  cursor: pointer;
}
.pagination .dot.active {
  background-color: var(--color-accent);
}

.hero-card {
  display: flex;
  gap: 65px;
  width: 894px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .hero-card {
    /* flex-direction: column;
    width: 100%;
    position: relative; */
    gap: 20px;

  }
}

@media (max-width: 900px) {
  .hero-card {
    flex-direction: column;
    width: 100%;
    position: relative;
    gap: 20px;

  }
}


.hero-card__image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero-card__image {
    width: 170px;
  height: 170px;
    background-position: center 25%;
    align-self: flex-end;
  }
}


@media (max-width: 900px) {
  .hero-card__info {
    position: absolute;
    top: 63px;
  }
}


.hero-card__name {
  color: var(--color-black);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
text-align: start;
margin-bottom: 8px;
}

@media (max-width: 900px) {
  .hero-card__name  {
   font-size: 18px;
  }
}

.hero-card__subtitle {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}

@media (max-width: 900px) {
  .hero-card__subtitle {
   font-size: 12px;
  }
}

.hero-card__image-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-white);
}
.hero-card__image-icons {
  display: flex;
  gap: 8px;
}
.hero-card__image-icons span {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  display: flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--50, rgba(143, 143, 143, 0.5));
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: var(--color-white);
}
.hero-card__text {
  width: 100%;
  min-height: 317px;
}

@media (max-width: 766px) {
  .hero-card__text {
    min-height: unset;

  }
}
.hero-card__text-description {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
margin-top: 20px;
}
@media (max-width: 766px) {
  .hero-card__text-description {
    font-size: 16px;
    margin-top: 0;
  }
}

.hero__inner-list {
  position: relative;
}

.hero-card-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}




.swiper-btn {
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  width: 60px;
  height: 40px;
padding: 0!important;
  justify-content: center;
  align-items: center;
    border-radius: 40px;
    border: 1px solid var(--color-accent);
    
    background-size: contain;
  background-repeat: no-repeat;
  background-position: center!important;
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none;  
  user-select: none;  
 touch-action: none;
background-position: 50% 50%;
position: relative;
background-size: 40px 60px!important;

}


@media (min-width: 649px) {
 .swiper-btn:hover {
background: var(--color-accent);

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
 touch-action: none;
} 

 }

@media (max-width: 649px) {
 .swiper-btn:active {
background: var(--color-accent);

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
 touch-action: none;
} 

 }



/* .swiper-btn:nth-of-type(1) {
  transform: scaleX(-1);

} */ 
.swiper-btn:focus {
  outline: none; 
}
.swiper-btn div {
  transition: none;
width: 40px;
height:25px;
margin: auto;
 background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
background-image: url('../images/arrow.svg');
}


@media (min-width: 649px) {
  .swiper-btn:hover div {
  background-image: url('../images/arrow-white.svg');
}
}

@media (max-width: 649px) {
  .swiper-btn:active div {
  background-image: url('../images/arrow-white.svg');
}
}




.swiper-wrapper {
  max-width: 100%;
}

.hero__buttons {
  margin-left: 304px;
  align-self: flex-start;
  display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
margin-top: 30px;
}

.swiper-btn:nth-of-type(1) {
  transform: scaleX(-1);

}


@media (max-width: 900px) {
  .hero__buttons {
    margin: 30px auto 0;
  }
}

@media (max-width: 1099px) {
  .swiper {
    margin-inline: -10px !important;
    padding-inline: 10px !important;
  }
}

.swiper-slide {
  transition: opacity 0.5s;
  opacity: 0;
}

.swiper-slide-visible {
  opacity: 1;
}



@media (max-width: 900px) {
  .hero-card-wrapper {
    max-height: fit-content!important;
  }
}
@media (min-width: 1200px) {
  .benefits .benefits__inner-list .swiper-wrapper {
    max-width: 387px;
  }
  .swiper {
    margin-inline: -20px !important;
    padding-inline: 20px !important;
  }
}
@media (max-width: 1249px) {
  .benefits .swiper-wrapper {
    max-width: 42%;
  }
}
@media (max-width: 767px) {
  .swiper-wrapper {
    max-width: 100%;
  }
}


.section-purpose {
  display: grid;
  grid-template-columns: 545px 1fr;
  gap: 30px 65px;
  padding: 20px 0 155px ;
}

@media (max-width: 1200px) {
  .section-purpose {
    padding-left: 40px;
    padding-right: 40px;
    grid-template-columns: 40% 1fr;
  }
}

@media (max-width: 900px) {
  .section-purpose {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.purpose__image img {
  aspect-ratio: 1.53/1;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .purpose__image img {
    aspect-ratio: 1/1;
  }
}


.purpose__title {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
text-transform: uppercase;
text-align: start;
}

@media (max-width: 900px) {
  .purpose__title  {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
}


.purpose {
  width: 100%;
  height: 600px;
}
@media (max-width: 1099px) {
  .purpose {
    height: 454px;
  }
}
@media (max-width: 766px) {
  .purpose {
    height: 276px;
  }
}
.purpose__inner-title {
  position: absolute;
  left: 50%;
  bottom: 30px;
  text-align: left;
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  color: var(--color-white);
}
@media (max-width: 1099px) {
  .purpose__inner-title {
    left: 10px;
    font-size: 54px;
  }
}
@media (max-width: 766px) {
  .purpose__inner-title {
    font-size: 34px;
  }
}
.purpose__grid {
  display: grid;
  justify-content: end;
  grid-template-columns: 285px 285px;
  grid-template-rows: auto auto;
  grid-template-areas: "first second" "button second";
  -moz-column-gap: 20px;
       column-gap: 20px;

}
@media (max-width: 1099px) {
  .purpose__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "first second" "button button";
    padding-top: 20px;
  }
}

@media (max-width: 1200px) and (min-width: 900px) {
  .purpose__grid {
    grid-template-columns: 275px 224px;
  }
}

@media (max-width: 900px) {
  .purpose__grid {
    grid-template-areas: "first first" "second second" "button button";
    gap: 17px;
    padding-top: 10px;
  }
}
.purpose__grid-description {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
}
.purpose__grid-description:first-child {
  grid-area: first;
  margin-bottom: auto;
}
.purpose__grid-description:nth-child(2) {
  grid-area: second;
}
@media (max-width: 900px) {
  .purpose__grid-description {
    font-size: 14px;
  }
}
.purpose__grid-button {
  background-color: transparent;
  grid-area: button;
  transform: translate(0, -46px);
  display: inline-flex;
padding: 19px 20px;
justify-content: center;
align-items: center;
flex-shrink: 0;
color: var(--color-accent);
text-align: center;
font-family: "Noto Sans";
font-size: 19px;
font-style: normal;
font-weight: 600;
line-height: 115%; 
border-radius: 40px;
border: 1px solid var(--color-accent);
width: max-content;
  
}

.purpose__grid-button:hover {
  border-radius: 40px;
background: var(--color-accent);
color: var(--color-white-alt);

}
@media (max-width: 1099px) {
  .purpose__grid-button {
    max-width: 100% !important;
    margin-top: 20px;
  }
}

 @media (max-width: 1200px) {
  .purpose__grid-button {
    align-self: flex-end;
  }
} 
@media (max-width: 900px) {
  .purpose__grid-button {
    border-radius: 40px;
background: var(--color-accent);
    transform: unset;
    margin-top: 10px;
    width: 100%;
    font-size: 17px;
    color: var(--color-white-alt);
  }

.purpose__grid-button:hover {
background: var(--color-white-alt);

    color: var(--color-accent);
  }

}

.invest {
  padding-top: 150px;
}
@media (max-width: 1099px) {
  .invest {
    padding-top: 80px;
  }
} 
@media (max-width: 766px) {
  .invest {
    padding-top: 60px;
  }
}
.invest__inner-title {
  padding-bottom: 40px;
}
/* @media (max-width: 1099px) {
  .invest__inner-title {
    font-size: 40px;
    text-align: center;
    padding-bottom: 0;
  }
} */
@media (max-width: 766px) {
  .invest__inner-title {
    font-size: 26px;
    text-align: left;
  }
}
.invest-card {
  display: flex;
  gap: 20px;
  padding-bottom: 60px;
}
/* @media (max-width: 1099px) {
  .invest-card {
    flex-direction: column;
    padding-bottom: 0;
    gap: 40px;
  }
} */
.invest-card__text {
  flex: 0 0 35%;
  max-width: 35%;
  padding-top: 40px;
}
/* @media (max-width: 1099px) {
  .invest-card__text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
  }
} */
@media (max-width: 766px) {
  .invest-card__text {
    align-items: flex-start;
    padding-top: 20px;
  }
}
.invest-card__text-title {
  width: 85%;
  text-align: left;
  padding-bottom: 12px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
/* @media (max-width: 1099px) {
  .invest-card__text-title {
    text-align: center;
  }
} */
@media (max-width: 766px) {
  .invest-card__text-title {
    text-align: left;
    font-size: 22px;
  }
}
.invest-card__text-description {
  width: 75%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
/* @media (max-width: 1099px) {
  .invest-card__text-description {
    text-align: center;
  }
} */
@media (max-width: 766px) {
  .invest-card__text-description {
    text-align: left;
    font-size: 14px;
    width: 100%;
  }
}
.invest-card__text-image {
  padding-bottom: 20px;
  max-width: 200px;
}
/* @media (max-width: 1099px) {
  .invest-card__text-image {
    padding-bottom: 12px;
  }
} */
.invest-card-background {
  width: 100%;
  min-height: 440px;
  border-radius: var(--border-radius);
}
@media (max-width: 766px) {
  .invest-card-background {
    min-height: 354px;
  }
}
@media (max-width: 900px) {
  .invest-card-background {
    min-height: 218px;
  }
}

.support {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;

}

@media (max-width: 1200px) {
  .support {
    padding-left: 40px;
    padding-right: 40px;
  }
}
 @media (max-width: 1099px) {
  .support {
    padding-top: 60px;
    /* margin-top: 80px; */
    /* background: var(--color-accent)  no-repeat; */
    background-size: cover;
  }
} 
@media (max-width: 900px) {
  .support {
    
    margin-top: 0;
    padding-top: 32px;
    background-color: transparent;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;


  }
}

.support__caption {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%; 
}

@media (max-width: 1200px) {
  .support__caption {
    left: 40px;
  }
}
@media (max-width: 900px) {
  .support__caption {
    width: 100%;
    text-align: center;
    position:static;
    display: block;
    font-size: 14px;


  }
}

.support__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

@media (max-width: 900px) {
  .support__inner {
    display: block;
    height: 316px;
  }
}


.support__inner-text {
  padding-top: 40px;
  color: var(--color-white);
  display: flex;
  justify-content: end;
  flex-direction: column;
  gap: 30px;
}
 @media (max-width: 1099px) {
  .support__inner-text {
    padding-top: 0;
    padding-inline: 10px;
  }
} 
.support__inner-text_title {
  margin-bottom: 30px;
  width: 590px;
  margin-left: auto;
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%;
text-transform: uppercase;
}
@media (max-width: 900px) {
  .support__inner-text_title {
    width: 100%;
    font-size: 28px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 0;
    
  }
}

.support__inner-text_title span {
  color: var(--color-accent);
}

.support__inner-text_subtitle {
  margin-left: auto;
  margin-right: 14px;
  max-width: 905px;
  color: var(--color-black);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 30.8px */
text-align: end;
}

.support__inner-text_subtitle span {
  margin-left: auto;
  margin-right: 14px;
  max-width: 905px;
  color: var(--color-black);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 30.8px */
text-align: end;
}

@media (max-width: 900px) {
  .support__inner-text_subtitle {
    font-size: 22px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 8px;
    
  }

  .support__inner-text_subtitle br {
    display: none;
    
  }
}

.support__inner-text_subtitle span {
  margin-right: 20px;
  color: var(--color-black);
} 

@media (max-width: 900px) {
  .support__inner-text_subtitle span {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .support__inner-text_subtitle span {
    font-size: 22px;
    text-align: center;
    color: var(--color-black);
  }

  .support__inner-text_subtitle br {
display: none;
  }
}

.support__inner-text_description {
  color: var(--color-black);
  width: 45%;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
margin-bottom: 90px;
width: 248px;


}
 /* @media (max-width: 1099px) {
  .support__inner-text_description {
    width: 100%;
  }
}  */
@media (max-width: 900px) {
  .support__inner-text_description {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    max-width: unset;
  }
}

@media (hover: hover) {
  .support__inner-text_button:hover {
    box-shadow: none;
    background-color: transparent;
    color: var(--color-white);
    border: var(--border);
  }
}
@media (hover: none) {
  .support__inner-text_button:active {
    box-shadow: none;
    background-color: transparent;
    color: var(--color-white);
    border: var(--border);
  }
}
 @media (max-width: 1099px) {
  .support__inner-text_button {
    width: 100%;
    margin-bottom: 60px;
  }
} 
@media (max-width: 766px) {
  .support__inner-text_button {
    margin-bottom: 18px;
  }
}




@media (max-width: 766px) {
  .support-container {
    padding-inline: 0;
  }
}

.support-card {
  border-top: 1px solid var(--color-grey);
  margin-top: 20px;
  padding-top: 26px;
  position: relative;
  width: 590px;
  gap: 26px;
  height: fit-content;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  align-self: flex-end;
}
 @media (max-width: 1099px) {
  .support-card {
    /* position: absolute;
    
    margin-top: 42px;
    width: 100%;
    max-width: 600px;
    left: 50%;
    transform: translate(-50%, 0); */
    top: 0;
    width: 490px;
    right: 0;
  }
} 
@media (max-width: 900px) {
  .support-card {
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
    padding-inline: 26px 0 0;
    margin-top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.support-card__title {
  text-align: left;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 40px;
}
.support-card__title span {
  color: var(--color-accent);
}
.support-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 190px);
  grid-column-gap: 10px;
  width: 100%;
}
@media (max-width: 1099px) {
  .support-card__grid {
    grid-template-columns: repeat(3, 1fr);
  }
} 
.support__button {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 900px) {
  .support__button {
    position: static;
    width: 100%;
    margin-top: 32px;
  }
}
.grid-column__title {
  margin-bottom: 10px;
  color: var(--color-black);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
}

.grid-column__title span {
  color: var(--color-accent);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%;
}

@media (max-width: 900px) {
  .grid-column__title {
    font-size: 12px;
  }
}
.grid-column__filling {
  position: relative;
  height: 281px;
  flex-shrink: 0;
  margin-bottom: 10px;
  border: 1px solid var(--color-grey);
}

@media (max-width: 900px) {
  .grid-column__filling {
    height: 200px;
  }
}
.grid-column__filling-active {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--color-accent);
  display: flex;
  align-items: end;
  justify-content: center;
}
.grid-column__filling-active span {
  display: inline-flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  color: var(--color-white-alt);
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: 110%; 
text-transform: uppercase;
padding: 10px;
}
@media (max-width: 659px) {
  .grid-column__filling-active span {
    left: 0;
    font-size: 20px;
  }
}

.active-1 span {
  padding: 5px;
}
.grid-column__description {
  text-align: center;
  color: var(--color-black);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
}  
@media (max-width: 900px) {
  .grid-column__description {
    font-size: 12px;
  }

  .grid-column__description br {
    display: none;
  }


}


.grid-column__filling-active span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.grid-column__filling-active span.visible {
  opacity: 1;
  transform: translateX(0);
}

.feedback {
  padding-top: 160px;
  padding-bottom: 160px;
}

@media (max-width: 1200px) {
  .feedback {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 900px) {
  .feedback {
    padding: 70px 20px;

  }
}





.feedback__caption {
  position: absolute;
  top: 0;
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 120%; /* 19.2px */
}

@media (max-width: 900px) {
  .feedback__caption {
    display: block;
    position: static;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.feedback__inner {
  position: relative;
}


.feedback__inner-header {
  display: flex;
  justify-content: end;
  align-items: end;
  margin-bottom: 30px;
  gap: 42px;
}

@media (max-width: 900px) {
  .feedback__inner-header {
    margin-bottom: 20px;
     margin-inline: 0 !important; 
     padding-inline: 0 !important;
  }
}

.feedback__inner .swiper-wrapper {
  width: 590px;
}
@media (max-width: 900px) {
  .feedback__inner .swiper-slide {
    margin-left: 0;
    max-width: 320px;
  }
} 
.feedback__inner-header_title {
  width: 418px;
  margin-left: auto;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 44px */
text-transform: uppercase;
}
 @media (max-width: 1099px) {
  .feedback__inner-header_title {
    font-size: 40px;
  }
} 
@media (max-width: 900px) {
  .feedback__inner-header_title {
    font-size: 28px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .feedback__inner-header_title br {
    display: none;
  }
}

.feedback__buttons {
  display: flex;
  gap: 10px;
}

@media (max-width: 900px) {
  .feedback__buttons {
    width: fit-content;
    margin: auto;
    margin-top: 32px;
  }
}

.feedback__inner-list {
  height: fit-content;
  overflow: visible!important;
}

@media (max-width: 900px) {
  .feedback__inner-list {
    max-width: 650px;
    width: 100%;
    box-sizing: border-box;
    /* margin-inline: 0!important;
        padding-inline: 0!important; */

  }
}
@media (max-width: 675px) {
  .feedback__inner-list {
    /* width: 340px; */
    width: 680px;
    box-sizing: border-box;
    padding-inline: 0!important; 
    /* margin-inline: 0!important;
        */

  }
}

@media (max-width: 400px) {
  .feedback__inner-list {
    padding-inline: 0!important;
  }
} 


.feedback__wrapper {
  width: 320px;
}

@media (max-width: 900px) {
  .feedback__wrapper {
     max-width: 320px;
    width: 320px; 

  }

  .feedback__wrapper .swiper-slide {
    opacity: 1;
  }
}


@media (max-width: 649px) {
  .feedback__wrapper {
     max-width: 660px;
    width:  660px!important; 

  }
}

 /* @media (max-width: 400px) {
  .feedback__wrapper {
     max-width: 360px;
    width:  360px!important; 

  }
}  */


.feedback-card {
  display: flex !important;
  width: 100%;
  min-height: 249px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  height: 100%;
  padding: 20px;
  cursor: pointer;

  border: 1px solid var(--color-grey);
background: var(--Gray-Background);

  width: 590px;
height: 249px;
padding: 20px;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
flex-shrink: 0;
}

@media (max-width: 1200px) {
  .feedback-card {
    width: 100%;
    height: 270px;
  }
}

@media (max-width: 900px) {
  .feedback-card {
    width: 320px;
    height: 270px;
  }
}
.feedback-card__description {
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 120%; 
}

@media (max-width: 900px) {
  .feedback-card__description {
    font-size: 14px;
  }
}
.feedback-card__profile {
  display: flex;
  gap: 20px;
}
.feedback-card__profile-image {
  border-radius: var(--border-radius-large);
  border: 1px solid var(--color-grey);
  aspect-ratio: 1/1;
}
.feedback__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.feedback__no-image {
  display: flex;
width: 80px;
height: 80px;
padding: 8px 18px;
justify-content: center;
align-items: center;
border-radius: 900px;
border: 1px solid var(--color-grey);
color: var(--color-grey);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%;
text-transform: uppercase;
}
.feedback-card__profile-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .feedback-card__profile-text {
    gap: 6px;
  }
}

.feedback-card__profile-text_name {
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%;
}

@media (max-width: 900px) {
  .feedback-card__profile-text_name {
    font-size: 18px;
  }
}

.feedback__quotation-marks {
  width: 26px;
  height: 20px;
  align-self: end;
}
.feedback-card__profile-text_city {
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Noto Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 120%;
 
}

@media (max-width: 900px) {
  .feedback-card__profile-text_city {
    font-size: 12px;
  }
}

.bottom {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.25) inset;
  background-color: var(--color-accent);
  padding: 120px 40px;
}

@media (max-width: 766px) {
  .bottom {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .bottom {
 
    box-shadow: none;
    padding: 70px 0;
  }
}
.bottom__inner {
  display: flex;
  max-width: 805pxpx;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-inline: auto;
  z-index: 1;
}
@media (max-width: 1099px) {
  .bottom__inner {
    width: 100%;
    position: relative;
    transform: none;
    left: auto;
   
  }
}
.bottom__inner-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .bottom__inner-form {
    gap: 20px;
  }
}
.bottom__inner-form_title {
  color: var(--color-white-alt);
text-align: center;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
text-transform: uppercase;
margin-bottom: 10px;
}
.bottom__inner-form_title span {
  color: var(--color-accent);
}
@media (max-width: 1099px) {
  .bottom__inner-form_title {
    font-size: 40px;
  }
}
@media (max-width: 900px) {
  .bottom__inner-form_title {
    font-size: 40px;
  }

  .bottom__inner-form_title br {
    display: none;
  }
}
.bottom-mobile {
  border-radius: 900px 900px 0px 0px;
  left: 10px;
  right: 10px;
  height: 334px;
  position: absolute;
  top: -300px;
}

.rf-form {
  max-width: 390px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@media (max-width: 1099px) {
  .rf-form {
    max-width: 600px;
  }
}
.rf-form__title {
  padding-bottom: 20px;
  font-size: 46px;
  color: var(--color-black);
text-align: center;
font-variant-numeric: lining-nums proportional-nums;
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 110%; 
}
@media (max-width: 1099px) {
  .rf-form__title {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .rf-form__title {
    font-size: 26px;
  }
}
.rf-form__title-hero {
  font-size: 24px;
}
@media (max-width: 1099px) {
  .rf-form__title-hero {
    text-align: center;
  }
}
.rf-form__title-3 {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 40px 0 20px;
} 
.rf-form-input {
  height: 60px !important;
  /*padding: 20px 25px !important;*/
  border: none !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: var(--border-radius-medium) !important;
  background: var(--color-white-alt) !important;
}
.rf-form-button {
  width: 386px;
  padding: 19px 45px;
  gap: 10px;
  height: 60px;
  color: var(--color-white) !important;
  border-radius: var(--border-radius-small) !important;
  background: #cf3a58 !important;
  box-shadow: 0px 4px 0px 0px #7c162b, 0px 0px 45px 0px #a6223d inset !important;
  border-radius: var(--border-radius-medium)!important;
  background: #cf3a58!important;
  box-shadow: 0px 4px 0px 0px #7c162b, 0px 0px 45px 0px #a6223d inset!important;
  border: 1px solid #a6223d !important;
}

.bottom .rf-form-button {
color: var(--color-accent)!important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-white)!important;
    box-shadow: none !important;

}



@media (hover: hover) {
  .rf-form-button:hover {
    color: var(--color-accent)!important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-white)!important;
    box-shadow: none !important;
  }
.bottom .rf-form-button:hover {
color: var(--color-white) !important;

    background: #cf3a58!important;
  box-shadow: 0px 4px 0px 0px #9A2230, 0px 0px 45px 0px #a6223d inset!important;
  border: 1px solid #9A2230 !important;


}



}
@media (hover: none) {
  .rf-form-button:active {
    background: transparent !important;
    border: 1px solid var(--color-accent) !important;
    color: var(--color-accent) !important;
    box-shadow: none !important;
  }
}
.rf-form__header {
  display: none;
}

.hero-form {
  /* background: var(--color-white); */
  border-radius: var(--border-radius);
  padding: 20px;
}
@media (max-width: 1099px) {
  .hero-form {
    max-width: 600px;
    width: 100%;
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translate(-50%, 0); */
    margin: auto;
    bottom: -420px;
    z-index: 10;
    /* box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12); */
  }
}
@media (max-width: 766px) {
  .hero-form {
    bottom: -405px;
  }
}
@media (max-width: 900px) {
  .hero-form {
    left: 10px;
    right: 10px;
    transform: none;
    width: 100%;
  }
}
.hero-form__label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  justify-content: center;
color: var(--color-white-alt);
}
.hero-form__label p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.hero-form__label p a {
  text-decoration: underline;
}

.rf-container {
  font-family: var(--font-family-base) !important;
}

.rf-container__inner {
  max-width: 390px !important;
}
@media (max-width: 766px) {
  .rf-container__inner {
    width: 100px !important;
    min-width: 320px !important;
  }
}

.rf-form__content {
  padding: 0 !important;
  width: 100%;
z-index: 2;
position: relative;
}

.rf-form__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero-form__checkbox_real {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-white-alt);
  /* border-radius: 50%; */
  cursor: pointer;
}
.hero-form__checkbox_real > img {
  display: none;
}

.hero-form__checkbox {
  display: none;
}

.rf-form__content > * + * {
  margin-top: 10px !important;
}

.check {
  padding: 10px 0;
}












.check-icon {
  display: none;
}

.hero-form__checkbox:checked + .hero-form__checkbox_real .check-icon {
  display: block;
}


.footer {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;

padding: 60px 200px 80px 200px;
gap: 80px;
}

@media (max-width: 1200px) {
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}
 @media (max-width: 1099px) {
  .footer {
    margin-top: 0;
    padding: 40px 20px;
  }
} 

.footer__link {
  color: var(--color-black);
font-feature-settings: 'liga' off, 'clig' off;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 125%; 
}

@media (max-width: 900px) {
  .footer__link {
    font-size: 14px;
  }
}
.footer__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-grey);
  padding-top: 40px;
}
@media (max-width: 900px) {
  .footer__inner {
    padding-top: 20px;
    flex-direction: column;
    border-top: 1px solid var(--color-grey);
  }
}
.footer__inner-flags {
  width: 51%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  
}
@media (max-width: 900px) {
  .footer__inner-flags {
    flex-direction: row;
    width: 100%;

  }
}
.footer__inner-flags_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
font-feature-settings: 'liga' off, 'clig' off;
font-family: "Playfair Display";
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 110%; 
margin-bottom: 35px;
}
.footer__inner-flags_logo span {
  font-size: 24px;
}
@media (max-width: 766px) {
  .footer__inner-flags_logo span {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .footer__inner-flags_logo img {
    width: 40px;
    height: 30px;

  }

  .footer__inner-flags_logo {
    gap: 5px;
    margin-bottom: 43px;
  }
}
.footer__inner-info {
  display: flex;
  gap: 40px;
}
.footer__inner-info img {
  border-radius: var(--border-radius-small);
}
@media (max-width: 900px) {

  .footer__inner-info {
    width: 100%;
    gap: 87px;
  }
  .footer__inner-info img {
    width: 46px;
    height: 46px;
  }
}
.footer__inner-link {
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 49%;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  
}


@media (max-width: 900px) {
  .footer__inner-link {
    
    font-size: 14px;
    width: 100%;
    grid-row-gap: 60px;
    grid-column-gap: 20px;
  }
}

 a {
  opacity: 0.8;
}

 a:hover {
    opacity: 1;
  }

@media (hover: none) {
  .footer__inner-link a:active {
    color: var(--color-white);
  }
}
.footer__inner-link_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-row-gap: 8px;
  grid-column-gap: 10px;
}


.footer__inner-link_list .footer__inner-link_item {
  text-align: left;
}


.modal-form {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  display: grid;
  align-items: center;
  justify-content: center;
  border: none;
}
.modal-form__box {
  width: 100%;
  max-width: 440px;
  z-index: 9999;
  transform: scale(0);
  transition: transform 0.8s;
  padding: 20px;
  background: var(--Gray-Background);

}
.modal-form__close {
  color: var(--color-white); 
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
opacity: 0.8;
}
@media (max-width: 766px) {
  .modal-form__close svg {
    width: 35px;
    height: 35px;
  }
}
@media (hover: hover) {
  .modal-form__close:hover {
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .modal-form__close {
    margin-right: auto;
  }
}
.modal-input {
  width: 550px;
}

.modal-form.open {
  visibility: visible;
  opacity: 1;
}

.modal-form.open .modal-form__box {
  transform: scale(1);
}/*# sourceMappingURL=style.css.map */

.modal-form__box .hero-form__label {
 color: var(--color-black)
}

.modal-form__box  .hero-form__checkbox_real {
    border: 1px solid var(--color-black);
}

@media (max-width: 900px) {
  .desctop {
display: none;
  }
}

@media (min-width: 900px) {
  .mobile {
display: none;
  }
}

.body {
height: 100%;
}
.body.no-scroll {
  overflow: hidden;
  
}

@media (min-width: 649px) {
  .body.no-scroll .header__inner  {
  margin-right: 4px;
}
}


