:root {
    --color-dark: #000;
    --color-accent: #FA3434;
    --color-blue: #A0BEF0;
    --color-light: #FFF4EC;
    --gradient: linear-gradient(114.68deg, #FEEDD5 0%, #F9DCD5 50%, #ECEDF7 100%);
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: "Inter";
    font-display: swap;
    src: url("../fonts/Inter-Regular.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Inter";
    font-display: swap;
    src: url("../fonts/Inter-Medium.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Inter";
    font-display: swap;
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2"),
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Inter";
    font-display: swap;
    src: url("../fonts/Inter-Bold.woff2") format("woff2"),
}
@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Unbounded";
    font-display: swap;
    src: url("../fonts/Unbounded-Medium.woff2") format("woff2"),
}
@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Unbounded";
    font-display: swap;
    src: url("../fonts/Unbounded-Bold.woff2") format("woff2"),
}

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

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
}

html {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    font-family: "Inter", "Arial", sans-serif;
    color: var(--color-dark);
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    width: 100%;
    height: 100%;

    background-color: #fff;
}

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

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
    padding-top: 172px;
}

@media (max-width: 1199px) {
    .wrapper {
        padding-top: 95px;
    }
}

.wrapper .header,
.wrapper .footer {
    flex-shrink: 0;
}

.wrapper main {
    flex-grow: 1;
}

a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    appearance: none;
}

input[type="number"] {
    appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
    [type="number"],
    [type="password"],
    [type="search"],
    [type="tel"],
    [type="text"],
    [type="url"]) {
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
}

.mb-100 {
    margin-bottom: 100px;
}

@media(max-width: 959px) {
    .mb-100 {
        margin-bottom: 80px;
    }
}

@media(max-width: 539px) {
    .mb-100 {
        margin-bottom: 60px;
    }
}

.op-60 {
    opacity: 0.6;
}

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

.container {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1199px) {
    .container {
        padding: 0 15px;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 20px;
    outline: none;
    border: none;
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    min-height: 54px;
    width: 100%;
    background: var(--color-accent);
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    color: var(--color-accent);
    background-color: #fff;
}

.btn:disabled {
    opacity: 0.7;
    pointer-events: none;
}

.btn--white {
    background-color: #fff;
    color: var(--color-accent);
}

.btn--white:hover,
.btn--white:focus {
    color: #fff;
    background-color: var(--color-accent);
}
.btn--border {
    background-color: #fff;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn--border:hover,
.btn--border:focus {
    color: #fff;
    background-color: var(--color-accent);
}

.bg-light {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--gradient);
}

.bg-light__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg-light__img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-light__info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    flex: 1;
}
@media (max-width:1199px) {
    .bg-light {
        padding: 40px;
    }
}
@media (max-width:959px) {
    .bg-light {
        padding: 30px;
    }
}
@media (max-width:539px) {
    .bg-light {
        padding: 15px;
        border-radius: 20px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 959px) {
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 0;
    background: var(--color-dark);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-accent);
}

.swiper-btn-next,
.swiper-btn-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #BAC6E5;
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    z-index: 10;
}
.swiper-btn-next {
    right: 5px;
}
.swiper-btn-prev {
    left: 5px;
}
.swiper-btn-next svg ,
.swiper-btn-prev svg {
    width: 55%;
    height: 55%;
}
.swiper-btn-next:hover,
.swiper-btn-prev:hover {
    background-color: var(--color-accent);
}
.swiper-btn-prev.swiper-button-lock,
.swiper-btn-next.swiper-button-lock {
    display: none;
}


.socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.socials__item {
    width: 36px;
    height: 36px;
}
.socials__item a {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.socials__item img {
    width: 100%;
    height: 100%;
}
.socials__item a:hover {
    opacity: 0.7;
}

.section-top {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.section-link {
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-accent);
    flex-shrink: 0;
}
.section-link:hover {
    color: var(--color-dark);
}
@media (max-width:539px) {
    .section-link {
        font-size: 14px;
    }
}
.rating-link {
    background: #F0F0F0;
    opacity: 0.8;
    border-radius: 12px;
    padding: 6px 18px;
}

.title {
    font-family: 'Unbounded', "Arial", sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    margin: 0;
}
.page-title {
    margin-bottom: 40px;
}
@media (max-width:959px) {
    .title {
        font-size: 32px;
    } 
}
@media (max-width:539px) {
    .title {
        font-size: 26px;
    } 
    .page-title {
        margin-bottom: 20px;
    }
}
@media(max-width: 359px) {
    .title {
        font-size: 20px;
    } 
}
.subtitle {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
}
@media (max-width:539px) {
    .subtitle {
        font-size: 14px;
    } 
}
.text-content {
    font-size: 16px;
    line-height: 140%;
}

.text-content p {
    margin: 0 0 10px;
}

.text-content ul {
    margin: 0 0 10px;
    padding: 0 0 0 18px;
    list-style: square;
}

.text-content ul li {
    margin: 0 0 10px;
}
.text-content ul li::marker {
    content: '\2014 ';
}
.text-content a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-content a.btn {
    text-decoration: none;
}
.text-content a:hover {
   color: var(--color-accent);
}

.text-content img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: 0 0;
    border-radius: 20px;
    margin: 40px 0;
}
.text-content table {
    border-collapse: collapse;
    border: 1px solid rgba(0,0,0,0.6);
}
.text-content td {
    border: 1px solid rgba(0,0,0,0.6);
    padding: 12px;
}


@media (max-width:539px) {
    .text-content {
        font-size: 14px;
    }
}
.section--row .container {
    display: flex;
    align-items: stretch;
    gap: 10px;
    min-width: 0;
}

.section__top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.section--row .section__top {
    flex: 1;
    flex-direction: column;
    align-items: start;
    margin: 0;
}

