:root {
    --color-dark: #1a1b1e;
    --color-accent: #015aff;
    --color-gray: #555;
}
@font-face {
    font-style: normal;
    font-weight: 200;
    font-family: "Stolzl";
    font-display: swap;
    src: url("../fonts/Stolzl-Thin.woff2") format("woff2"),
}

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

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

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

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

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

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

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "DM Sans";
    font-display: swap;
    src: url("../fonts/DMSans-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: "Stolzl", "Arial", sans-serif;
    color: var(--color-dark);
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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;
}

.mb-120 {
    margin-bottom: 120px;
}
.mb-45 {
    margin-bottom: 45px;
}

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

@media(max-width: 767px) {
    .mb-120 {
        margin-bottom: 50px;
    }
}

.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: 959px) {
    .container {
        padding: 0 15px;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 20px;
    outline: none;
    border: none;
    font-family: 'Stolzl', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    text-align: center;
    min-height: 55px;
    width: 100%;
    background: var(--color-accent);
    box-shadow: 0 7px 25px rgba(1, 90, 255, 0.2);
    border-radius: 30px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn:hover,
.btn:focus {
    background-color: #0148CC;
    color: #fff
}
.btn--white {
    color: var(--color-dark);
    background-color: #fff;
}

.link {
    position: relative;
}
.link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.link:hover:after,
.link.active::after {
    transform: scaleX(1);
}

.bg-light {
    position: relative;
    padding: 120px;
    background-color: #f9f9f9;
}

@media (max-width:1199px) {
    .bg-light {
        padding: 50px;
    }
}
@media (max-width:539px) {
    .bg-light {
        padding: 50px 0;
    }
}

.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;
}

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

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

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

.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);
}

.socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}
.socials__item {
    width: 25px;
    height: 25px;
}
.socials__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: inherit
}
.socials__item svg {
    width: 15px;
    height: 15px;
}
.socials__item a:hover {
    opacity: 0.7;
}

.page-top {
    padding: 120px 0 25px;
    background-color: #f9f9f9;
}
.page-top .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}
.page-title {
    font-size: 56px;
    line-height: 110%;
    font-weight: 500;
    margin:  0;
}
@media (max-width:959px) {
    .page-title {
        font-size: 38px;
    } 
}
@media (max-width:539px) {
    .page-title {
        font-size: 26px;
    } 
    .page-top {
        padding: 150px 0 50px;
    }
}
.page-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: start;
    gap: 30px;
}
@media(max-width: 959px) {
    .page-wrap {
        grid-template-columns: 1fr;
    }
}
.title {
    font-weight: 500;
    font-size: 46px;
    line-height: 120%;
    margin: 0 0 45px;
}
@media (max-width:959px) {
    .title {
        font-size: 32px;
    } 
}
@media (max-width:539px) {
    .title {
        font-size: 24px;
    } 
}
.subtitle {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.9;
    margin-bottom: 20px;
}

@media (max-width:539px) {
    .subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    } 
}
.text-center {
    text-align: center;
}
.text-content {
    font-family: 'DM Sans', 'Arial', sans-serif;
    font-size: 17px;
    line-height: 140%;
}

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

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

.text-content li {
    margin: 0 0 15px;
}
.text-content ul li::marker {
    content: '\2014 ';
}

.text-content iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9
}

.text-content img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin: 40px 0;
}
.text-content a {
    color: var(--color-accent);
}
.text-content a:hover {
    color: var(--color-dark);
}
.text-content table {
    border-collapse: collapse;
    border: 0;
}
.text-content td {
    border: 0;
    padding: 12px;
}
.text-content tr:nth-child(odd) > td {
    background-color: #f9f9f9;
}
.text-content table {
    border: 0;
}
.aside {
    position: sticky;
    top: 120px;
    width: 100%;
    max-width: 410px;
    height: fit-content;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
}
.aside__title {
    font-size: 19px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 30px;
}
.aside ul {
    padding-left: 25px;
}
.aside__link {
    display: block;
    font-size: 17px;
    line-height: 140%;
    margin-bottom: 15px;
}
.aside__link:hover {
    color: var(--color-accent);
}

