:root {
    --color-dark: #222222;
    --color-accent: #12A39C;
    --color-navy: #054042;
    --color-light: #f8f8f8;
}

@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: 400;
    font-family: "Exo 2";
    font-display: swap;
    src: url("../fonts/Exo2-Regular.woff2") format("woff2"),
}
@font-face {
    font-style: normal;
    font-weight: 500;
    font-family: "Exo 2";
    font-display: swap;
    src: url("../fonts/Exo2-Medium.woff2") format("woff2"),
}
@font-face {
    font-style: normal;
    font-weight: 600;
    font-family: "Exo 2";
    font-display: swap;
    src: url("../fonts/Exo2-SemiBold.woff2") format("woff2"),
}
@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Exo 2";
    font-display: swap;
    src: url("../fonts/Exo2-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: 20px;
}

body {
    width: 100%;
    height: 100%;

    background-color: #fff;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: calc(100 * var(--vh, 1vh));
}

.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;
}

.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;
}

.mb-90 {
    margin-bottom: 90px;
}


@media(max-width: 959px) {
    .mb-90 {
        margin-bottom: 70px;
    }
}

@media(max-width: 767px) {
    .mb-90 {
        margin-bottom: 50px;
    }
}

.text-center {
    text-align: center;
}

.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;
    padding: 10px 20px;
    outline: none;
    border: none;
    font-family: 'Inter', 'Arial', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-align: center;
    min-height: 54px;
    width: 100%;
    background: var(--color-accent);
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    background-color: var(--color-navy);
}

.btn--navy {
    background-color: var(--color-navy);
}
.btn--navy:hover,
.btn--navy:focus {
    background-color: var(--color-accent);
}
.btn--white {
    background-color: #fff;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}
.btn--white:hover,
.btn--white:focus {
    background-color: var(--color-accent);
    color: #fff;
}

.grid-1 {
    display: grid;
    gap: 10px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 1199px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 959px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-2,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.title {
    font-family: 'Exo 2';
    font-size: 46px;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
    text-transform: uppercase;
    color: var(--color-navy);
}
@media(max-width: 1199px) {
    .title {
        font-size: 40px;
    }
}
@media(max-width: 959px) {
    .title {
        font-size: 32px;
    }
}

@media(max-width: 539px) {
    .title {
        font-size: 26px;
    }
}
.page-title {
    margin-bottom: 40px;
}

.text-content {
    font-size: 16px;
    line-height: 130%;
}

.text-content p {
    margin: 0 0 10px;
}

.text-content ul {
    margin: 0 0 10px;
    padding: 0 0 0 18px;
}

.text-content ul li {
    margin: 0 0 10px;
}

.text-content ul li::marker {
    color: var(--color-accent);
}

.text-content img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin: 40px 0;
}

@media(max-width: 767px) {
    .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__top.section__top--column {
    flex-direction: column;
}

.section--row .section__top {
    flex: 1;
    flex-direction: column;
    align-items: start;
    margin: 0;
}
.section__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    opacity: 0.8;
}

.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;
        flex: auto;
    }
    .section__top:has(.swiper-btns) {
        align-items: start;
    }

    .section--row .container {
        flex-direction: column;
    }
}

@media(max-width: 539px) {
    .section__top {
        margin-bottom: 20px;
    }
}

.breadcrumbs {
    list-style: none;
    margin: 14px 0 28px;
    padding: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a {
    font-size: 14px;
    line-height: 130%;
    opacity: 0.6;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs li::after {
    content: "/";
    padding: 0 12px;
}

.breadcrumbs li:last-child a {
    opacity: 1;
}

.breadcrumbs li:last-child::after {
    display: none;
}

@media(max-width: 959px) {
    .breadcrumbs {
        margin: 15px 0 30px;
    }
}

@media(max-width: 539px) {
    .breadcrumbs {
        margin: 10px 0 20px;
    }

    .breadcrumbs a {
        font-size: 14px;
    }
}

.swiper-btns {
    display: flex;
    gap: 20px;
}

.swiper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    color: #fff;
    width: 54px;
    height: 54px;
    background: var(--color-accent);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.swiper-btn:hover {
    color:  var(--color-accent);
    background: rgba(18, 163, 156, 0.12);
}

.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;
    width: 110px;
    height: 36px;
}

.logo a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo svg,
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo a:hover,
.logo a:focus {
    opacity: 0.5;
}

.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: 62px;
    margin-left: auto;
    padding: 20px;
    font: inherit;
    color: inherit;
    outline: none;
    background: #fff;
    border: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 16px;
    line-height: 130%;
}