.section__title {
    font-size: 90px;
    line-height: 90%;
}
.section__text {
    font-size: 16px;
    line-height: 130%;
}

.section__btn {
    max-width: 274px;
}

@media(max-width: 767px) {
    .section__top {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: start;
        flex: auto;
    }

    .section__title {
        font-size: 56px;
    }

    .section--row .container {
        flex-direction: column;
    }
}

@media(max-width: 539px) {
    .section__title {
        font-size: 44px;
    }
}

.swiper-btns {
    display: flex;
    gap: 20px;
}

.swiper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    color: var(--color-accent);
    width: 54px;
    height: 54px;
    background: rgba(18, 163, 156, 0.12);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-btn:hover {
    color: #fff;
    background: var(--color-accent);
}

.swiper-btn.swiper-button-lock {
    display: none;
}

@media(max-width: 539px) {
    .swiper-btns {
        gap: 10px;
    }

    .swiper-btn {
        width: 40px;
        height: 40px;
    }
}

.logo {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    width: 128px;
    height: 90px;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo a:hover,
.logo a:focus {
    opacity: 0.5;
}
.logo__text {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.6;
    max-width: 240px;
}

@media(max-width: 539px) {

}

.custom-input,
.custom-textarea {
    position: relative;
    flex: 1;

    display: flex;
    width: 100%;
}

.custom-input label,
.custom-textarea label {
    width:100%;
    display: flex;
    flex-direction: column;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    min-height: 52px;
    padding: 10px 20px;
    font: inherit;
    color: inherit;
    outline: none;
    background: #fff;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    line-height: 120%;
}

.custom-input input::-webkit-input-placeholder {
    color: var(--color-dark);
    opacity: 0.6;
}

.custom-input:has(.is-invalid) .input-error {
    margin-top: 5px;
}
.custom-checkbox {
    position: relative;
    display: flex;
    flex: 1;
    width: 100%;
}

.custom-checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
 }

 .custom-checkbox label {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    gap: 10px;
    min-height: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 2px;
 }

  .custom-checkbox__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: backgound-color 0.3s ease, color 0.3s ease;
    width: 46px;
    height: 46px;
    top: 4245px;
    background: rgba(0, 0,0,0.05);
    color: rgba(0, 0,0,0.2);
    border-radius: 18px;
 }

.custom-checkbox__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    opacity: 0.8;
}
.custom-checkbox:has(input:checked)  .custom-checkbox__icon {
    background-color: #FA8676;
    color: #fff;
}

.custom-toggle {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}

.custom-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
 }

 .custom-toggle label {
    display: flex;
    position: relative;
    cursor: pointer;
    gap: 10px;
 }

  .custom-toggle__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    transition: backgound-color 0.3s ease;
 }

.custom-toggle__label {
    font-size: 12px;
    line-height: 140%;
    opacity: 0.6;
}

.custom-toggle a {
    text-decoration: underline;
}

.custom-toggle a:hover {
    opacity: 0.7;
}

.custom-toggle:has(input:checked)  .custom-toggle__icon {
    background-color: var(--color-accent);
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-size: 16px;
    line-height: 19px;
}

.nav__link:hover,
.nav__link:focus {
    color: var(--color-accent);
}

.nav__link--accent {
    color: var(--color-accent);
    font-weight: 600;
}

.nav__link--accent:hover,
.nav__link--accent:focus {
    opacity: 0.7;
}

.nav__sublist {
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: translate(0, 100%);
    list-style: none;
    margin: 0;
    padding: 20px;
    z-index: 10;
    width: max-content;
    border-radius: 20px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.nav__item:hover .nav__sublist,
.nav__item:focus .nav__sublist,
.nav__item:focus-within .nav__sublist {
    opacity: 1;
    visibility: visible;
}
.nav__item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 20px;
    cursor: pointer;
}
.nav__item::after {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url(/assets/theme/img/arrow.svg);
    background-size: cover;
    margin-left: 5px;
}
.nav__item:has(.nav__sublist)::after {
    content: '';
}

.nav__sublink {
    display: block;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 10px;
}
.nav__subitem:last-child .nav__sublink {
    margin-bottom: 0;
}
.nav__sublink:hover {
    color: var(--color-accent);
}

@media (max-width: 1199px) {
    .nav {
        width: 100%;
        justify-content: flex-end;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 60px;
    }

    .nav__sublist {
        position: relative;
        bottom: 0;
        transform: none;
        padding: 12px 0 0 20px;
        width: 100%;
        border-radius: 0;
    }
    .nav__item::before,
    .nav__item:has(.nav__sublist)::after {
        content: none;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 5px;
    z-index: 100;
    transition: transform 0.3s ease;
}
.header.sticky {
    transform: translateY(-85px);
}

.header__top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 10px;
    background-color: #fff;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo a {
    width: 100px;
    height: 70px;
}

.header__text {
    font-size: 18px;
    line-height: 120%;
    opacity: 0.6;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 10px;
}

.header__contact span {
    display: block;
    font-size: 14px;
    line-height: 17px;
    opacity: 0.6;
    margin-bottom: 2px;
}
.header__contact a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.header__contact a:hover {
    color: var(--color-accent);
}

.header__nav {
    background-color: #f3f3f3;
    border-radius: 40px;
    padding: 15px 30px;
}

.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-color: var(--color-dark);
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    transition: opacity 0.3s ease;
}

.header__overlay.show {
    opacity: 0.82;
    visibility: visible;
    z-index: 20;
}

.header__burger {
    display: none;
    position: relative;
    width: 36px;
    height: 36px;
    padding: 0;
    min-height: 36px;
    border-radius: 12px;
    color: #fff;
    transition: opacity 0.3s ease;
}
.header__burger:hover,
.header__burger:focus {
    background-color: var(--color-accent);
    color: #fff;
    opacity: 0.8;
}