@media(max-width: 959px) {
   .aside {
        position: relative;
        top: 0;
        max-width: 100%;
    } 
}
.img-block {
    position: relative;
    color: #fff;
    background-color: var(--color-gray);
}
.img-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 75px;
    -webkit-mask: url(/assets/theme/img/wave.svg) bottom / 100% 100% no-repeat;
    mask: url(/assets/theme/img/wave.svg) bottom / 100% 100% no-repeat;
    background-color: #fff;
    z-index: 4;
}
.img-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.img-block__bg::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34,31,40,0.62);
    z-index: 2; 
}
.img-block__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0;
}
.img-block__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px 0;
    gap: 12px;
    z-index: 3;
}
.img-block .btn {
    max-width: 140px;
}
.category__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
}

@media(max-width: 1199px) {
    .category__list {
        grid-template-columns: repeat(2,1fr);
    }   
}
@media(max-width: 959px) {
    .category__list {
        grid-template-columns: repeat(3,1fr);
    }   
}
@media(max-width: 767px) {
    .category__list {
        grid-template-columns: repeat(2,1fr);
    }   
}
@media(max-width: 539px) {
    .category__list {
        grid-template-columns: 1fr;
    }   
}

.category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.category-card__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.category-card__img::after {
    content: '';
    display: block;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
.category-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-card__link {
    width: 100%;
    min-height: 186px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-size: 25px;
    line-height: 120%;
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: #fff;
    transform: translateY(25px);
    transition: transform 0.3s ease;
    z-index: 3;
}
.category-card__link span {
    display: block;
    margin-top: 20px;
    opacity: 0;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}
.category-card__link:hover {
    transform: translateY(0);
}
.category-card__link:hover span {
    opacity: 1;
}
.category-card:has(.category-card__link:hover) .category-card__img img {
    transform: scale(1.05);
}
.categories__wrap {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}
/* .categories .category-card__link {
    aspect-ratio: 1 / 1;
    height: auto;
} */
.categories .category-card:nth-child(1) {
    grid-row: 1 / 3;
}
.categories .category-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}
@media(max-width: 1199px) {
    .categories__wrap {
        grid-template-columns: 1fr 1fr;
    } 
    .categories .category-card:nth-child(1),
    .categories .category-card:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }
}
@media(max-width: 539px) {
    .categories__wrap {
        grid-template-columns: 1fr;
    }   
}

.new-card {
    position: relative;
    overflow: hidden;
}
.new-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 25px;
}
.new-card__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.new-card__meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}
.new-card__cat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 120%;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.new-card__cat::before {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--color-dark);
}
.new-card__date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 120%;
    color: #888;
}
.new-card__date::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #888;
}
.new-card__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 15px;
}
.new-card__text {
    font-size: 17px;
    line-height: 150%;
    color: var(--color-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.new-card__link {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 15px;
}
.new-card__link:after {
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;   
}
.new-card__link-anim {
    position: relative;
    display: block;
    width: fit-content;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.new-card__link-anim svg {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translate(100%,-50%);
    width: 22px;
    height: 22px;
}
.new-card:has(.new-card__link:hover) .new-card__img img {
    transform: scale(1.05);
}
.new-card__link:hover .new-card__link-anim {
    transform: translateX(0);
}
.news .new-card:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}
.news .new-card:first-child .new-card__title {
    font-size: 35px;
}
.news .new-card:first-child .new-card__link {
    opacity: 0;
}
.news .new-card__meta {
    display: none;
}
.news__btn {
    max-width: 160px;
    margin: 0 auto;
}
.articles .new-card__text,
.articles .new-card__link-anim,
.blog .new-card__text,
.blog .new-card__link-anim  {
    display: none;
}

@media(max-width: 1199px) {
    .new-card:nth-child(n + 4) {
        display: none;
    }
}
@media(max-width: 767px) {
    .news .new-card:first-child {
        grid-column: auto;
        grid-row: auto;
    }
    .news .new-card:first-child .new-card__title {
        font-size: 20px;
    }
}
.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;
    width: 90px;
    height: 68px;
}

.logo a {
    display: flex;
}
.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 {
    position: relative;
    width:100%;
    display: flex;
    flex-direction: column;
    padding: 0 0 15px 36px;
    border-bottom: 1px solid rgba(26,27,30,0.2); 
}
.custom-input label::after,
.custom-textarea label::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-dark);
    z-index: 2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: 0 0;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    padding: 0;
    font: inherit;
    color: inherit;
    outline: none;
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 150%;
}

.custom-input input::-webkit-input-placeholder,
.custom-textarea textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.6;
}