.custom-input input::-webkit-input-placeholder {
    color: var(--color-dark);
    opacity: 0.6
}
.custom-textarea textarea::-webkit-input-placeholder {
    opacity: 0;
}

.custom-textarea textarea {
    border-radius: 20px;
    height: 100%;
    min-height: 139px;
}

.custom-textarea::before {
    content: 'Комментарий';
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.custom-textarea:has(textarea:not(:placeholder-shown))::before {
    opacity: 0;
}

.custom-input:has(.is-invalid) .input-error {
    margin-top: 5px;
}

.nav {
    display: flex;
    justify-content: center;
}

.nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px 38px;
}

.nav__link {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-dark);
}

.nav__item.active > .nav__link {
    color: var(--color-accent);
}

.nav__link:hover,
.nav__link:focus {
    color: var(--color-accent);
}

@media (max-width: 959px) {
    .nav {
        width: 100%;
        justify-content: flex-end;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
        margin-bottom: 60px;
    }
}

.header {
    width: 100%;
    z-index: 50;
}

.header__wrap {
    display: grid;
    grid-template-columns: 1fr minmax(max-content, 1fr) 1fr;
    align-items: center;
    gap: 40px;
    padding: 9px 30px;
    width: calc(100% + 60px);
    margin-top: 10px;
    margin-left: -30px;
    background-color: var(--color-light);
    border-radius: 20px;
}

.header__menu {
    flex: 1;
}

.header__mob {
    display: none;
}

.header__btns {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 20px;
    flex-shrink: 0;
}

.header__phone {
    flex-shrink: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.header__phone:hover {
    color: var(--color-accent);
}

.header__btn {
    min-height: 35px;
    max-width: 160px;
    font-size: 12px;
}

.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);
    transition: opacity 0.3s ease;
}

.header__overlay.show {
    opacity: 0.82;
    visibility: visible;
    z-index: 20;
}

.header__burger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    min-height: 40px;
    color: #fff;
}

.header__burger svg {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease;
}

@media (max-width : 1239px) {
    .header__wrap {
        grid-template-columns: auto 1fr auto;
    }
}
@media (max-width : 1199px) {
    .header__wrap {
        width: 100%;
        margin-left: 0;
    }
}