.header__burger svg {
    position: absolute;
    width: 20px;
    height: 20px;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease;
}

.header__burger .icon-close {
    opacity: 0;
}

.header__burger.is-open .icon-close {
    opacity: 1;
}

.header__burger.is-open .icon-open {
    opacity: 0;
}

@media (max-width : 1199px) {
    .header.sticky {
        transform: translateY(0);
    }
    .header__burger {
        display: flex;
        z-index: 30;
    }
    .header__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 13px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: 317px;
        max-height: 100vh;
        max-height: calc(100 * var(--vh, 1vh) - 40px);
        overflow: hidden;
        background-color: #fff;
        z-index: 25;
        border-radius: 18px;
        padding: 40px 15px 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        flex:1;
    }


    .header__nav.is-active,
    .header__nav.is-active .nav__sublist {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width : 959px) {
    .header__text,
    .header__mail {
        display: none;
    }
    .header__wrap {
        position: relative;
        padding-right: 60px;
        padding-left: 10px;
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .header__btns {
        margin-left: auto;
    }
}

@media(max-width : 767px) {
    .header__top {
        gap: 15px;
    }
    .header__contacts {
        display: none;
    }
    .header .logo a {
        width: 52px;
        height: 37px;
    }
    .header__right {
        gap: 5px;
    }
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 13px 0 30px;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a {
    font-size: 14px;
    line-height: 17px;
    opacity: 0.4;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs li::after {
    content: "/";
    padding: 0 10px;
}

.breadcrumbs li:last-child a {
    pointer-events: none;
    opacity: 1;
}

.breadcrumbs li:last-child::after {
    display: none;
}
@media(max-width: 539px) {
    .breadcrumbs a {
        font-size: 12px;
    }
}
.form .bg-light {
    min-height: 540px;
}
.form .bg-light__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form .bg-light {
    background: linear-gradient(285.04deg, #A0BEF0 0%, #EAEFFB 100%);
    display: flex;
    flex-direction: column;
}
.form .bg-light__img {
    width: 690px;
    height: 540px;
    bottom: 0;
    top: auto;
    left: 50%;
}

.form .title {
    margin-bottom: 40px;
}
.form .subtitle {
    margin-bottom: 40px;
}

.form form {
    margin-top: auto;
}
.form__wrap {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    max-width: 660px;
}
.form__btn {
    grid-row: auto / span 2;
    align-self: center;
}
@media(max-width: 959px) {
    .form .bg-light__img {
        left: auto;
        right: -200px;
    }
    .form .title {
        margin-bottom: 20px;
        max-width: 550px;
    }
    .form .subtitle {
        max-width: 500px;
    }
    .form__wrap {
        margin-top: auto;
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}
@media(max-width: 767px) {
    .form .title {
        margin-bottom: 10px;
    }
    .form__wrap {
        gap: 10px;
    }
    .form .bg-light__img {
        position: relative;
        left: auto;
        right: auto;
        width: 320px;
        height: 250px;
        margin: 0 -30px -30px auto;
    }
}
@media(max-width: 539px) {
    .form .bg-light__img {
        margin: 0 -15px -15px auto;
    }
}
.contacts__list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.contacts__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px;
    min-height: 300px;
    background-image: linear-gradient(294.68deg, #FEEDD5 0%, #F9DCD5 50%, #ECEDF7 100%);
    background-size: 400% 100%;
}
.contacts__item:nth-child(1) { background-position: 0% 0%; }
.contacts__item:nth-child(2) { background-position: 25% 0%; }
.contacts__item:nth-child(3) { background-position: 50% 0%; }
.contacts__item:nth-child(4) { background-position: 75% 0%; }

.contacts__name {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.6;
}
.contacts__info {
    font-family: 'Unbounded','Arial',sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
}
.contacts__info p {
    margin: 0 0 10px;
}
.contacts__info p:last-child {
    margin: 0;
}
.contacts__info a {
    font-size: 20px;
}
.contacts__info a:hover {
    color:  var(--color-accent);
}
@media(max-width: 1199px) {
    .contacts__list {
        grid-template-columns: repeat(2,1fr);
    }
    .contacts__item {
        min-height: 200px;
        background-size: 200% 200%;
    }
    .contacts__item:nth-child(1) { background-position: 0% 0%; }
    .contacts__item:nth-child(2) { background-position: 50% 0%; }
    .contacts__item:nth-child(3) { background-position: 0% 50%; }
    .contacts__item:nth-child(4) { background-position: 50% 50%; }
}
@media(max-width: 767px) {
    .contacts__list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }
    .contacts__item {
        padding: 15px;
        min-height: 132px;
        background-size: 100% 400%;
    }
    .contacts__item:nth-child(1) { background-position: 0% 0%; }
    .contacts__item:nth-child(2) { background-position: 0% 25%; }
    .contacts__item:nth-child(3) { background-position: 0% 50%; }
    .contacts__item:nth-child(4) { background-position: 0% 75%; }

    .contacts__name {
        font-size: 14px;
    }
    .contacts__info {
        font-size: 14px;
    }
    .contacts__info a {
        font-size: 16px;
    }
}
.map {
    width: 100%;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
}
@media(max-width: 959px) {
    .map {
        height: 428px;
    }
}
@media(max-width: 539px) {
    .map {
        height: 228px;
    }
}

.store-link {
    max-width: 195px;
    font-size: 14px;
    min-height: 40px;
    padding: 4px 10px;
}

.store-link svg {
    width: 25px;
    height: 25px;
}
.footer {
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    border-radius: 40px 40px 0px 0px;
}
.footer__wrap {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__logo {
    margin-bottom: 10px;
}
.footer__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 10px;
}
.footer__link {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.6;
}
.footer__link.active,
.footer__link:hover {
    opacity: 1;
}
.footer__contacts a,
.footer__contacts p {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    opacity: 0.8;
    margin: 0 0 10px;
    display: block;
    max-width: 230px;
}
.footer__contacts a:hover {
    color: var(--color-accent);
}
.footer__nav {
    display: grid;
    gap: 10px 30px;
}
.footer__copyright,
.footer__privacy {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.4;
}
.footer__privacy {
    grid-column: auto / span 2;
}

.footer__privacy:hover {
    opacity: 1;
}
.footer__text {
    margin-top: auto;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    opacity: 0.8;
     max-width: 230px;
}
@media(max-width : 1399px) {
    .footer__wrap {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer__col:nth-child(2) {
        grid-column: auto / span 2;
    }
}
@media(max-width : 959px) {
    .footer__wrap {
        grid-template-columns: 1fr 1fr;
    }
        .footer__col:nth-child(2) {
        grid-column: auto;
    }
    .footer__col:has(.footer__nav) {
        grid-column: 1 / -1;
    }
    .footer__nav {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width : 539px) {
    .footer__wrap {
        grid-template-columns: 1fr;
    }
    .footer__privacy {
        grid-column: auto;
    }
} 
@media(max-width : 359px) {
    .footer__nav {
        grid-template-columns: 1fr;
    }
} 
[data-accordion=element].is-active>[data-accordion=content] {
    max-height: 100%;
}

[data-accordion=parent].no-transition [data-accordion=content] {
    transition: none;
}

[data-accordion=content] {
    max-height: 0;
    transition: max-height 0.3s;
    overflow: hidden;
}

.accordion__element {
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
    border: 1px solid var(--color-blue);
    transition: background-color 0.3s ease, border-color  0.3s ease;
}

.accordion__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    min-height: 74px;
    font-family: 'Unbounded','Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.accordion__button-text {
    text-align: start;
}

.accordion__icon {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    width: 34px;
    height: 34px;
    background: #BAC6E5;
    border-radius: 50%;
    color: #fff;
}

.accordion__icon svg {
    width: 18px;
    height: 18px;
    transition:  transform 0.3s ease;
}
.accordion__element.is-active .accordion__icon {
    background-color: var(--color-accent);
}

.accordion__element.is-active .accordion__icon svg {
    transform: rotate(180deg);
}
.accordion__element.is-active {
    background-color: var(--color-light);
    border-color: transparent;
}

.accordion__wrapper {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
}

.accordion__wrapper p {
    margin: 0;
    max-width: 900px;
}
@media(max-width: 959px) {
    .accordion__button {
        font-size: 22px;
    }
}
@media(max-width: 539px) {
    .accordion__element {
        border-radius: 10px;
    }
    .accordion__button {
        font-size: 18px;
        padding: 15px;
    }
    .accordion__wrapper {
        font-size: 14px;
        padding: 0 15px 15px;
    }
}
.numbers .bg-light {
    background: linear-gradient(285.04deg, #A0BEF0 0%, #EAEFFB 100%);
}
.numbers .bg-light__img {
    width: 682px;
    height: 720px;
    bottom: 0;
    right: -40px;
    left: auto;
    top: auto;
}

.numbers .bg-light__info {
    display: flex;
    flex-direction: column;
    min-height: 616px;
}
.numbers .title {
    margin-bottom: 20px;
    max-width: 785px;
}
.numbers__desc{
    flex: 1;
    max-width: 745px;
}
.numbers .btn {
    width: fit-content;
    min-width: 320px;
}

.numbers__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.numbers__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 20px;
    padding: 20px;
    min-height: 160px;
    background: #fff;
}

.numbers__title {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: #FA8676;
}

.numbers__text {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.6;
}

@media(max-width: 1199px) {
    .numbers__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .numbers__desc {
        max-width: 80%;
    }
    .numbers .bg-light__img {
        right: -185px;
    }
}
@media(max-width: 959px) {
    .numbers__item {
        min-height: 150px;
    }
    .numbers__title {
        font-size: 32px;
    }
}
@media(max-width: 767px) {
    .numbers__wrap {
        margin-top: 180px;
        gap: 10px;
    }
    .numbers__item {
        border-radius: 5px;
        padding: 15px;
        min-height: 135px;
    }
    .numbers__title {
        font-size: 26px;
    }
    .numbers__text {
        font-size: 14px;
    }
    .numbers .bg-light__img {
        width: 200px;
        height: 210px;
        right: 0;
        bottom: 265px;
    }
    
    .numbers .btn {
        width: 100%;
        min-width: 0;
    }
}
.promo__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px;
    background: linear-gradient(281.17deg, #FFF4EC 0.3%, #DDEFFF 100.54%);
    border-radius: 40px;
}

.promo--main .promo__wrap,
.promo--service .promo__wrap {
    min-height: 600px;
}

.promo--main  .promo__wrap::after {
    content: '';
    position: absolute;
    width: 768px;
    height: 683px;
    bottom: -75px;
    right: -14px;
    background-image: url(../img/promo-img.webp);
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}

.promo__wrap .breadcrumbs {
    margin: 0 0 100px;
}
.promo--service .breadcrumbs {
    margin: 0 0 10px;
}

.promo__title {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 125%;
    margin: 0 0 20px;
}

.promo--main .promo__title {
    position: relative;
    font-size: 52px;
    max-width: 788px;
    z-index: 3;
}

.promo__text {
    position: relative;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: auto;
    opacity: 0.8;
    max-width: 1124px;
     z-index: 3;
}
.promo__text p {
    margin: 0;
}
.promo--main .promo__text p {
    margin: 0 0 12px;
}
.promo--service .promo__title,
.promo--service .promo__text {
    max-width: 540px;
}

.promo__price {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    margin: auto 0 20px;
}
.promo__price span {
    font-family: 'Inter';
    font-size: 20px;
}

.promo__btn {
    max-width: 320px;
}
.promo__img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 550px;
    height: 600px;
}
@media(max-width: 1199px) {
    .promo__wrap {
        padding: 40px;
    }
    .promo--main .promo__title {
        font-size: 46px;
    }
    .promo--main {
        overflow: hidden;
    }
    .promo--main  .promo__wrap::after {
        width: 658px;
        height: 586px;
        bottom: -65px;
        right: -130px;
    }
}
@media(max-width: 959px) {
    .promo__wrap {
        padding: 30px;
    }
    .promo--main  .promo__wrap::after {
        width: 416px;
        height: 370px;
        bottom: -41px;
        right: -10px;
    }
    .promo--main {
        overflow: visible;
    }
    .promo--main .promo__wrap {
        min-height: 540px;
    }
    .promo__title {
        font-size: 32px;
    }
    .promo--main .promo__title {
        font-size: 38px;
    }
    .promo__img {
        width: 350px;
        height: 400px;
    }
    .promo__price {
        font-size: 36px;
    }

}
@media(max-width: 767px) {
    .promo--main .promo__wrap,
    .promo--service .promo__wrap {
        min-height: 0;
    }
    .promo--main  .promo__wrap::after {
        content: none;
    }
    .promo__img {
        display: none;
    }
    .promo--service .promo__text {
        margin-bottom: 20px;
    }
    .promo__price {
        font-size: 32px;
        margin-top: 0;
    }
}
@media(max-width: 539px) {
    .promo__wrap {
        padding: 15px;
        border-radius: 20px;
    }
    .promo__wrap .breadcrumbs {
        margin: 0 0 50px;
    }
    .promo__title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .promo--main .promo__title {
        font-size: 32px;
    }
    .promo__text {
        font-size: 16px;
    }
    .promo__btn {
        max-width: 100%;
    }
    .promo__price {
        font-size: 24px;
    }
}
@media(max-width: 359px) {
    .promo__title {
        font-size: 22px;
    }
    .promo--main .promo__title {
        font-size: 22px;
    }
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    min-height: 250px;
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.card__num {
    font-family: 'Unbounded';
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    color: #fff;
    padding: 6px 14px;
    background-color: var(--color-blue);
    border-radius: 20px;
    align-self: flex-end;
    margin-bottom: auto;
}
.card__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #BAC6E5;
    border-radius: 20px;
    margin-bottom: auto;
}
.card__icon img {
    width: 26px;
    height: 26px;
}

.card__title {
    font-family: 'Unbounded','Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
}
.card__text {
    font-size: 16px;
    line-height: 140%;
    color: rgba(0,0,0,0.6);
    flex: 1;
}
.card__text p {
    margin: 0;
}
.card__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: auto;
}
.card__link::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.card__link:hover {
    color: var(--color-accent);
}
.card:has(.card__link:hover) {
    background-color: var(--color-light);
    border-color: transparent;
}
@media(max-width: 539px) {
    .card {
        gap: 15px;
    }
    .card__title {
        font-size: 22px;
    }
}
@media(max-width: 539px) {
    .card {
        padding: 15px;
        min-height: 160px;
        border-radius: 10px;
        gap: 10px;
    }
    .card__icon {
        width: 48px;
        height: 48px;
        border-radius: 5px;
    }
    .card__icon img {
        width: 22px;
        height: 22px;
    }
    .card__title {
        font-size: 16px;
    }
    .card__text {
        font-size: 14px;
    }
}

.features .card {
    min-height: 336px;
}
.features .card__icon {
    margin-bottom: 40px;
}
.features--service .card {
    min-height: 280px;
}
.features .card:has(.card__img) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.features--service .card:has(.card__img) {
    grid-column: auto;
    grid-row: auto;
}
.features--service .card__icon {
    position: absolute;
    top: 20px;
    right: 20px;
}
.features--service .card__title {
    margin: 0 90px auto 0;
}
@media(max-width: 1199px) {
    .features .card:has(.card__img) {
        grid-column: -2 / -1;
        grid-row: 2 / 3;
    }
}
@media(max-width: 767px) {
    .features .card {
        min-height: 250px;
    }
    .features .card:has(.card__img) {
        grid-row: 4 / 5;
        min-height: 272px;
    }
}
.advantages .bg-light__img {
    width: 792px;
    height: 832px;
    top: auto;
    left: auto;
    right: -180px;
    bottom: 0;
}
.advantages .title {
    max-width: 1120px;
    margin-bottom: 20px;
}
.advantages__wrap {
    display: grid;
    gap: 20px;
}
.advantages__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    min-height: 234px;
    width: 50%;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
}
.advantages__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FA8676;
    border-radius: 20px;
}
.advantages__icon img {
    width: 26px;
    height: 26px;
}
.advantages__title {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
@media(max-width: 1199px) {
    .advantages .bg-light__img {
        width: 620px;
        height: 650px;
        right: -170px;
    }
    .advantages .title {
        max-width: 750px;
    }
    .advantages__item {
        width: 70%;
    }
}
@media(max-width: 959px) {
    .advantages .bg-light__img {
        width: 415px;
        height: 433px;
        right: -90px;
    }
    .advantages__item {
        width: 70%;
        min-height: 198px;
    }
    .advantages__title {
        font-size: 22px;
    }
}
@media(max-width: 539px) {
    .advantages .bg-light {
        padding-bottom: 270px;
    }
    .advantages .bg-light__img {
        width: 315px;
        height: 320px;
        right: -30px;
        bottom: -30px;
    }
    .advantages__item {
        width: 100%;
        gap: 15px;
        min-height: 155px;
        border-radius: 15px;
        padding: 10px;
    }
    .advantages__icon {
        width: 48px;
        height: 48px;
        border-radius: 5px;
    }
    .advantages__icon img {
        width: 22px;
        height: 22px;
    }
    .advantages__title {
        font-size: 16px;
    }
}
.calculate .bg-light {
    min-height: 813px;
}
.calculate .title {
    max-width: 900px;
}
.calculate .subtitle {
    margin: 20px 0;
    font-size: 20px;
    max-width: 650px;
}
.calculate form {
    margin-top: auto;
}
.calculate__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: auto;
}
.calculate__name {
    font-size: 14px;
    line-height: 120%;
    opacity: 0.8;
    margin: 20px 0 10px;
}
.calculate__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.calculate__row .custom-checkbox {
    min-width: calc((100% - 2 * 20px) / 3);
}
.calculate__right {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    align-self: end;
}
.calculate__text {
    font-size: 16px;
    line-height: 120%;
    opacity: 0.8;
    margin-bottom: 10px;
}
.calculate__price {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 20px;
}
.calculate__right .custom-input input {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.calculate .custom-input .input-error,
.calculate .custom-toggle .input-error {
    font-size: 10px;
}
.calculate__left .custom-input input {
    min-height: 30px;
    padding: 5px 10px;
    width: fit-content;
    text-align: center;
}
.calculate .form__accept {
    grid-column: 1 / -1;
}
.calculate  .custom-toggle__icon {
    border: 1px solid var(--color-accent);
 }
 .calculate__bottom .grid-3 {
     align-items: start;
     gap: 10px;
 }

@media(max-width: 1199px) {
    .calculate__wrap {
        grid-template-columns: 1fr;
    }
    .calculate .bg-light__img {
        display: none;
    }
}
@media(max-width: 767px) {
    .calculate__row .custom-checkbox {
        min-width: calc((100% - 20px) / 2);
    }
}
@media(max-width: 539px) {
    .calculate__row .custom-checkbox {
        min-width: 100%;
    }
    .calculate .subtitle {
        font-size: 16px;
    }
    .calculate__price {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.promotion .card {
    border: 0;
    gap: 20px;
    background-color: var(--color-light);
}
.compound .bg-light {
    min-height: 750px;
    background: linear-gradient(285.04deg, #A0BEF0 0%, #EAEFFB 100%);
}
.compound .bg-light__info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.compound .bg-light__img {
    width: 682px;
    height: 720px;
    bottom: 0;
    right: -40px;
    left: auto;
    top: auto;
}
.compound__wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 670px;
    min-height: 398px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-top: auto;
}
.compound__wrap ul {
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: 'Unbounded','Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}
.compound__wrap ul li {
    position: relative;
    padding-left: 32px;
}
.compound__wrap ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background-image: url(../img/icon-marker.svg);
    background-size: cover;    
}
.compound__btn {
    margin-top: auto;
}
@media(max-width: 959px) {
    .compound .bg-light {
        min-height: 0;
    }
    .compound .title {
        margin-bottom: 30px;
    }
    .compound .bg-light__img {
        display: none;
    }
}
@media(max-width: 539px) {
    .compound__wrap {
        padding: 15px;
    }
}
.filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter__btn {
    padding: 8px 20px;
    font-family: 'Inter','Arial',sans-serif;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: var(--color-dark);
    background-color: var(--color-light);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.filter__btn.active,
.filter__btn:hover {
    background-color: #A0BEF0;
}

@media(max-width: 767px) {
    .filter {
        gap: 2px;
        margin-bottom: 10px;
        flex-direction: column;
    }
}
.paginations {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.paginations__item a {
    display: block;
    padding: 12px;
    background: var(--color-light);
    border-radius: 12px;
    font-size: 16px;
    line-height: 19px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.paginations__item a:hover,
.paginations__item.active a {
    background-color: var(--color-accent);
    color: #fff;
}

@media(max-width: 539px) {
    .paginations__item {
        font-size: 14px;
    }
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.team-card__img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__info {
    padding: 20px;
}

.team-card__name {
    font-family: 'Unbounded','Arial', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}
.team-card__name::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}
.team-card__position {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.6;
}
.team-card:has(.team-card__name:hover) {
    background-color: var(--color-light);
    border-color: transparent;
}
@media(max-width: 539px) {
    .team-card {
        gap: 10px;
        border-radius: 10px;
    }
    .team-card__img {
        border-radius: 10px;
    }
    .team-card__info {
        padding: 15px;
    }
    .team-card__name {
        font-size: 16px;
    }
    .team-card__position {
        font-size: 14px;
    }
}
.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    padding: 20px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.blog-card__tag {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 2;
    font-size: 12px;
    line-height: 15px;
    padding: 4px 10px;
    background-color: #fff;
    border-radius: 12px;
}
.blog-card__img {
    width: calc(100% + 30px);
    aspect-ratio: 315 / 180;
    border-radius: 15px;
    overflow: hidden;
    margin: -15px -15px 15px;
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card__date {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 140%;
    opacity: 0.6;
}
.blog-card__title {
    transition: color 0.3s ease;
    font-family: 'Unbounded', "Arial", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}
.blog-card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
    margin-bottom: 15px;
    flex: 1;
}
.blog-card__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.blog-card__link::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.blog-card__link:hover {
    color: var(--color-accent);
}
.blog-card:has(.blog-card__link:hover) {
    background-color: var(--color-light);
    border-color: transparent;
}
@media(max-width: 539px) {
    .blog-card {
        border-radius: 10px;
        padding: 15px;
    }
    .blog-card__img {
        width: calc(100% + 20px);
        margin: -10px -10px 10px;
    }
    .blog-card__date {
        margin-bottom: 10px;
    }
    .blog-card__title {
        font-size: 16px;
    }
    .blog-card__text {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .blog-card__link {
        font-size: 14px;
    }
}

.article__title {
    font-weight: 500;
    margin-bottom: 10px;
}
.article__info {
    display: flex;
    gap: 96px;
    margin-bottom: 20px;
}
.article__info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.article__info-name {
    font-size: 12px;
    line-height: 140%;
    opacity: 0.6;
}
.article__info-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
}
.article__wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.article__img {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 90 / 56;
    margin-bottom: 20px;
}
.article__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article__text {
    opacity: 0.6;
    margin-bottom: 60px;
}
.article__btn {
    max-width: 200px;
}

@media(max-width: 1199px) {
    .article__text {
        margin-bottom: 40px;
    }
}
@media(max-width: 539px) {
    .article__info {
        gap: 53px;
        margin-bottom: 15px;
    }
    .article__info-item {
        gap: 3px;
    }
    .article__info-name {
        font-size: 10px;
    }
    .article__info-text {
        font-size: 14px;
    }
    .article__btn {
        max-width: 100%;
    }
}

.marquee{
    width:100%;
    overflow: hidden;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.marquee__track{
    display: flex;
    align-items: center;
    height:100%;
    animation: marquee 30s linear infinite;
    will-change: transform;
    width: max-content;
}

.marquee__img {
    flex: 0 0 auto; 
    height: 100%;
    max-width: 250px;
    margin: 0 30px;
}

.marquee__img img{
    width:100%;
    height:100%;
    object-fit: contain;
}

.marquee__track:nth-child(odd) {
    animation-direction: reverse;
}

@media (max-width: 539px) {
    .marquee{
        height: 90px;
        gap: 30px;
    }
    .marquee__img {
        max-width: 180px;
        max-height: 30px;
        margin: 0 15px;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.banks__wrap {
    margin-top: 40px;
}
.banks .card {
    justify-content: space-between;
}
.banks .card:hover {
    background-color: var(--color-light);
    border-color: transparent;
}
.banks__img {
    padding: 10px;
    width: 100%;
    height: 100%;
}
.banks__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1199px) {
    .banks__wrap {
        margin-top: 30px;
    }
}
@media (max-width: 959px) {
    .banks .grid-3 {
        grid-template-columns: 1fr;
    }
}
.news .section-top {
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
}

.reviews .section-top {
    padding-right: 110px;
}
.reviews .rating-link {
    position: absolute;
    top: 0;
    right: 0;
}

.review-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
    width: 100%;
    aspect-ratio: 5 / 7;
}

.review-card a {
    display: block;
    width: 100%;
    height: 100%;
}
.review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 539px) {
    .review-card {
        border-radius: 10px;
    }
}
.step-card {
    min-height: 320px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 20px;

    background-image: linear-gradient(294.68deg, #FEEDD5 0%, #F9DCD5 50%, #ECEDF7 100%);
    background-size: 300% 200%;
    background-repeat: no-repeat;
}
.step-card:nth-child(1) { background-position: 0%   0%; }
.step-card:nth-child(2) { background-position: 50%  0%; }
.step-card:nth-child(3) { background-position: 100% 0%; }

.step-card:nth-child(4) { background-position: 0%   100%; }
.step-card:nth-child(5) { background-position: 50%  100%; }
.step-card:nth-child(6) { background-position: 100%  100%; }
.step-card--accent {
    background: #FA8676;
    color: #fff;
}

.step-card__num {
    margin-bottom: auto;
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    opacity: 0.4;
}

.step-card__title {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}

.step-card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FA8676;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
}
.step-card__icon img {
    width: 26px;
    height: 26px;
}

.step-card__btn {
    margin-top: auto;
}

@media (max-width: 959px) {
    .step-card {
        background-size: 200% 300%;
    }

    .step-card:nth-child(1) { background-position: 0%   0%; }
    .step-card:nth-child(2) { background-position: 100% 0%; }

    .step-card:nth-child(3) { background-position: 0%   50%; }
    .step-card:nth-child(4) { background-position: 100% 50%; }

    .step-card:nth-child(5) { background-position: 0%   100%; }
    .step-card:nth-child(6) { background-position: 100%  100%; }

    .step-card__title {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .step-card {
        background-size: 100% 500%;
        gap: 10px;
        padding: 15px;
        min-height: 227px;
        border-radius: 10px;
    }

    .step-card:nth-child(1) { background-position: 0%  0%; }
    .step-card:nth-child(2) { background-position: 0% 25%; }

    .step-card:nth-child(3) { background-position: 0%  50%; }
    .step-card:nth-child(4) { background-position: 0% 75%; }

    .step-card:nth-child(5) { background-position: 0%  100%; }
    .step-card:nth-child(6) { background-position: 0%  100%; }

    .step-card__title {
        font-size: 18px;
    }
    .step-card__num {
        font-size: 14px;
    }
}
.service-step .card__text a {
    color: var(--color-accent);
}
.service-step .card__text a:hover {
    color: var(--color-dark);
}
@media (max-width: 539px) {
    .step-card {
        min-height: 0;
    }
    .step-card__icon {
        margin-bottom: 20px;
    }
}
.quarantee__wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.quarantee-card {
    min-height: 320px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 20px;

background-image: linear-gradient(105.04deg, #A0BEF0 0%, #EAEFFB 100%);
    background-size: 400% 100%;
    background-repeat: no-repeat;
}
.quarantee-card:nth-child(1) { background-position: 0% 0%; }
.quarantee-card:nth-child(2) { background-position: 25% 0%; }
.quarantee-card:nth-child(3) { background-position: 50% 0%; }
.quarantee-card:nth-child(4) { background-position: 75% 0%; }

.quarantee-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 20px;
    margin: 0  0 40px auto;
    color: var(--color-blue);
}
.quarantee-card__icon img {
    width: 26px;
    height: 26px;
}

.quarantee-card__title {
    font-family: 'Unbounded', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}

.quarantee-card__text {
    font-size: 16px;
    line-height: 140%;
    opacity: 0.6;
}

@media (max-width: 1199px) {
    .quarantee__wrap {
        grid-template-columns: repeat(2,1fr);
    }
    .quarantee-card {
        background-size: 200% 300%;
    }
    .quarantee-card:nth-child(1) { background-position: 0%   0%; }
    .quarantee-card:nth-child(2) { background-position: 100% 0%; }

    .quarantee-card:nth-child(3) { background-position: 0%   50%; }
    .quarantee-card:nth-child(4) { background-position: 100% 50%; }

    .quarantee-card__title {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .quarantee__wrap {
        grid-template-columns: 1fr;
    }
    .quarantee-card {
        background-size: 100% 400%;
        gap: 10px;
        padding: 15px;
        min-height: 227px;
        border-radius: 10px;
    }

    .quarantee-card:nth-child(1) { background-position: 0%  0%; }
    .quarantee-card:nth-child(2) { background-position: 0% 25%; }

    .quarantee-card:nth-child(3) { background-position: 0%  50%; }
    .quarantee-card:nth-child(4) { background-position: 0% 75%; }

    .quarantee-card__title {
        font-size: 18px;
    }
    .quarantee-card__text {
        font-size: 14px;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    min-height: 420px;
    border: 1px solid var(--color-blue);
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.service-card__icon {
    width: 60px;
    height: 60px;
}
.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-card__title {
    font-family: 'Unbounded','Arial', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}
.service-card__text {
    opacity: 0.6;
}
.service-card__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 19px;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: auto;
}
.service-card__link::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.service-card__link:hover {
    color: var(--color-accent);
}
.service-card:has(.service-card__link:hover) {
    background-color: var(--color-light);
    border-color: transparent;
}
@media(max-width: 959px) {
    .service-card__title {
        font-size: 22px;
    }
}
@media(max-width: 539px) {
    .service-card {
        gap: 10px;
        padding: 15px;
        min-height: 311px;
        border-radius: 10px;
    }
    .service-card__link {
        font-size: 14px;
    }
    .service-card__title {
        font-size: 18px;
    }
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(1.2);
    visibility: hidden;
    opacity: 0;

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

    pointer-events: none;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal__wrapper {
    position: relative;

    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 30px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    backdrop-filter: blur(10px);
    opacity: 0.82;
    cursor: pointer;
}

.modal__content {
    position: relative;
    max-width: 460px;
    width: 100%;
    background: linear-gradient(285.04deg, #A0BEF0 0%, #EAEFFB 100%);
    border-radius: 18px;
    overflow: hidden;
    padding: 35px 40px 40px;
}

.modal__title {
    font-size: 30px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.modal__subtitle {
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    opacity: 0.6;
    margin: 0 0 20px;
}
.modal-form .form__wrap {
    grid-template-columns: 1fr;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: color 0.3s ease;
}

.modal__close:hover,
.modal__close:focus {
    color: var(--color-accent);
}

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.modal .form__btn {
    order: 2;
}
@media(max-width : 539px) {
    .modal__wrapper {
        padding: 15px;
    }
    
    .modal__content {
        padding: 15px;
    }
    
    .modal__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}


main:has(.info-page) {
    display: flex;
    flex-direction: column;
}

.info-page, .info-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.info-page__title {
    margin-bottom: 20px;
}

.info-page__subtitle {
    max-width: 700px;
    text-align: center;
    margin-bottom: 50px;
}

.info-page__btn {
    width: 250px;
}


.accept {
    position: fixed;
    bottom: 30px;
    left: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    background-color: #fff;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 120;
}

.accept.active {
    opacity: 1;
    visibility: visible;
}

.accept__btn {
    margin-left: auto;
    width: 80px;
}
.accept__text a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.accept__text a:hover {
    color: var(--color-accent);
}

@media(max-width : 539px) {
    .accept {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
}

.applications .card__icon {
    background: transparent;
}
.applications .card__icon img {
    width: 100%;
    height: 100%;
}
.person__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.person__img {
    width: 100%;
    aspect-ration: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
}
.person__img img {
    width:100%;
    height: 100%;
    object-fit: cover;
}
.person__title {
    margin-bottom: 20px;
}
.person__position {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-blue);
    margin-bottom: 50px;
}
.person__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.person__contact {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 120%;
}
.person__contact a:hover {
    color: var(--color-accent);
}
.person__contact svg {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    color: #BAC6E5;
}

@media(max-width : 959px) {
    .person__wrap {
        gap: 20px;
    }
}
@media(max-width : 767px) {
    .person__wrap {
        grid-template-columns: 1fr;
    }
}
@media(max-width : 539px) {
    .person__img {
        border-radius: 10px;
    }
    .person__position {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .person__contact {
        font-size: 14px;
    }
}
.block-img__wrap {
    align-items: center;
}
.block-img__wrap.reverse .block-img__img {
    order: 2;
}
.block-img__img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    
}
.block-img__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.block-img__img iframe {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 20px;
}
.noUi-target {
    background: #fff;
    border-radius: 12px;
    border: none;
    box-shadow: none;
}
.noUi-horizontal {
    height: 20px;
    margin: 10px 0;
}
.noUi-connects {
    border-radius: 12px;
}
.noUi-connect {
    background: #FA8676;
}
.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB;
}
.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    right: -15px;
    top: -5px;
}