.custom-input__icon,
.custom-textarea__icon {
    position: absolute;
    width: 28px;
    height: 28px;
    top: 0;
    left: 0;
}
.custom-input__icon svg,
.custom-textarea__icon svg {
    width: 100%;
    height: 100%;
}
.custom-input label:hover::after,
.custom-textarea label:hover::after,
.custom-input label:has(input:focus)::after,
.custom-textarea label:has(input:focus)::after {
    transform: scaleX(1);
}
.custom-input input.error::-webkit-input-placeholder {
    color: var(--color-dark);
}
.custom-input .ajax_form  input.error {
    color: inherit;
}
.input-error {
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: translateY(100%);
}
.ajax_form .error_g-recaptcha-response .error,
.ajax_form .input-error .error {
    color: #ff5b4a;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
}
.custom-input:has(input.error) label {
    border-color: #ff5b4a; 
}
.custom-input:has(.input-error) label::after {
    content: none;
}

.custom-input__addon {
    background: var(--color-dark);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.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 {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
 }

  .custom-toggle label::after {
    content: '';
    display: flex;
    position: absolute;
    top: 7px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    outline: 1px solid var(--color-dark);
    outline-offset: 3px;
    transition: backgound-color 0.3s ease;
 }

.custom-toggle__label {
    font-size: 14px;
    line-height: 150%;
    color: var(--color-gray);
}

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

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

.custom-toggle:has(input:checked) label::after {
    background-color: var(--color-dark);
}

.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.nav__link {
    font-size: 14px;
    line-height: 120%;
    color: inherit;
}

@media (max-width: 959px) {
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .nav__link {
        font-size: 24px;
        color: #d4d4d4;
    }
}

.header {
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 15px;
    z-index: 10;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    color: var(--color-dark);
    animation: slideDown 0.4s ease forwards;
    z-index: 100;
}

.header.hide {
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.header__wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__logo {
    position: relative;
    margin-right: auto;
    z-index: 150;
}

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

.header__burger {
    flex-shrink: 0;
    position: relative;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    padding: 0;
    border: none;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
    transition: color 0.3s ease;
}
.header__burger svg {
    width: 100%;
    height: 100%;
}
.header__burger:hover {
    color: var(--color-accent);
}
.header__close {
    position: fixed;
    top: 30px;
    right: 30px;
    display: none;
    border: none;
    background: transparent;
    padding: 0;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #fff;
}
.header__close svg {
    width: 19px;
    height: 19px;
    transform-origin: center;
    transition: transform 0.3s ease;
}
.header__close:hover svg {
    transform: rotate(180deg);
}
.header__socials {
    padding: 20px 0;
    display: none;
    color: inherit;
}

.header--black {
    background-color: transparent;
    border-color: transparent;
    color: #fff;
    padding-top: 25px;
}
.header--black.sticky {
    padding-top: 15px;
}
.header--black .header__logo {
    filter: brightness(0) invert(1);
}
.header--black .language {
    background-color: var(--color-dark);
}
.header--black .link::after {
    background-color: #fff;
}

.header--black.sticky .header__logo {
    filter: none;
}
.header--black.sticky .language {
    background-color: #fff;
}
.header--black.sticky .link::after {
    background-color: var(--color-dark);
}


@media (max-width : 959px) {
    .header__btns {
        margin-left: auto;
    }

    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        background-color: var(--color-dark);
        color: #fff;
        z-index: 25;
        padding: 140px 30px 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .header__nav.is-active {
        opacity: 1;
        visibility: visible;
    }
    .header__burger {
        display: flex;
    }
    .header__close {
        display: flex;
    }
    .header--black {
        padding-top: 15px;
    }

    .header__socials {
        width: 100%;
        position: relative;
        display: flex;
        margin-top: auto;
    }
    .header__socials::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background-color: #d4d4d4;
        transform: scaleX(0);
        transition: transform 0.3s ease-out;
        transform-origin: left;
        transition-delay: 0.5s;
    }
    .header__nav.is-active .header__socials::after {
        transform: scale(1);
    }
}

@media(max-width : 579px) {
    .header__phone,
    .header__btn {
        display: none;
    }
}

.lang {
    position: relative;
}

.lang__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.lang__btn img {
    width: 34px;
    height: 34px;
}
.language {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100px;
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.language__img {
    width: 34px;
    height: 34px;
}
.lang.open .language {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.cart-link {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    color: inherit;
}
.cart-link svg {
    width: 100%;
    height: 100%;
}
.cart-link__count {
    position: absolute;
    bottom: -3px;
    right: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    width: 18px;
    height: 18px;
    background-color: var(--color-accent);
    color: #fff;
}
.cart-link:hover {
    color: var(--color-accent);
}
.search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border: none;
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
}
.search__btn svg {
    width: 100%;
    height: 100%;
}
.search__btn:hover {
    color: var(--color-accent);
}
.search__panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: var(--color-dark);
    transform: translateY(-100%);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 120;
}
.search__panel.active {
    transform: translateY(0);
}
.search__wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50vh;
    padding: 100px 0;
}
.search form {
    width: 100%;
}
.search__input {
    width: 100%;
}
.search__input label {
    padding: 0 40px 15px 0;
}
.search__input .search__btn {
    position: absolute;
    right: 0;
    top: 0;
}
.search__close {
    position: absolute;
    top: 36px;
    right: 0;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.search__close svg {
    width: 26px;
    height: 26px;
}
.search__close:hover {
    transform: rotate(180deg);
}
.header--black  .search__panel {
    background-color: var(--color-dark);
    color: #fff;
}
.header--black  .search__input label {
    border-color: rgba(255,255,255, 0.4);
}
.header--black  .search__input label::after {
    background-color: #fff;
}
.header--black.sticky  .search__panel {
    color: var(--color-dark);
    background-color: #fff;
}
.header--black.sticky  .search__input label {
    border-color: rgba(26, 27, 30, 0.2);
}
.header--black.sticky .search__input label::after {
    background-color: var(--color-dark);
}
.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.breadcrumbs a {
    position: relative;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.breadcrumbs a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.breadcrumbs a:hover:after {
    transform: scaleX(1);
}

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

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

.breadcrumbs li:last-child::after {
    display: none;
}

@media(max-width: 959px) {

}

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

.product__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    min-width: 0;
}

.product__gallery {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    min-width: 0;
    min-height: 0;
}
.product__slider {
    width: 100%;
}

.product__img {
    width: 100%;
}
.product__img a {
    display: block;
    width: 100%;
    aspect-ratio: 670 / 500;
}
.product__img img {
    height: 100%;
    width: 100%;
    user-select: none;
    object-fit: contain;
}

.product__slider-mini .product__img {
    width: 110px;
    height: 110px;
    cursor: pointer;
}
.product__slider-mini .product__img img {
    object-fit: cover;
}

.product__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product__detail {
    font-size: 19px;
    line-height: 130%;
}

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

.product__title {
    font-size: 62px;
    line-height: 90%;
    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: 'Coolvetica', 'Arial', sans-serif;
    font-size: 52px;
    line-height: 90%;
    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;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-card__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}
.product-card__arrow  svg {
    width: 16px;
    height: 16px;
}
.product-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 630 / 504;
    border-radius: 14px;
    overflow: hidden;
}
.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card__title {
    font-size: 19px;
    line-height: 130%;
    flex: 1;
}
.product-card__link {
    max-width: 180px;
}
.product-card__link::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.product-card:has(.product-card__link:hover) .product-card__img img {
    transform: scale(1.05);
}
.product-card:has(.product-card__link:hover) .product-card__arrow {
    opacity: 1
}
.products__btn {
    max-width: 210px;
    margin: 0 auto;
}
.tabs__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}
.tabs__btn {
    position: relative;
    border: none;
    padding: 10px 20px;
    background: #f9f9f9;
    font-family: 'Stolzl', 'Arial', sans-serif;
    min-height: 60px;
    cursor: pointer;
    color: var(--color-dark);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
    min-width: 278px;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 2px solid transparent;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
.tabs__btn:hover,
.tabs__btn.active {
    background-color: #fff;
    border-color: var(--color-dark);
}
.tabs__item {
    display: none;
}
.tabs__item.active {
    display: block;
}
.tabs__title {
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 30px;
    font-weight: 500;
}

@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;
    }
}
@media(max-width: 767px) {
    .product__price-block {
        flex-wrap: wrap;
    }

    .product__title {
        font-size: 44px;
    }
    .product__details-list {
        grid-template-columns: auto;
    }
    .product__details-list dd {
        margin-left: auto;
    }
}
@media(max-width: 539px) {
    .product__gallery {
        grid-template-columns: 1fr;
    }
    .product__slider-mini {
        display: none;
    }
}
.catalog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.catalog-card__arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}
.catalog-card__arrow  svg {
    width: 16px;
    height: 16px;
}
.catalog-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
}
.catalog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.catalog-card__title {
    font-size: 19px;
    line-height: 130%;
    flex: 1;
}
.catalog-card__title::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.catalog-card:has(.catalog-card__title:hover) .catalog-card__img img {
    transform: scale(1.05);
}
.catalog-card:has(.catalog-card__title:hover) .catalog-card__arrow {
    opacity: 1;
}
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #1f2228;
    color: #d4d4d4;
}
.about__img {
    width: 100%;
    height: 100%;
}
.about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__info {
    padding: 100px;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about .title {
    margin-bottom: 15px;
}
.about__text {
    margin-bottom: 45px;
}
.about__features {
    display: flex;
    gap: 30px;
}

@media(max-width: 959px) {
    .about {
        grid-template-columns: 1fr;
    }
    .about__info {
        padding: 50px;
        max-width: 100%;
    }
}
@media(max-width: 767px) {
    .about__features {
        flex-direction: column;
    }
}
@media(max-width: 539px) {
    .about__info {
        padding: 50px 15px;
    }
}
.feature {
    font-family: "DM Sans", 'Arial', sans-serif;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 15px;
}
.feature__img {
    width: 60px;
    height: 60px;
    grid-row: 1 / 3;
}
.feature__img img {
    width: 100%;
    height: 100%;
}
.feature__title {
    font-size: 20px;
    line-height: 120%;
    font-weight: 500;
}
.feature__text {
    font-size: 17px;
    line-height: 140%;
}

.form__wrap {
    display: grid;
    gap: 40px 30px;
    grid-template-columns: 1fr 1fr;
}
.form__wrap .custom-textarea {
    grid-column: 1 / -1;
}
.form__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 30px;
}
.form__btn {
    width: 160px;
}