@media (max-width : 959px) {
    .header__wrap {
        position: relative;
        padding-right: 60px;
        padding-left: 10px;
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .header__btns {
        margin-left: auto;
    }

    .header__menu {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        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: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        flex:1;
    }

    .header__menu.is-active {
        opacity: 1;
        visibility: visible;
    }

    .header__mob {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header__mob .logo {
        margin-bottom: 28px;
    }
    
    .header__socials-desk.socials {
        display: none;
    }
    
    .header__socials-mob.socials {
        display: flex;
        align-self: flex-end;
        margin-bottom: 20px;
    }

    .header__burger {
        display: flex;
        z-index: 26;
    }

    .header__burger.is-open {
        position: fixed;
        top: 26px;
        right: 30px;
        transform: none;
    }

    .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 : 767px) {
    .header__phone,
    .header__btn {
        display: none;
    }
}

.card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--color-light);
    border-radius: 20px;
    padding: 20px;
    min-height: 205px;
    container-type: inline-size;
    container-name: card;
}
.card--double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.card--vertical {
    grid-template-columns: 1fr;
}
.card--triple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.card--quadruple {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

.card--double > .card__title,
.card--triple > .card__title {
    grid-column: 1 / -1;
}

.card--quadruple .card__imgs {
    flex-direction: column;
}
.card--col2 {
    grid-column: auto / span 2;
}
.card--long {
    grid-column: 1 / -1;
}
.card--white,
.card--double .card--white {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
}
.card--border {
    background-color: #fff;
    border: 5px solid var(--color-light);
}
.card__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    color: var(--color-accent);
}
.card--white .card__title {
    font-size: 20px;
    flex: 1;
}
.card__img {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.card__imgs-text {
    flex: 1;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: var(--color-accent);
    padding: 20px;
}
.card__img-text p {
    margin : 0 0 10px;
}
.card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 240px;
}
.card__img.img-right img {
    width: auto;
    object-position: bottom right;
}
.card__img-title {
    font-family: 'Exo 2', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-navy);
    padding: 20px 20px 8px;
    display: block;
}
.card__img-text {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.8;
    padding: 8px 20px 20px;
    display: block;
}
.card__imgs {
    flex: 1;
    display: flex;
    gap: 10px;
}
@container card (max-width: 500px) {
    .card__imgs:has(.card__imgs-text) {
        flex-direction: column;
    }
}
.card__imgs--white {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.card__text {
    opacity: 0.8;
    margin-top: auto;
}
.card__text-lg {
    font-weight: 700;
    font-size: 52px;
    line-height: 90%;
    color: var(--color-accent);
    opacity: 0.8;
    margin-top: auto;
}
.card__note {
    grid-column: 1 / -1;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    opacity: 0.4;
}
@media(max-width : 1239px) {
    .spiral-additional .grid-2 {
        grid-template-columns: 1fr;
    }
    .card--quadruple {
        grid-template-columns: repeat(2,1fr);
    }
    .card--quadruple .card__imgs {
        flex-direction: row;
    }
    .card--vertical {
        grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width : 959px) {
    .card__title {
        font-size: 22px;
    }
    .card__text-lg {
        font-size: 42px;
    }
    .card--col2 {
        grid-column: 1 / -1;
    }
    .card--quadruple .card__imgs {
        flex-direction: column;
    }
    .card--white .card__title {
        font-size: 18px;
    }
    .card--triple {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width : 539px) {
    .card {
        gap: 10px;
        border-radius: 10px;
        padding: 10px;
        min-height: 110px;
    }
    .card--double {
        grid-template-columns: 1fr;
    }
    .card--triple {
        grid-template-columns: 1fr;
    }
    .card--quadruple {
        grid-template-columns: 1fr;
    }
    .card--quadruple .card__imgs {
        flex-direction: row;
    }
    .card--vertical {
        grid-template-columns: 1fr;
    }
    .card__title {
        font-size: 18px;
    }
    .card--white .card__title {
        font-size: 14px;
    }
    .card__text-lg {
        font-size: 30px;
    }
    .card__img-text {
        font-size: 14px;
        padding: 5px 10px 10px;
    }
    .card__imgs {
        flex-direction: column;
    }
}

.products__purpose {
    grid-column: 1 / -1;
    background-color: var(--color-light);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
    padding: 20px;
}
.products__accent {
    grid-column: 1 / -1;
    background-color: var(--color-navy);
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    text-align: center;
}
.products-title {
    font-family: 'Exo 2';
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-accent);
}
@media(max-width: 959px) {
    .products__accent {
        order: 2;
    }
}
@media(max-width: 767px) {
    .products__accent {
        order: 0;
        font-size: 16px;
        padding: 10px;
        border-radius: 10px;
    }
}
.table {
    width: 100%; 
    background-color: var(--color-light);
    width: 100%;
    overflow: auto;
}
.table table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
}
.table tr {
    border-top: 1px solid var(--color-light);
}
.table tr:nth-child(even) {
    background-color: #fff;
    border-radius: 10px;
}
.table td {
    padding: 15px;
    opacity: 0.6;
    font-size: 16px;
    line-height: 130%;
}

@media(max-width: 959px) {
    .table td {
        min-width: 180px;
    }
}
@media(max-width: 539px) {
    .table td {
        padding: 10px;
    }
}
.price {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.price__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}
.price__btns .btn:last-child {
    grid-column: 1 / -1;
}
.price-list {
    grid-column: auto / span 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: var(--color-light);
    padding: 15px 10px;
    border-radius: 20px;
    width: 100%;
    overflow: auto;
    min-height: 289px;
}
.price-list__note {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    opacity: 0.4;
    margin-top: auto;
}
.price-block {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-light);
    display: grid;
    gap: 20px;
    padding: 20px;
}
.price-block__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-accent);
}
.price-block__title:not(:first-child) {
    margin-top: 20px;
}
.price-cards {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}
.price-cards .card__title {
    font-size: 20px;
}
.price-tables {
    margin: 0 -10px;
    gap: 0;
}
.price-table__img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 20px;
    background-color: #fff;
    padding: 25px;
    min-height: 120px;
}
.price-cards table:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: calc(100% - 15px);
    background: #054042;
    opacity: 0.2;
    border-radius: 10px;
}
.price-cards table:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: calc(100% - 15px);
    background: #054042;
    opacity: 0.2;
    border-radius: 10px;
}
.price-cards .price-table:nth-child(4n+4) table::after {
    content: none;
}
@media(max-width: 1239px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-tables {
        margin: 0;
    }
    .price-cards table::after {
        content: none;
    }
}
@media(max-width: 959px) {
    .price__btns {
        grid-template-columns: 1fr;
    }
    .price-list {
        grid-column: 1 / -1;
        order: 3;
    }
    .price-cards {
        grid-template-columns: 1fr;
    }
    .price-cards .card__title {
        font-size: 18px;
    }
}
@media(max-width: 539px) {
    .price {
        gap: 10px;
    }
    .price-list {
        border-radius: 10px;
        padding: 10px;
    }
    .price-cards .card__title {
        font-size: 14px;
    }
}
.card-col {
    display: grid;
    gap: 10px;
}
.shop__wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}
.shop__wrap > .card,
.shop__wrap > .card-col  {
    grid-column: auto / span 4;
}
.shop__wrap .card--border {
    grid-column: auto / span 4;
}
.shop__wrap .card--triple {
    grid-column: auto / span 8;
}
.shop__wrap .card--double {
    grid-column: auto / span 6;
}
.shop__wrap .price {
    grid-column: auto / span 4;
}
.shop__wrap .price-list {
    grid-column: auto / span 8;
}
@media(max-width: 1199px) {
    .shop__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .shop__wrap > .card,
    .shop__wrap > .card-col {
        grid-column: auto;
    }
    .shop__wrap .card--border {
        grid-column: auto ;
    }
    .shop__wrap .card--triple {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .shop__wrap .card--double {
        grid-column: 1 / -1;
    }
    .shop__wrap .price {
        grid-column: 1 / -1;
    }
    .shop__wrap .price-list {
        grid-column: 1 / -1;
    }
}
@media(max-width: 539px) {
    .shop__wrap {
        grid-template-columns: 1fr;
    }
}
.bg-light__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 20px;
}
.bg-light__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bg-light__text {
    flex: 1;
}
.bg-light__btn {
    max-width: 470px;
}
.bg-light__cards .card {
    background-color: #fff;
}
@media(max-width: 1199px) {
    .bg-light__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media(max-width: 539px) {
    .bg-light__wrap {
        padding: 10px;
        border-radius: 10px;
    }
}
.additional__wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}
.additional .card {
    grid-column: auto / span 3;
}
.additional .card:nth-child(1) {
    grid-column: auto / span 4;
}
.additional .card:nth-child(2) {
    grid-column: auto / span 3;
}
.additional .card:nth-child(3) {
    grid-column: auto / span 5;
}
.additional .card:nth-child(6n+4),
.additional .card:nth-child(6n+9) {
    grid-column: auto / span 6;
}
@media(max-width: 1199px) {
    .additional .card {
        grid-column: auto / span 4;
    }
    .additional .card:nth-child(1) {
        grid-column: auto / span 7;
    }
    .additional .card:nth-child(2) {
        grid-column: auto / span 5;
    }
    .additional .card:nth-child(3),
    .additional .card:nth-child(6n+4) {
        grid-column: auto / span 6;
    }
    .additional .card:nth-child(6n+9) {
        grid-column: auto / span 8;
    }
}
@media(max-width: 959px) {
    .additional .card,
    .additional .card:nth-child(1),
    .additional .card:nth-child(2),
    .additional .card:nth-child(3),
    .additional .card:nth-child(6n+4) {
        grid-column: auto / span 6;
    }
    .additional .card:nth-child(6n+9) {
        grid-column: 1 / -1;
    }
}
@media(max-width: 767px) {
    .additional .card,
    .additional .card:nth-child(1),
    .additional .card:nth-child(2),
    .additional .card:nth-child(3),
    .additional .card:nth-child(6n+4) {
        grid-column: 1 / -1;
    }
}
.classification__wrap {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}
.classification__wrap > .card {
    grid-column: auto / span 3;
}
.classification__wrap > .card:nth-child(1) {
    grid-column: auto / span 8;
    grid-template-columns: 2fr 1fr;
}
.classification__wrap > .card:nth-child(1) > .card .card__title {
    font-size: 20px;
}
.classification__wrap > .card:nth-child(2) {
    grid-column: auto / span 4;
}
.classification__wrap > .card:nth-child(6n+5),
.classification__wrap  > .card:nth-child(6n+6) {
    grid-column: auto / span 6;
}
@media(max-width: 1199px) {
    .classification__wrap > .card {
        grid-column: auto / span 4;
    }
    .classification__wrap > .card:nth-child(1) {
        grid-column: 1 / -1;
    }
    .classification__wrap > .card:nth-child(2) {
        grid-column: auto / span 8;
    }
    .classification__wrap > .card:nth-child(6n+5),
    .classification__wrap  > .card:nth-child(6n+6) {
        grid-column: auto / span 8;
    }
}
@media(max-width: 959px) {
    .classification__wrap > .card {
        grid-column: auto / span 6;
    }
    .classification__wrap > .card:nth-child(2),
    .classification__wrap > .card:nth-child(6n+5),
    .classification__wrap  > .card:nth-child(6n+6) {
        grid-column: 1 / -1;
    }
    .classification__wrap > .card:nth-child(1) > .card .card__title {
        font-size: 18px;
    }
}
@media(max-width: 767px) {
    .classification__wrap > .card {
        grid-column: 1 / -1;
    }
    .classification__wrap > .card:nth-child(1) {
        grid-template-columns: 3fr 2fr;
    }
    .classification__wrap > .card:nth-child(1) > .card .card__title {
        font-size: 14px;
    }
}
@media(max-width: 539px) {
    .classification__wrap > .card:nth-child(1) {
        grid-template-columns: 1fr;
    }
}
.product__wrap {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr;
    margin-bottom: 50px;
}

