@charset "UTF-8";
/* Підключення фрифтів */
/* Google Fonts (Plugin) */
@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Manrope:regular,500,600&display=swap");
/* Локальне підключення шрифтів */
@font-face {
  font-family: "Itc Avant Garde Gothic";
  src: url("../fonts/ITCAvantGardeGothicMedium.woff2") format("woff2");
  font-weight: medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Itc Avant Garde Gothic";
  src: url("../fonts/ITCAvantGardeGothicDemi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Скидання стилів */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
}

html,
body {
  line-height: 1;
  block-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* FORM */
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  inline-size: 100%;
}

button,
select,
option {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Змінні */
:root {
  --white-color: #fff;
  --text-color1: #555C68;
  --text-color2: #BAB9B9;
  --yellow-color: #F0E714;
  --dark-color: #24272E;
}

/* Основні стилі */
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-color1);
  background: #F3F4F6;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.loaded body {
  opacity: 1;
}

.wrapper {
  min-height: 100%;
  overflow: clip; /* clip */
  display: flex;
  flex-direction: column;
}

.wrapper > main {
  flex-grow: 1;
}

.button {
  border-radius: 62.5rem;
  border: 0.0625rem solid transparent;
  background: var(--yellow-color);
  padding-inline: 2.375rem;
  padding-block: 0.75rem;
  transition: all 0.5s;
  position: relative;
}
.button span {
  color: #101C26;
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.5s;
}
.button--arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.button--arrow path {
  transition: all 0.5s;
}
@media (max-width: 58.75em) {
  .button {
    padding-inline: 1.4375rem;
  }
}
@media (max-width: 27.1875em) {
  .button {
    padding-inline: 0.75rem;
    padding-block: 0.625rem;
  }
}
@media (any-hover: hover) {
  .button:hover {
    background: transparent;
    border: 0.0625rem solid var(--yellow-color);
    transition: all 0.5s;
  }
  .button:hover span {
    color: yellow;
    transition: all 0.5s;
  }
  .button:hover svg {
    animation: move-icon 1s linear;
  }
  .button:hover path {
    fill: var(--yellow-color);
    transition: all 0.5s;
  }
}