@media(max-width: 539px) {
    .form__wrap {
        grid-template-columns: 1fr;
    }  
    .form__bottom {
        flex-direction: column;
        align-items: start;
    }  
}
.contacts__wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contacts__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 30px;
}
.contacts__item {
    display: flex;
    gap: 15px;
}
.contacts__icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}
.contacts__text {
    font-size: 16px;
    line-height: 150%;
}

.contacts__text p {
    margin: 0;
}
.contacts__info p:last-child {
    margin: 0;
}
.contacts__info a {
    font-size: 20px;
}
.contacts__info a:hover {
    color:  var(--color-accent);
}

@media(max-width: 959px) {
    .contacts__wrap {
        grid-template-columns: 1fr;
    }  
}
.map {
    width: 100%;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
}

.footer {
    position: relative;
    overflow: hidden;
}
.footer__wrap {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 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__text {
    font-size: 17px;
    line-height: 140%;
}
.footer__text p {
    margin: 0;
}
.footer__link {
    font-size: 16px;
    line-height: 130%;
    opacity: 0.6;
    width: fit-content;
}
.footer__link.active,
.footer__link:hover {
    opacity: 1;
}
.footer__copyright {
    font-size: 17px;
    line-height: 130%;
    opacity: 0.6;
}
.footer__subscribe .form__btn {
    min-height: 40px;
}
.footer__subscribe .form__accept {
    margin-top: 20px;
}

@media(max-width : 959px) {
    .footer__wrap {
        grid-template-columns: 1fr 1fr;
    }
    .footer__form {
        grid-column: 1 / -1;
    }
}

@media(max-width : 539px) {
    .footer__wrap {
        grid-template-columns: 1fr;
    }
} 
[data-show-content] {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
[data-show-content]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
    transition: opacity 0.3s ease;
}
[data-show-content].open::after {
    opacity: 0;
}
[data-show-btn] {
    max-width: 200px;
    margin: 0 auto;
}

[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;
    width: 56px;
    height: 26px;
    transition: background-color 0.3s ease;
    width: 34px;
    height: 34px;
    background: #BAC6E5;
    border-radius: 20px;
    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: 767px) {
    .accordion__button {
        font-size: 20px;
    }
    .accordion__wrapper {
        font-size: 14px;
    }
}


.promo {
    position: relative;
    overflow: hidden;
}
.promo__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.promo__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo__bg::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(34,31,40,0.7);
    z-index: 1;
}
.promo__wrap {
    display: flex;
    flex-direction: column;
    padding: 180px 0 120px;
    min-height: 100vh;
    color: #fff;
}
.promo__contacts {
    position: absolute;
    top: 5px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgb(121, 124, 127);
    font-size: 12px;
    line-height: 120%;
    z-index: 15;
}
.promo__contact {
    display: flex;
    align-items: center;
    gap: 5px;
}
.promo__contact a {
    color: inherit;
}
.promo__contact a:hover {
    color: #fff;
}
.promo__contact svg {
    width: 15px;
    height: 15px;
}