.product__gallery {
    width: 100%;
    grid-row: 1 / 3;
}

.product__slider {
    margin-bottom: 10px;
}

.product__slider .product__img {
    padding: 16px 61px;
    width: 100%;
    aspect-ratio: 553 / 387 ;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgba(217, 217, 217, 0.2);
}

.product__slider-mini .product__img {
    width: 145px;
    height: 103px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(217, 217, 217, 0.2);
    transition: border-color 0.3s ease;
}

.product__slider-mini .swiper-slide-thumb-active {
    border: 1px solid var(--color-accent);
}

.product__slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product__info {
    margin-left: 10px;
}

.product__title {
    margin-bottom: 21px;
    margin-left: 10px;
}
.product__price-block {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.product__price {
    font-family: 'Exo 2', 'Arial', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-accent);
}
.product__btn {
    max-width: 332px;
}
.product__note {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.6;
    margin-bottom: 10px;
    max-width: 460px;
}
.product__details {
    margin: 40px 0;
}
.product__details-title {
    font-size: 32px;
    line-height: 90%;
    margin-bottom: 20px;
}
.product__details-list {
    display: grid;
    grid-template-columns: auto auto;
    margin: 0;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
    gap: 15px 30px;
}
.product__details-list dt {
    opacity: 0.6;
}
.product__details-list dd {
    font-weight: 600;
    margin: 0;
}
.tabs__btns {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    overflow-x: auto;
}
.tabs__btn {
    position: relative;
    border: none;
    padding: 10px 20px;
    background: transparent;
    font-family: 'Inter', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
    color: var(--color-navy);
    transition: color 0.3s ease;
}