.button-border {
  border-radius: 6.25rem;
  border: 0.0625rem solid #CECECE;
  padding-inline: 2rem;
  padding-block: 0.8125rem;
  transition: all 0.3s;
}
.button-border span {
  color: #CECECE;
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s;
}
@media (max-width: 58.75em) {
  .button-border {
    padding-inline: 1.4375rem;
  }
}
@media (max-width: 27.1875em) {
  .button-border {
    padding-inline: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .button-border:hover {
    transition: all 0.3s;
    border: 0.0625rem solid var(--yellow-color);
  }
  .button-border:hover span {
    color: var(--yellow-color);
    transition: all 0.3s;
  }
}

.button--dark {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 6.25rem;
  background: var(--dark-color);
  padding: 14px 33px 10px 33px;
}
.button--dark span {
  color: var(--yellow-color);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.57;
}
@media (any-hover: hover) {
  .button--dark:hover svg {
    animation: move-icon 1s linear;
  }
}

@keyframes move-icon {
  0% {
    transform: translateX(0rem);
  }
  30% {
    transform: translateX(-0.1875rem);
  }
  60% {
    transform: translateX(0.25rem);
  }
  100% {
    transform: translateX(0rem);
  }
}
@media (max-width: 47.99875em) {
  .header-block {
    text-align: center;
  }
}
.header-block__label {
  display: inline-block;
  color: var(--dark-color);
  line-height: 1;
  text-transform: uppercase;
  border-radius: 62.5rem;
  background: rgba(240, 231, 20, 0.2);
  padding: 0.625rem 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 61.99875em) {
  .header-block__label {
    margin-bottom: 1.125rem;
  }
}
.header-block__title {
  color: var(--dark-color);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.27;
}
.header-block__title:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 76.875em) {
  .header-block__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 61.99875em) {
  .header-block__title {
    font-size: 1.875rem;
  }
  .header-block__title:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 29.99875em) {
  .header-block__title {
    font-size: 1.5625rem;
  }
}
.header-block__text {
  color: var(--text-color1);
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 31.75rem;
}
@media (max-width: 61.99875em) {
  .header-block__text {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .header-block__text {
    margin: 0 auto;
  }
}
.header-block--center {
  margin: 0 auto;
  max-width: 41.5625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-block--center .header-block__title {
  max-width: 30.9375rem;
}
.header-block--center .header-block__text {
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .header-block--small {
    text-align: left;
  }
}
.header-block--small .header-block__title {
  font-size: 2.125rem;
}
@media (max-width: 61.99875em) {
  .header-block--small .header-block__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 29.99875em) {
  .header-block--small .header-block__title {
    font-size: 1.375rem;
  }
}
.header-block--small .header-block__text {
  font-size: 1rem;
}
@media (max-width: 47.99875em) {
  .header-block--small .header-block__text {
    margin: 0;
  }
}

.header {
  position: fixed;
  inline-size: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  transition: all 0.3s;
}
.header--scroll {
  transition: background 0.5s;
  background: rgba(16, 28, 38, 0.9450980392);
}
.header--scroll .header__container {
  padding-block: 0.625rem;
  transition: padding-block 0.5s;
}
.header__container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  padding-block: 1.6875rem;
}
@media (max-width: 68.75em) {
  .header__container {
    grid-template-columns: 1fr auto auto;
  }
}
@media (max-width: 58.75em) {
  .header__container {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    padding-block: 1.25rem;
  }
}
@media (max-width: 27.1875em) {
  .header__container {
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
  }
}
@media (max-width: 47.99875em) {
  .header__container {
    padding-block: 0.9375rem;
  }
}
.header__logo {
  inline-size: 6.0625rem;
  z-index: 5;
}
@media (max-width: 58.75em) {
  .header__logo {
    inline-size: 4.8125rem;
  }
}
@media (max-width: 27.1875em) {
  .header__logo {
    inline-size: 4.0625rem;
  }
}
@media (max-width: 47.99875em) {
  .menu {
    background-color: #101C26;
    padding: 7.5rem 1.5625rem 1.875rem 1.5625rem;
    position: fixed;
    inline-size: 100%;
    block-size: 100%;
    inset-block-start: 0;
    inset-inline-start: -100%;
    transition: inset-inline-start 0.5s;
    z-index: 2;
    overflow: auto;
  }
  .menu-open .menu {
    inset-inline-start: 0%;
  }
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 58.75em) {
  .menu__list {
    gap: 1.75rem;
  }
}
@media (max-width: 47.99875em) {
  .menu__list {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
  }
}
.menu__link {
  color: var(--text-color2);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 0.375rem;
  transition: all 0.3s;
  position: relative;
}
@media (max-width: 47.99875em) {
  .menu__link {
    font-size: 25px;
  }
}

.line {
  position: absolute;
  width: 0%;
  height: 0.0625rem;
  background-color: var(--text-color2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  pointer-events: none;
}

[data-line-parent] {
  position: relative;
}

.actions-header {
  justify-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 5;
}
@media (max-width: 22.8125em) {
  .actions-header .button-border {
    display: none;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    inline-size: 1.875rem;
    block-size: 1.125rem;
    z-index: 2;
  }
  .icon-menu::after, .icon-menu::before,
  .icon-menu span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--white-color);
    transition: all 0.3s;
  }
  .icon-menu::before {
    top: 0;
  }
  .menu-open .icon-menu::before {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .icon-menu::after {
    bottom: 0;
  }
  .menu-open .icon-menu::after {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }
  .icon-menu span {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-open .icon-menu span {
    inline-size: 0;
  }
}

.footer {
  background: #101C26;
  padding-top: 5rem;
  padding-bottom: 3.5625rem;
}
@media (max-width: 61.99875em) {
  .footer {
    padding-top: 3.125rem;
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 34.99875em) {
  .footer {
    padding-top: 1.875rem;
    padding-bottom: 1.5625rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
  padding-bottom: 4rem;
  border-bottom: 0.0625rem solid #989898;
}
@media (max-width: 47.99875em) {
  .footer__inner {
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
  }
}
.footer__content {
  flex-basis: 20.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 47.99875em) {
  .footer__content {
    flex-basis: 100%;
    align-items: center;
    text-align: center;
  }
}
.footer__logo {
  inline-size: 6.0625rem;
}
.footer__logo img {
  width: 100%;
}
.footer__text {
  color: #F5F5F5;
  line-height: 1.5; /* 150% */
  max-width: 31.25rem;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__link {
  width: 1.6875rem;
}
.footer__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.spollers {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 65.3125em) {
  .spollers {
    gap: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .spollers {
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.spollers__item {
  max-width: 13.75rem;
}
@media (max-width: 47.99875em) {
  .spollers__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.spollers__title {
  text-align: left;
  color: #F5F5F5;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
  cursor: default;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (max-width: 47.99875em) {
  .spollers__title {
    text-align: center;
    cursor: pointer;
  }
}
.spollers__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media (max-width: 47.99875em) {
  .spollers__body {
    margin-bottom: 1.25rem;
  }
}
.spollers__link {
  color: #B3B3B3;
  font-weight: 500;
  line-height: 1;
  display: flex;
  gap: 0.4375rem;
  transition: border-bottom 0.3s;
}
.spollers__link span {
  border-bottom: 1px solid transparent;
}
@media (any-hover: hover) {
  .spollers__link:hover span {
    border-bottom: 1px solid #B3B3B3;
    transition: border-bottom 0.3s;
  }
}
.spollers__icon {
  flex-shrink: 0;
  align-self: start;
  max-width: 1rem;
}
.spollers__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spollers__arrow {
  display: none;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-right: 2px solid var(--yellow-color);
  border-bottom: 2px solid var(--yellow-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
@media (max-width: 47.99875em) {
  .spollers__arrow {
    display: inline-block;
  }
}

.spoller-active .spollers__arrow {
  transform: rotate(-135deg);
}

/* --------------------- */
[class*=__container] {
  padding-inline: 0.9375rem;
  max-width: 81.875rem;
  margin: 0 auto;
}

/* --------------------- */
.dark-section {
  padding-top: 9.375rem;
  background: #101C26 url("../img/dark-section/bg_circles.png") 0 0/cover no-repeat;
}
.dark-section__content {
  font-family: "Itc Avant Garde Gothic", sans-serif;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 61.99875em) {
  .dark-section__content {
    flex-wrap: wrap;
    gap: 3.125rem;
  }
}
@media (max-width: 29.99875em) {
  .dark-section__content {
    gap: 1.875rem;
  }
}
.dark-section__column {
  flex: 0 0 100%;
}
.dark-section__body {
  position: relative;
  width: 43.2812%;
  padding-right: 1.25rem;
  inset-inline-start: -100%;
  transition: inset-inline-start 0.8s;
}
.loaded .dark-section__body {
  inset-inline-start: 0;
}
@media (max-width: 72.8125em) {
  .dark-section__body {
    width: 50%;
  }
}
@media (max-width: 61.99875em) {
  .dark-section__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }
}
.dark-section__body::after {
  content: "";
}
@media (min-width: 47.99875em) {
  .dark-section__body::after {
    position: absolute;
    top: 29.03%;
    right: 9.09%;
    width: 2.375rem;
    height: 2.375rem;
    background: url(../img/icons/star.svg) 0 0 no-repeat;
  }
}
.dark-section__header:not(:last-child) {
  margin-bottom: 4.6875rem;
}
@media (max-width: 72.8125em) {
  .dark-section__header:not(:last-child) {
    margin-bottom: 2.8125rem;
  }
}
@media (max-width: 61.99875em) {
  .dark-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 29.99875em) {
  .dark-section__header:not(:last-child) {
    margin-bottom: 1.5625rem;
  }
}
.dark-section__title {
  color: #F3F4F6;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.1; /* 110% */
  letter-spacing: 0.0375rem;
}
.dark-section__title:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 76.875em) {
  .dark-section__title {
    font-size: 3.125rem;
  }
}
@media (max-width: 61.99875em) {
  .dark-section__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 29.99875em) {
  .dark-section__title {
    font-size: 1.875rem;
  }
}
.dark-section__text {
  max-width: 27.3125rem;
  color: #F3F4F6;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01375rem;
}
.dark-section__text:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 61.99875em) {
  .dark-section__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 29.99875em) {
  .dark-section__text {
    font-size: 1rem;
  }
  .dark-section__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.dark-section__actions {
  display: flex;
  align-items: center;
  gap: 1.4375rem;
}
@media (max-width: 29.99875em) {
  .dark-section__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.dark-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.dark-section__link span {
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.5;
}
.dark-section__link rect {
  transition: fill 0.5s;
}
@media (any-hover: hover) {
  .dark-section__link:hover rect {
    fill: var(--yellow-color);
    transition: fill 0.5s;
  }
}
.dark-section__images {
  inset-inline-end: -100%;
  transition: inset-inline-end 0.7s;
  position: relative;
}
.loaded .dark-section__images {
  inset-inline-end: 0;
}
@media (min-width: 61.99875em) {
  .dark-section__images {
    flex: 0 0 50%;
    transform: translate(-100%, 0px);
  }
  .dark-section__images::before {
    content: "";
    position: absolute;
    top: -32px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #EDB32D;
  }
}
.dark-section__img {
  aspect-ratio: 753/599;
}
.dark-section__img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dark-section__static {
  display: none;
}
@media (min-width: 47.99875em) {
  .dark-section__static {
    display: block;
    position: absolute;
    bottom: 10.85%;
    left: 0;
    border-radius: 0.625rem;
    overflow: hidden;
    aspect-ratio: 202/235;
    max-width: 12.625rem;
  }
  .dark-section__static img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 61.99875em) {
  .dark-section__static {
    bottom: 10.85%;
    left: -13.6786%;
  }
}
@media (min-width: 72.8125em) {
  .dark-section__static {
    left: -3%;
  }
}
.dark-section__partners {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 47.99875em) {
  .dark-section__partners {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.partners__wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.partners__slide {
  max-width: 11.75rem;
}
.partners__slide img {
  width: 100%;
  height: 100%;
  max-height: 2.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated=true] .scroller__inner {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
.statistics {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 29.99875em) {
  .statistics {
    gap: 1.25rem;
  }
}
.statistics__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.statistics__value {
  color: var(--yellow-color);
  font-size: 1.6875rem;
  font-weight: 600;
  line-height: 3.5rem;
}
.statistics__value span {
  font-size: 2.75rem;
}
@media (max-width: 29.99875em) {
  .statistics__value {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .statistics__value span {
    font-size: 2rem;
  }
}
.statistics__label {
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.75;
}

.about {
  padding-top: 8.75rem;
  margin-bottom: 8.75rem;
}
@media (max-width: 61.99875em) {
  .about {
    padding-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 34.99875em) {
  .about {
    padding-top: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
.about__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .about__container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.about__image {
  position: relative;
  flex: 1 1 50%;
  aspect-ratio: 620/444;
  max-width: 38.75rem;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.about__image::after {
  content: "";
  position: absolute;
  bottom: -11.036%;
  left: -6.9354%;
  width: 29.3548%;
  height: 40.9909%;
  background: url("../img/decor/circle.png") 0 0/contain no-repeat;
  z-index: -1;
}
.about__content {
  flex: 1 1 50%;
}
@media (max-width: 47.99875em) {
  .about__content {
    text-align: center;
  }
}
.about__header:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 61.99875em) {
  .about__header:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.benefits {
  margin-bottom: 8.75rem;
}
@media (max-width: 61.99875em) {
  .benefits {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 34.99875em) {
  .benefits {
    margin-bottom: 3.125rem;
  }
}
.benefits__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .benefits__container {
    flex-wrap: wrap;
  }
}
.benefits__content {
  flex: 1 1 50%;
}
.benefits__header:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 61.99875em) {
  .benefits__header:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.benefits__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.benefits__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 29.99875em) {
  .benefits__item {
    gap: 0.9375rem;
  }
  .benefits__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.benefits__icon {
  flex: 0 0 4.25rem;
  height: 4.25rem;
  padding: 1.125rem;
  background-color: var(--dark-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits__icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 29.99875em) {
  .benefits__icon {
    flex: 0 0 3.625rem;
    height: 3.625rem;
    padding: 0.5rem;
  }
}
.benefits__elements {
  flex: 0 1 60%;
}
@media (max-width: 61.99875em) {
  .benefits__elements {
    flex: 0 1 80%;
  }
}
.benefits__title {
  color: var(--dark-color);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.22px;
}
.benefits__title:not(:last-child) {
  margin-bottom: 0.5rem;
}
.benefits__image {
  position: relative;
  flex: 1 1 50%;
  aspect-ratio: 624/653;
  max-width: 39rem;
}
.benefits__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.benefits__image::after {
  content: "";
  position: absolute;
  bottom: -8.4226%;
  right: -8.6538%;
  width: 29.1666%;
  height: 27.8713%;
  background: url("../img/decor/circle.png") 0 0/contain no-repeat;
  z-index: -1;
}

.offers {
  margin-bottom: 8.75rem;
}
@media (max-width: 61.99875em) {
  .offers {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 34.99875em) {
  .offers {
    margin-bottom: 3.125rem;
  }
}
.offers__header:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 61.99875em) {
  .offers__header:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.offers__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 1.875rem;
}
@media (max-width: 66.375em) {
  .offers__list {
    gap: 1.25rem;
  }
}
@media (max-width: 48.43625em) {
  .offers__list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 29.99875em) {
  .offers__list {
    gap: 0.9375rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.offers__item {
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 0.625rem;
  transition: box-shadow 0.3s;
  transition: all 0.5s;
  transform: translate(0px, 15%);
  opacity: 0;
}
@media (any-hover: hover) {
  .offers__item:hover {
    box-shadow: 0 30px 50px -10px rgba(152, 151, 151, 0.368627451);
    transition: box-shadow 0.3s;
  }
}
@media (max-width: 49.99875em) {
  .offers__item {
    padding: 1.25rem;
  }
}
@media (max-width: 29.99875em) {
  .offers__item {
    padding: 0.9375rem;
  }
}
.--animate .offers__item {
  transform: translate(0px, 0px);
  opacity: 1;
}
.--animate .offers__item:nth-child(1) {
  transition-delay: 0.1s;
}
.--animate .offers__item:nth-child(2) {
  transition-delay: 0.2s;
}
.--animate .offers__item:nth-child(3) {
  transition-delay: 0.3s;
}
.--animate .offers__item:nth-child(4) {
  transition-delay: 0.4s;
}
.--animate .offers__item:nth-child(5) {
  transition-delay: 0.5s;
}
.--animate .offers__item:nth-child(6) {
  transition-delay: 0.6s;
}
.--animate .offers__item:nth-child(7) {
  transition-delay: 0.7s;
}
.--animate .offers__item:nth-child(8) {
  transition-delay: 0.8s;
}
.offers__icon {
  margin-bottom: 1.5rem;
  width: 3.375rem;
  height: 3.375rem;
  background-color: var(--dark-color);
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offers__icon img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 29.99875em) {
  .offers__icon {
    margin-bottom: 0.9375rem;
  }
}
.offers__title {
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
  max-width: 11.3125rem;
}
@media (max-width: 29.99875em) {
  .offers__title {
    font-size: 1.25rem;
  }
}
.ready-pages {
  margin-bottom: 8.75rem;
}
@media (max-width: 61.99875em) {
  .ready-pages {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 34.99875em) {
  .ready-pages {
    margin-bottom: 3.125rem;
  }
}
.ready-pages__top {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  width: 100%;
}
.ready-pages__top:not(:last-child) {
  margin-bottom: 3.625rem;
}
@media (max-width: 61.99875em) {
  .ready-pages__top:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 47.99875em) {
  .ready-pages__top {
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
  }
  .ready-pages__top:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.ready-pages__header {
  max-width: 31.75rem;
  flex-grow: 1;
  align-self: center;
}
.ready-pages__controls {
  align-self: flex-end;
  margin-bottom: 2.125rem;
}
@media (max-width: 47.99875em) {
  .ready-pages__controls {
    margin-bottom: 0;
  }
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.slider-controls__arrow {
  max-width: 3rem;
}
.slider-controls__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-controls__arrow--left {
  transform: rotate(180deg);
}
.slider-controls__arrow--disabl {
  opacity: 0.5;
}

.slider-pages {
  clip-path: inset(-100vw -100vw -100vw 0);
  overflow: visible;
}
.slider-pages__wrapper {
  overflow: visible;
}
.slider-pages__image {
  aspect-ratio: 510/641;
  max-width: 31.875rem;
}
.slider-pages__image:not(:last-child) {
  margin-bottom: 2.5rem;
}
.slider-pages__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0.625rem;
}
@media (max-width: 47.99875em) {
  .slider-pages__image:not(:last-child) {
    margin-bottom: 1.5625rem;
  }
}
.slider-pages__title {
  color: var(--dark-color);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 0.82;
}
.slider-pages__title:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .slider-pages__title {
    font-size: 1.5625rem;
  }
  .slider-pages__title:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
}
.slider-pages__text {
  font-size: 1.25rem;
  line-height: 1.5;
}
.slider-pages__text:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 47.99875em) {
  .slider-pages__text {
    font-size: 1.125rem;
  }
}
.slider-pages__link {
  color: var(--dark-color);
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.slider-pages__link img {
  width: 0.9375rem;
}

.testimonial {
  margin-bottom: 8.75rem;
}
@media (max-width: 61.99875em) {
  .testimonial {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 34.99875em) {
  .testimonial {
    margin-bottom: 3.125rem;
  }
}
.testimonial__header {
  margin-bottom: 6.875rem;
}
@media (max-width: 61.99875em) {
  .testimonial__header {
    margin-bottom: 4.375rem;
  }
}
.slider-testimonial {
  overflow: initial;
}
.slider-testimonial__wrapper {
  margin-bottom: 6.875rem;
}
@media (max-width: 61.99875em) {
  .slider-testimonial__wrapper {
    margin-bottom: 4.375rem;
  }
}
.slider-testimonial__slide {
  transition: all 0.3s;
  padding: 2rem 3.75rem;
  border-radius: 0.625rem;
  background: var(--white-color);
}
@media (max-width: 74.99875em) {
  .slider-testimonial__slide {
    padding: 2rem 2rem;
  }
}
@media (max-width: 29.99875em) {
  .slider-testimonial__slide {
    padding: 0.9375rem 0.9375rem;
  }
}
.slider-testimonial__slide:not(.swiper-slide-active) {
  transform: scale(0.9);
}
.slider-testimonial .swiper-slide-active {
  transform: scale(1.1);
  box-shadow: 0 25px 32px 0 rgba(67, 67, 67, 0.1411764706);
}
.slider-testimonial__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.slider-testimonial__image {
  aspect-ratio: 1/1;
  width: 3.75rem;
  border-radius: 3.75rem;
  border: 0.09375rem solid #DCDCDC;
  overflow: hidden;
  margin-bottom: 1rem;
}
.slider-testimonial__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-testimonial__name {
  color: #000;
  font-family: "Itc Avant Garde Gothic", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
  margin-bottom: 0.25rem;
}
.slider-testimonial__position {
  color: #8791A0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5; /* 150% */
  margin-bottom: 0.25rem;
}
.slider-testimonial__text {
  color: var(--text-color1);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01375rem;
  padding-inline: 1.75rem;
  position: relative;
}
@media (max-width: 61.99875em) {
  .slider-testimonial__text {
    font-size: 1rem;
  }
}
@media (max-width: 29.99875em) {
  .slider-testimonial__text {
    font-size: 0.875rem;
  }
}
.slider-testimonial__text::before, .slider-testimonial__text::after {
  content: "";
  position: absolute;
  width: 1.75rem;
  height: 1.25rem;
  background: url("../img/icons/commas.svg") 0 0, no-repeat;
}
.slider-testimonial__text::before {
  left: 0;
  top: 0;
}
.slider-testimonial__text::after {
  right: 0;
  bottom: 0;
  transform: scaleX(-1);
}
.slider-testimonial .slider-testimonial__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.slider-testimonial .swiper-pagination {
  position: relative;
}
.slider-testimonial .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #555C68;
}
.slider-testimonial .swiper-pagination-bullet-active {
  background-color: #101C26;
  transition: all 0.3s;
}

.contacts {
  background-color: var(--white-color);
  padding-block: 6.25rem;
}
@media (max-width: 61.99875em) {
  .contacts {
    padding-block: 4.375rem;
  }
}
@media (max-width: 34.99875em) {
  .contacts {
    padding-block: 3.125rem;
  }
}
.contacts__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media (max-width: 47.99875em) {
  .contacts__inner {
    flex-wrap: wrap;
  }
}
.contacts__column {
  flex-basis: 50%;
  padding-inline: 2.75rem;
}
@media (max-width: 61.99875em) {
  .contacts__column {
    padding-inline: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .contacts__column {
    flex-basis: 100%;
  }
}
.contacts__header:not(:last-child) {
  margin-bottom: 1.5rem;
}
.contacts__list {
  max-width: 16.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacts__item a {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}
.contacts__icon {
  max-width: 1rem;
  flex-shrink: 0;
  align-self: start;
}
.contacts__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts__form {
  flex-basis: 50%;
}
@media (max-width: 47.99875em) {
  .contacts__form {
    flex-basis: 100%;
  }
}

.form {
  border-radius: 10px;
  background: #101C26;
  padding: 3.75rem 8.75rem 3.75rem 5rem;
}
@media (max-width: 61.99875em) {
  .form {
    padding: 3.125rem 3.75rem 3.125rem 3.75rem;
  }
}
@media (max-width: 29.99875em) {
  .form {
    padding: 2.1875rem;
  }
}
.form__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__body:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 61.99875em) {
  .form__body:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.form__group label {
  display: block;
  color: #D3D3D3;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71;
}
.form__group input,
.form__group textarea {
  color: var(--white-color);
  font-weight: 600;
  line-height: 1.5;
  outline: none;
  border-bottom: 0.09375rem solid var(--white-color);
  transition: border-bottom 0.3s;
}
.form__group input:focus,
.form__group textarea:focus {
  border-bottom: 0.09375rem solid var(--yellow-color);
  transition: border-bottom 0.3s;
}
.form__group textarea {
  resize: none;
  height: 30px;
}
@media (max-width: 29.99875em) {
  .form__button {
    width: 100%;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #101C26 inset !important;
  -webkit-text-fill-color: white !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}