.promo__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 125%;
    margin: 0 0 20px;
}

.promo--main .promo__title {
    font-size: 50px;
    margin-bottom: 50px;
}

.promo__categories {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: auto;
}
.promo__text {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: auto;
    opacity: 0.8;
    max-width: 1124px;
}
.promo__text p {
    margin: 0 0 12px;
}

.promo__btn {
    max-width: 320px;
}
.promo__info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
    flex: 1;
    align-items: start;
}

.main-image {
    grid-row: 1 / span 2;
    position: relative;
    width: 100%;
    max-width: 463px;
    aspect-ratio: 463 / 288;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 4;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInImg 0.4s ease-in forwards;
    animation-delay: 0.3s;
}
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.9);
    animation: fadeInCircle 0.4s ease-in forwards;
}
.circle:nth-of-type(3) {
    width: 70%;
    background-color: #fca300;
    animation-delay: 0.6s;
}
.circle:nth-of-type(2) {
    width: 90%;
    background-color:#2a2d33 ;
    animation-delay: 0.9s;
}
.circle:nth-of-type(1) {
    width: 110%;
    background-color:  #1f2228;
    animation-delay: 1.2s;
}
.main-title {
    opacity: 0;
    transform: translateX(30%);
    animation: fadeInText 0.4s ease-out forwards;
    animation-delay: 1.5s;
}
.main-btn {
    opacity: 0;
    transform: translateX(30%);
    animation: fadeInText 0.4s ease-out forwards;
    animation-delay: 1.8s;
}