@media(max-width: 1199px) {
    .product__wrap {
        grid-template-columns: 100%;
    }
    .product__gallery {
        grid-row: auto;
        margin-bottom: 40px;
    }
    .product__title {
        margin: 0 0 40px;
    }
    .product__info {
        margin-left: 0;
    }
    .product__price {
        font-size: 46px;
    }
}
@media(max-width: 767px) {
    .product__price-block {
        flex-wrap: wrap;
    }
    .product__details-list {
        grid-template-columns: auto;
    }
    .product__details-list dd {
        margin-left: auto;
    }
    .product__price {
        font-size: 32px;
    }
    .product__slider .product__img {
        padding: 10px;
    }
}
@media(max-width: 539px) {
    .product__price {
        font-size: 26px;
    }
}
.tabs__btn.active,
.tabs__btn:hover {
    color: var(--color-accent);
}
.tabs__btn::after {
    content: '';
    background: var(--color-accent);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.tabs__btn.active::after,
.tabs__btn:hover::after {
    transform: scaleX(1);
}
.tabs__item {
    display: none;
}
.tabs__item.active {
    display: block;
}

.project-card {
    width: 100%;
    aspect-ratio: 136 / 66;
    border-radius: 20px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form {
    margin-bottom: 50px;
    min-height: 769px;
}

.form__wrap {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.form__img {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.form__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form__left {
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    background-image: url(/img/decor2.svg);
    background-repeat: no-repeat;
    background-position: bottom -87px right -114px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form__title {
    margin-bottom: auto;
}

.form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form__note {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.6;
    padding-left: 10px;
    align-self: center;
}

.form__note a {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
}

.form .custom-textarea {
    grid-column: 1 / -1;
}

@media(max-width: 1199px) {
    .form {
        min-height: 0;
    }
    .form__wrap {
        grid-template-columns: 1fr 1fr;
    }
    .form form {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 959px) {
    .form__wrap {
        grid-template-columns: 1fr;
    }
    .form__left {
        padding: 20px;
    }
    .form__img {
        max-height: 312px;
    }
}
@media(max-width: 539px) {
    .form__left {
        padding: 10px;
        border-radius: 10px;
    }
    .form__img {
        max-height: 180px;
        border-radius: 10px;
    }
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer__wrap {
    width: calc(100% + 60px);
    margin-bottom: 10px;
    margin-left: -30px;
    border-radius: 20px;
    background-color: var(--color-light);
    padding: 40px 30px 20px;
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    gap: 87px 135px;
    background-image: url(/img/decor.svg);
    background-repeat: no-repeat;
    background-position: bottom -40px right -40px;
}

.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__text {
    font-size: 16px;
    line-height: 130%;
}

.footer__link {
    font-size: 16px;
    line-height: 130%;
}

.footer__link:hover {
    color: var(--color-accent);
}
.footer__contact-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: var(--color-accent);
}
.footer__contact-link:hover {
    color: var(--color-navy);
}

.footer__copyright {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.6;
}

.footer__privacy {
    font-size: 12px;
    line-height: 130%;
    opacity: 0.6;
    grid-column: 1 / span 2;
}

.footer__privacy:hover {
    font-variant: var(--color-orange);
}

@media(max-width : 1369px) {
    .footer__wrap {
        gap: 50px;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width : 1199px) {
    .footer__wrap {
        gap: 50px;
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__privacy {
        grid-column: auto;
    }
    .footer__nav {
        grid-column: -2 /-1;
        grid-row: 1 / 3;
    }
}

@media(max-width : 767px) {
    .footer__wrap {
        grid-template-columns: 1fr;
        width: calc(100% + 20px);
        margin-left: -10px;
        padding: 40px 10px 20px;
    }
    .footer__nav {
        grid-row: auto;
        grid-column: auto;
    }
} 

.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;
}

@media(max-width : 539px) {
    .accept {
        bottom: 15px;
        left: 15px;
        width: calc(100% - 30px);
        padding: 20px;
    }
}

.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-color: var(--color-light);
    border-radius: 18px;
    overflow: hidden;
    padding: 35px 40px 40px;
}

.modal__content.tarif {
    max-width: 900px;
}

.modal__title {
    font-size: 30px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.tarif .modal__title {
    text-align: start;
    margin-bottom: 20px;
}

.modal__subtitle {
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    opacity: 0.6;
    margin-bottom: 20px;
}

.tarif .modal__subtitle {
    text-align: start;
    opacity: 1;
    font-weight: 500;
}

.modal__img {
    width: 118px;
    height: 118px;
    margin: 0 auto 40px;
}

.modal-form .btn {
    width: 100%;
}

.modal-form .custom-input,
.modal-form .custom-textarea {
    margin-bottom: 15px;
}

.modal-form .custom-input input,
.modal-form .custom-textarea textarea {
    border: none;
    background-color: #fff;
    color: #222;
    min-height: 58px;
    padding: 18px 20px;
}

.modal-form .custom-textarea textarea {
    min-height: 156px;
}


.modal-form .custom-input input::-webkit-input-placeholder,
.modal-form .custom-textarea textarea::-webkit-input-placeholder{
    opacity: 0.5;
    color: #222;
}

.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: opacity 0.3s ease;
}

.modal__close:hover,
.modal__close:focus {
    opacity: 0.8;
}

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

@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;
    }
}


[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 {
    background-color: var(--color-light);
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
}

.accordion__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: transparent;
    transition: color 0.3s ease;
    min-height: 69px;
    font-family: 'Exo 2','Arial', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--color-navy);
    transition: color 0.3s ease;
}

.accordion__button-text {
    text-align: start;
}

.accordion__icon {
    position: relative;
    display: block;
    width: 56px;
    height: 26px;
    background: rgba(18, 163, 156, 0.12);
    border-radius: 100px;
    transition: background-color 0.3s ease;
}

.accordion__icon::after,
.accordion__icon::before {
    content: '';
    display: block;
    width: 13px;
    height: 1.5px;
    background-color: var(--color-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition:  background-color 0.3s ease, opacity 0.3s ease;
}
.accordion__icon::before {
    width: 1.5px;
    height: 13px;
}
.accordion__element.is-active .accordion__icon {
    background-color: var(--color-accent);
}
.accordion__element.is-active .accordion__icon::after {
    background: #fff;
}
.accordion__element.is-active .accordion__icon::before {
    opacity: 0;
}
.accordion__element.is-active .accordion__button {
    color: var(--color-accent);
}

.accordion__wrapper {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 130%;
}

.accordion__wrapper p {
    margin: 0;
}

@media(max-width: 767px) {
    .accordion__button {
        padding: 20px;
        font-size: 24px;
    }
    .accordion__wrapper {
        font-size: 14px;
    }
}


.map {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.contacts__wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.contacts__list {
    background: var(--color-light);
    border-radius: 20px;
    padding: 40px;
    margin: 0;
    min-height: 486px;
}

.contacts__list dt {
    font-size: 12px;
    line-height: 120%;
    opacity: 0.8;
    margin-bottom: 3px;
}

.contacts__list dd {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    margin: 0 0 30px;
}

.contacts__list a {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
}

.contacts__list a:hover {
    color: var(--color-accent);
}

@media(max-width: 1199px) {
    .contacts__wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 959px) {
    .contacts__wrap {
       gap: 10px;
    }
}

@media(max-width: 767px) {
    .contacts__wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts__list {
        min-height: 0;
    }

    .contacts__list a {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

.numbers__item {
    display: flex;
    flex-direction: column;
}

.numbers__title {
    position: relative;
    font-size: 72px;
    line-height: 90%;
    margin-bottom: 20px;
    text-transform: none;
    padding: 0 14px;
    width: fit-content;
}

.numbers__title::after,
.numbers__title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    position: absolute;
}
.numbers__title::before {
    top: 0;
    left: 0;
}
.numbers__title::after {
    right: 0;
    bottom: 0;
}
.numbers__text {
    font-size: 16px;
    line-height: 130%;
    max-width: 273px;
}
@media(max-width: 1199px) {
    .numbers__title {
        font-size: 52px;
    }
}
@media(max-width: 767px) {
    .numbers__item:nth-child(2) {
        align-items: center;
    }
    .numbers__item:nth-child(3n+3) {
        align-items: end;
    }
    .numbers__title {
        font-size: 40px;
    }
}
@media(max-width: 539px) {
    .numbers__title {
        font-size: 36px;
    }
}

.advantages {
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    gap: 10px;
}

.advantage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    background: var(--color-light);
    border-radius: 20px;
    padding: 30px;
    gap: 15px;
    overflow: hidden;
    grid-column: auto / span 6;
}
.advantage-card:nth-child(6n+4) {
 grid-column: auto / span 8;
}
.advantage-card:nth-child(6n+5),
.advantage-card:nth-child(6n+6) {
    grid-column: auto / span 5;
}

.advantage-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantage-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(18, 163, 156, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}
.advantage-card__icon svg,
.advantage-card__icon img  {
    width: 32px;
    height: 32px;
}
.advantage-card__title {
    font-weight: 600;
    font-size: 24px;
    text-transform: none;
}
.advantage-card__text {
    font-size: 16px;
    line-height: 130%;
}
@media(max-width: 959px) {
    .advantage-card {
        grid-column: auto / span 9;
    }

    .advantage-card:nth-child(6n+1),
    .advantage-card:nth-child(6n+4) ,
    .advantage-card:nth-child(6n+5) {
        grid-column: auto / span 10;
    }

    .advantage-card:nth-child(6n+2),
    .advantage-card:nth-child(6n+3),
    .advantage-card:nth-child(6n+6) {
        grid-column: auto / span 8;
    }  
}
@media(max-width: 959px) {
    .advantage-card:nth-child(6n+1),
    .advantage-card:nth-child(6n+4) ,
    .advantage-card:nth-child(6n+5),
    .advantage-card:nth-child(6n+2),
    .advantage-card:nth-child(6n+3),
    .advantage-card:nth-child(6n+6) {
        grid-column: auto / span 18;
    }  
}
.calculate__wrap  {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.calculate__img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.calculate__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calculate__right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    background-image: url(/img/decor3.svg);
    background-repeat: no-repeat;
    background-position: bottom -183px right -96px;
}

.calculate__text {
    font-size: 16px;
    line-height: 130%;
    margin-bottom: auto;
}
@media(max-width: 959px) {
    .calculate__wrap  {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 539px) {
    .calculate__right {
        padding: 20px;
    }
}
.card-img {
    width: 100%;
    aspect-ratio: 333 / 200;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    padding: 6px 16px;
    transition: border-color 0.3s ease;
}

.card-img:hover {
    border-color: var(--color-accent);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video {
    position: relative;
    width: 100%;
    aspect-ratio: 136 / 76;
    border-radius: 20px;
    overflow: hidden;
}

.video video,
.video img,
.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(34,34,34,0.82);
    z-index: 2;
}
.video__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    width: 155px;
    height: 155px;
    padding: 0;
    box-shadow: 0 0 0 17px rgba(255,255,255,0.2);
}
.video__btn svg {
    width: 44%;
    height: 44%;
}

@media(max-width: 767px) {
    .video__btn {
        width: 55px;
        height: 55px;
    }
}

.catalog-slider .swiper {
    flex: 2;
}

@media(max-width: 767px) {
    .catalog-slider .swiper {
        width: 100%;
    }
}

.catalog-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 20px;
    overflow: hidden;
}

.catalog-card__img {
    width: 100%;
    aspect-ratio: 447 / 333;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgba(217, 217, 217, 0.2);
    padding: 14px 5px;
    max-height: 306px;
}
.catalog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.catalog-card__info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}
.catalog .catalog-card__info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.catalog-card__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-transform: none;
}
.catalog-card__link {
    font-size: 16px;
    line-height: 130%;
    color: #000000;
    transition: color 0.3s ease;
}
.catalog-card__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.catalog-card__link:hover {
    color: var(--color-accent);
}
.promo {
    margin-top: 10px;
}
.promo__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.promo__img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.promo__img .promo__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo__decor {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.promo__info {
    width: calc(100% + 30px);
    margin-left: -30px;
    border-radius: 20px;
    background-color: var(--color-light);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 711px;
}

.promo__title {
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
}
.promo__text {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    margin-bottom: 30px;
    max-width: 550px;
}

.promo__btn {
    max-width: 356px;
    margin-bottom: 40px;
}

.promo .features {
    margin-top: auto;
}
@media(max-width: 1199px) {
    .promo__title {
        font-size: 50px;
    }
    .promo__info {
        width: 100%;
        margin-left: 0;
    }
}
@media(max-width: 959px) {
    .promo__title {
        font-size: 46px;
    }
    .promo__wrap {
        grid-template-columns: 1fr;
    }
    .promo__img {
        display: none;
    }
    .promo__info {
        width: calc(100% + 20px);
        margin-left: -10px;
        padding: 40px 10px;
        min-height: auto;
    }
}
@media(max-width: 539px) {
    .promo__title {
        font-size: 30px;
    }
}
.promo-slider__wrap {
    position: relative;
    width: calc(100% + 60px);
    margin: 0 -30px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0,0,0,0.4);
}
.promo-slider__item {
    position: relative;
    min-height: 775px;
    color: #fff;
    padding: 30px;
}
.promo-slider__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.promo-slider__img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-slider__title {
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 60px;
    color: #fff;
    max-width: 970px;
}
.promo-slider .swiper-btns {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 5;
}
.promo-slider .swiper-btn {
    background: #fff;
    color: var(--color-accent);
}
.promo-slider .swiper-btn:hover {
    background: rgba(18, 163, 156, 0.12);
    color: var(--color-accent);
}
@media(max-width: 1199px) {
    .promo-slider__wrap {
        width: 100%;
        margin: 0;
    }
    .promo-slider__title {
        font-size: 50px;
        max-width: 716px;
    }
}
@media(max-width: 959px) {
    .promo-slider__item {
        min-height: 584px;
        padding: 20px;
    }
    .promo-slider__title {
        font-size: 42px;
    }
    .promo-slider .swiper-btns {
        bottom: 20px;
        left: 20px;
    }
}
@media(max-width: 539px) {
    .promo-slider__wrap {
        border-radius: 10px;
    }
    .promo-slider__item {
        min-height: 470px;
        padding: 10px;
    }
    .promo-slider__title {
        font-size: 32px;
    }
    .promo-slider .swiper-btns {
        bottom: 10px;
        left: 10px;
    }
}

.features {
    display: flex;
    gap: 10px;
}
.features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.features__icon {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}
.features__text {
    font-size: 16px;
    line-height: 130%;
}

@media(max-width: 539px) {
    .features {
        flex-direction: column;
    }
    .features__item {
        flex-direction: row;
        text-align: left;
    }
    .features__icon {
        margin-bottom: 0;
    }
    .features__text {
        font-size: 14px;
    }
}

.partner-card {
    width: 100%;
    aspect-ratio: 333 / 160;
    background: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partner-card img {
    max-width: 250px;
}

.company__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.company__img {
    width: 100%;
    aspect-ratio: 675 / 490;
    border-radius: 20px;
    overflow: hidden;
}

.company__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company__info {
    display: flex;
    flex-direction: column;
}

.company__text {
    margin-top: auto;
}

@media(max-width: 959px) {
    .company__wrap {
        grid-template-columns: 1fr;
    }
}
.blog-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 20px;
    overflow: hidden;
}
.blog-card__img {
    width: 100%;
    aspect-ratio: 437 / 239;
    border-radius: 20px;
    overflow: hidden;
}
.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card__info {
    padding: 20px;
}
.blog-card__date {
    font-size: 14px;
    line-height: 17px;
    opacity: 0.8;
    margin-bottom: 15px;
}
.blog-card__link {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
}
.blog-card__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.blog-card__link:hover {
    color: var(--color-accent);
}

.paginations {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.paginations__item a {
    display: block;
    padding: 18.5px 20px;
    background: #F8F8F8;
    border-radius: 20px;
    font-weight: 600;
    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: 767px) {
    .paginations {
        justify-content: center;
    }

    .paginations__item {
        font-size: 14px;
    }
}

.page-content {
    max-width: 1018px;
}

.page-date {
    font-size: 14px;
    line-height: 120%;
    margin-bottom: 15px;
}