@media(max-width: 1199px) {
    .promo--main .promo__title {
        font-size: 44px;
    }
}

@media(max-width: 959px) {
    .promo__info {
       grid-template-columns: 1fr;
    }
    .main-image {
        grid-row: auto;
        margin: 0 auto;
    }
    .promo__title {
        font-size: 36px;
    }
    .promo__categories {
        grid-template-columns: repeat(2,1fr);
    }
    .promo__contacts {
        display: none;
    }
}
@media(max-width: 767px) {
    .promo__info {
        width: 100%;
    }
    .promo__title {
        font-size: 30px;
    }
    .promo--main .promo__title {
        font-size: 40px;
    }
}
@media(max-width: 539px) {
    .promo__categories {
        grid-template-columns: 1fr;
    }
    .promo--main .promo__title {
        font-size: 32px;
    }
}

@keyframes fadeInImg {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes fadeInText {
    from {
        transform: translateX(30%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInCircle {
    from {
        transform: translate(-50%,-50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%,-50%) scale(1);
        opacity: 1;
    }
}

.product-promo {
    position: relative;
    color: #fff;
}
.product-promo__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.product-promo__img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 2;
}
.product-promo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-promo__wrap {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 40px;
    z-index: 3;
}
.product-promo__title {
    font-size: 57px;
    line-height: 60px;
    font-weight: 500;
    letter-spacing: -1.8px;
}
@media(max-width: 959px) {
    .product-promo__title {
        font-size: 50px;
    }
}
@media(max-width: 767px) {
    .product-promo__title {
        font-size: 44px;
    }
}
@media(max-width: 539px) {
    .product-promo__title {
        font-size: 36px;
    }
}

.article-promo {
    position: relative;
    color: #fff;
    background-color: var(--color-gray);
}
.article-promo__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.article-promo__img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    top: 0;
    left: 0;
    z-index: 2;
}
.article-promo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-promo__wrap {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    margin-top: 100px;
    gap: 30px;
    z-index: 3;
}
.article-promo__title {
    font-size: 57px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -1.8px;
    max-width: 750px;
    margin: 0;
}
.article-promo__info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.article-promo__author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
}
.article-promo__author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.article-promo__date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 140%;
    color: #D2D3D5;
    white-space: nowrap;
}
.article-promo__date::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D2D3D5;
}
@media(max-width: 959px) {
    .article-promo__title {
        font-size: 50px;
    }
}
@media(max-width: 767px) {
    .article-promo__title {
        font-size: 44px;
    }
}
@media(max-width: 539px) {
    .article-promo__title {
        font-size: 36px;
    }
}
.tag {
    border-radius: 15px;
    background-color: #FCA300;
    color: #fff;
    text-transform: uppercase;
    padding: 6px 15px;
    font-size: 11px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
}
.tag:hover {
    color: var(--color-dark);
    background-color: #fff;
}
.article {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.article__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    padding: 40px 0;
    margin: 20px 0;
    border: 1px solid #dbe1e1;
    border-width: 1px 0;;
}
.article__like {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe1e1;
}
.article__like:hover{
    color: var(--color-accent);
}
.share {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.share__item a {    
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.share__item svg {
    width: 100%;
    height: 100%;
}
.share__item a:hover {    
    transform: translateY(-5px);
}
.pagination-text {
    font-size: 16px;
    line-height: 20px;
    color: #888;
    margin-bottom: 15px;

}
.paginations {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.paginations__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #dbe1e1;
    font-size: 17px;
    line-height: 19px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

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

@media(max-width: 767px) {
    .paginations {
        justify-content: center;
    }

    .paginations__item {
        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__img {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    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;
    max-width: 900px;
}
.article__btn {
    max-width: 200px;
}

@media(max-width: 959px) {
    .article__info {
        gap: 40px;
    }
}


.btn-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-dark);
    opacity: 1;
    color: #fff;
    visibility: visible;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index:50;
}
.btn-top.hidden {
    opacity: 0;
    visibility: hidden;
}
.btn-top svg {
    overflow: visible;
    width: 20px;
    height: 20px;
}

.btn-top:hover {
    background-color: var(--color-accent);
}

.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: 118px 30px 30px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
    opacity: 0.26;
    cursor: pointer;
}

.modal__content {
    position: relative;
    max-width: 794px;
    width: 100%;
    border-radius: 18px;
    padding: 42px 50px 50px;
    background: #FFFFFF;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-modal .modal__content {
    max-width: 420px;
    text-align: center;
}

.modal__title {
    font-weight: 500;
    font-size: 22px;
    line-height: 127%;
    margin-bottom: 10px;
}

.modal__subtitle {
    font-size: 13px;
    line-height: 169%;
    margin-bottom: 24px;
}

.modal-form__note {
    font-size: 14px;
    line-height: 157%;
    opacity: 0.6;
}

.modal__img {
    width: 40px;
    height: 40px;
    margin: 0 auto 28px;
}

.modal-form__wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 22px;
    gap: 15px;
}

.modal-form .btn {
    width: 100%;
}

.modal__close {
    position: absolute;
    top: -84px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1.4px solid rgba(255,255,255,0.3);
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    transition: border-color 0.3s ease, color 0.3s ease;
}

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

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
@media(max-width: 767px) {
    .modal__content {
        padding: 20px;
    }
    .modal-form__wrap {
        grid-template-columns: 1fr;
    }
}

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;
    padding-top: 80px;
}
.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    background-color: #fff;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 120;
}
.accept__text {
    font-size: 14px;
    line-height: 130%;
    text-align: center;
}

.accept.active {
    opacity: 1;
    visibility: visible;
}
.accept__btn {
    min-height: 44px;
}

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

.search-input {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 27, 30, 0.2);
    margin-bottom: 30px;
}
.search-input label {
    padding: 15px 15px 15px 50px;  
}
.search-input label::after {
    content: none;
}

.search-input .search__btn {
   top: 50%;
   transform: translateY(-50%);
   left: 10px;
}

.search-page__text {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.search-page__results {
    display: grid;
    gap: 20px;
}

.search-page__result {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 27, 30, 0.2);
}

.search-page__result-img {
    width: 25%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

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

.search-page__result-title {
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.search-page__result-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}

.search-page__result-text {
    font-size: 16px;
    line-height: 120%;
}

.search-page__result-title:hover {
    color: var(--color-accent);
}

@media(max-width: 767px ){
    .search-page__result {
        flex-direction: column;
    }

    .search-page__result-img {
        width: 100%;
        max-height: 200px;
    }
}

[data-copy-message] {
    position: absolute;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: none;
}

