/* Общие стили */
@font-face {
    font-family: 'Obrazec';
    src: url('/wa-data/public/site/themes/landings/fonts/Obrazec-2.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-br: 100px;

    --bg-color: #020404;
    --main-color: #FFFFFF;
    --gray-color: #808080;

    --blue-bg: #4429cd;
    --gray-bg: #f5f5f5;
    --green-bg: #A4E711;
    --orange-bg: #ff5500;
    --lightblue-bg: #0B72DA;

    --base-fontsize: 18px;
    --small-fontsize: 16px;
    --med-fontsize: 23px;
    --big-fontsize: 65px;
    --h1-fontsize: 65px;
    --h2-fontsize: 45px;
    --left-padding: 100px;

    --blue-bg-dark: #28138f;
    --gray-bg-light: #f5f5f5;
    --lightblue-bg-dark: #004d9b;
    --orange-bg-dark: #c23d00;
}

html {
    font-size: var(--base-fontsize);
}

#yamap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

body {
    font-family: 'MarbyPro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--main-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    user-select: none;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

.mt-auto {
    margin-top: auto !important;
}

.d-block {
    display: block;
}

.font-obrazec {
    font-family: 'Obrazec', Arial, sans-serif;
}

button,
.btn {
    display: inline-block;
    text-wrap: nowrap;
    color: white;
    padding: 15px 35px;
    border-radius: 15px;
    font-size: 1rem;
    line-height: 1rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn-black {
    background-color: var(--bg-color);
    color: var(--main-color);
}

.btn-green {
    background-color: var(--green-bg);
    color: var(--bg-color);
}

.btn-lightblue {
    background-color: var(--lightblue-bg);
    color: #fff;
}

.btn-lightblue:hover {
    filter: brightness(.7);
    color: #fff;
}

.btn-orange {
    background-color: var(--orange-bg);
    color: #fff;
}

.btn-orange:hover {
    filter: brightness(.7);
    color: #fff;
}

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

.btn-white:hover {
    background-color: #becaff;
    color: var(--lightblue-bg);
}

.btn-arrow {
    transition: all .2s;
}

.center {
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
    color: #ff7f00;
    font-size: 2rem;
}

.preloader-content p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.emoji {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 3rem;
    animation: bounce 1.2s infinite alternate;
}

.emoji:nth-child(2) { animation-delay: 0.2s; }
.emoji:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.container-full {
    width: 100%;
}

.list-unstyled {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.second-text {
    color: var(--green-bg);
}

.marker-text {
    display: block;
    padding-left: var(--left-padding);
    color: var(--green-bg);
}

.new-line {
    display: block;
}

.rub {
    font-family: sans-serif;
    font-weight: 600;
    padding-left: 3px;
    font-size: 0.8em;
}

.view-pc {
    display: inline-block;
}

.view-mobile {
    display: none;
}

/* Шапка */
header {
    width: 100%;
    padding: 30px 0;
    border-radius: 0px 0px 50px 50px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.logo {
    font-size: 0;
}

header .container {
    display: flex;
    flex-direction: column;
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.header-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-title {
    margin: 0;
    text-align: left;
    font-weight: bold;
    font-size: var(--big-fontsize);
    text-transform: uppercase;
}

.header-text {
    display: inline-block;
    text-transform: none;
    font-weight: normal;
    margin-left: 15px;
    font-size: var(--base-fontsize);
}

.header-list {
    display: flex;
    gap: 40px;
    font-size: 1rem;
    font-weight: 500;
}

.header-btn {
    padding: 15px 0px;
    text-decoration: underline;
    text-transform: uppercase;
}

.header-promo-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    padding-left: 40px;
    gap: 25px;
    height: 80px;
    font-size: var(--med-fontsize);
    line-height: 80px;
    border-radius: 40px;
}

.header-promo-btn .btn-arrow {
    background-color: var(--bg-color);
    background-image: url("/wa-data/public/site/themes/landings/img/consoles/white-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    border-radius: 50%;
    aspect-ratio: 1/1;
    height: calc(100% - 10px);
    margin: 5px;
}

.header-promo-btn:hover .btn-arrow {
    transform: rotate(45deg);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    color: var(--main-color);
    font-size: 2rem;
    line-height: 2rem;
    cursor: pointer;
}

.close-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 2rem;
    color: var(--main-color);
    cursor: pointer;
}

.menu-btn:hover {
    font-weight: bold;
    background: none;
}

.close-btn:hover {
    font-weight: bold;
    background: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    padding: 30px;
    background-color: var(--bg-color);
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
    visibility: visible;
    transform: translateX(0);
}

.mobile-list {
    margin-top: 50px;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.mobile-menu-header img {
    max-width: 250px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    font-size: 1.5rem;
    color: var(--main-color);
    text-decoration: none;
}

/* Секции */
section {
    margin: 0;
    margin-top: 6rem;
}

.section-green {
    background-color: var(--green-bg);
    color: var(--bg-color);
}

.section-orange {
    background-color: var(--orange-bg);
}

.section-paper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('/wa-data/public/site/themes/landings/img/consoles/border-top.webp') top center;
    background-size: auto 100%;
    z-index: 2;
}

.section-paper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('/wa-data/public/site/themes/landings/img/consoles/border-bottom.webp') bottom center;
    background-size: auto 100%;
    z-index: 2;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'MarbyPro', Arial, sans-serif;
    text-align: left;
    font-size: var(--big-fontsize);
    line-height: 1em;
    margin: 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-title__link {
    text-align: center;
    text-wrap: nowrap;
    text-transform: initial;
    font-size: var(--base-fontsize);
    font-weight: normal;
    padding: 15px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    line-height: 100%;
}

@media (max-width: 700px) {
    .section-title__link {
        margin-top: 20px;
        width: 100%;
    }
}

h2 {
    font-size: var(--h2-fontsize);
    margin-bottom: 2rem;
}

/** карточки **/
.cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 25px;
    background: linear-gradient(210.79deg, #2C2D24 1.84%, #111210 95.26%);
    box-shadow: inset 0 0 0 1px #0B0C0A;
    overflow: hidden;
    z-index: 0;
}

.card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(204.63deg, #4C4D41, #1D1D17);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.card-green {
    background: var(--green-bg);
    color: var(--bg-color);
}

.card-blue {
    background: linear-gradient(154.26deg, #4429CC 10.08%, #221566 76.65%);
}

.card-title {
    font-family: 'Obrazec', Arial, sans-serif;
    font-size: var(--h2-fontsize);
    line-height: 1.1em;
    margin: 0;
    padding: 30px;
    padding-bottom: 0 !important;
}

.card-text {
    margin: 0;
    padding: 30px;
    padding-top: 0 !important;
    text-align: left;
    font-size: 1rem;
    line-height: 1.4rem;
}

.card-link {
    flex: 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 70px;
    border-radius: 20px;
    padding: 15px 20px;
    background: linear-gradient(87.96deg, #2E2F2A 3.03%, #2B2D23 100%);
    overflow: hidden;
    color: #fff;
    margin: 10px;
    z-index: 0;
}

.card-link::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(204.63deg, #4C4D41 1.19%, #1D1D17 90.87%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.card-link .btn-arrow {
    background-image: url("/wa-data/public/site/themes/landings/img/consoles/white-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    aspect-ratio: 1/1;
    height: calc(100% - 10px);
    border-radius: 50%;
}

.card-link:hover .btn-arrow {
    transform: rotate(45deg);
}

.card-blue .card-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.card-blue .card-link::before {
    background: #FFFFFF1A;
}

.card-blue .card-link .btn-arrow {
    background-image: url("/wa-data/public/site/themes/landings/img/consoles/black-arrow.svg");
    background-color: var(--green-bg);
    width: 45px;
    height: 45px;
}

/* slider */
.scroll-style::-webkit-scrollbar {
    height: 4px;
}

.scroll-style::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(255, 255, 255, .3);
}

.scroll-style::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--orange-bg-dark);
}

.scroll-style::-webkit-scrollbar-thumb:hover {
    background: #696969;
    cursor: pointer;
}

section.section-orange .scroll-style::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(0, 0, 0, .1);
}

section.section-orange .scroll-style::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0, 0, 0, .3);
}

.slider {
    position: relative;
}

.slide-prev,
.slide-next {
    cursor: pointer;
    position: absolute;
    background: none;
    font-size: 0;
    padding: 0;
    border: none;
    top: 50%;
    margin-top: 30px;
    width: 50px;
    height: 50px;
    border-radius: 25%;
    transition: all .2s;
    display: none;
}

.slide-prev.viewed,
.slide-next.viewed {
    display: block;
}

.slide-prev svg,
.slide-next svg {
    vertical-align: middle;
}

.slider svg {
    filter: invert(1);
}

.slide-prev {
    left: -55px;
}

.slide-next {
    right: -55px;
}

/* offers */
.offers {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
    scroll-snap-stop: always;
    scroll-snap-type: x mandatory;
}

.offer {
    flex: 1 1 25%;
    min-width: 285px;
    border-radius: 20px;
    background-color: #fff;
    border: 2px solid #E8E8E8;
    padding: 15px 20px;
    scroll-snap-align: start;
}

.offer img {
    max-height: 240px;
}

.product-text {
    color: var(--bg-color);
    margin: 10px 0;
    max-height: 2.4rem;
    overflow: hidden;
}

.product-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}

.product-photo img {
    border-radius: 15px;
    width: auto;
    height: auto;
    object-fit: cover;
}

.product-btn {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    font-size: .9rem;
}

.product-bonus {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #fff;
    font-weight: bold;
    background-color: var(--orange-bg);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    padding: 7px 10px;
    margin-top: 20px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.old-price {
    margin-left: 5px;
    font-size: 18px;
    color: #aaa;
    text-decoration: line-through;
}

/* complects */
.complects {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
    scroll-snap-stop: always;
    scroll-snap-type: x mandatory;
}

.complect {
    position: relative;
    flex: 1 1 33%;
    min-width: 385px;
    border-radius: 20px;
    background-color: #fff;
    border: 2px solid #E8E8E8;
    padding: 20px;
    scroll-snap-align: start;
}

.complect-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #000000;
    padding: 8px 12px;
    color: #fff;
    border-radius: 30px;
}

.complect-text {
    display: block;
    text-align: center;
    color: var(--bg-color);
    font-size: 20px;
    margin-top: 15px;
    overflow: hidden;
}

.complect-photo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 240px;
}

.complect-photo img {
    max-width: 100%;
}

.complect-btn {
    text-align: center;
    width: 100%;
    margin-top: 15px;
    padding: 10px 0;
    border-radius: 10px;
    font-size: .9rem;
}

.section-complect {
    margin-top: 0;
    padding-bottom: 6rem;
}

@media (max-width: 700px) {
    .complect-photo {
        height: 200px;
    }

    .section-complect {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .complect {
        min-width: 300px;
    }
}

/* Game */
.section-game {
    cursor: pointer;
    background: linear-gradient(to bottom, #000000 50%, var(--orange-bg) 50%);
}

.game-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-modal-content {
    overflow-y: auto;
    max-height: 100%;
}

.game-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.game-btns img {
    width: 300px;
    height: auto;
}

.game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0 20px;
    gap: 10px;
}

@media (max-width: 800px) {
    .game-modal-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 20px;
    }

    .game-btns {
        max-height: 600px;
        flex-direction: column;
        gap: 10px;
    }

    .game-btns img {
        width: auto;
        height: 150px;
    }

    .game-info {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 380px) {
    .game-btns img {
        width: auto;
        height: 120px;
    }
}

/* Prize Result */
.prize-result {
    padding: 30px;
    background-color: var(--orange-bg);
    border-radius: 10px;
}

.prize-title {
    color: #fff;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    font-size: 32px;
}

.prize-text {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.prize-lose-text {
    font-size: 28px;
    margin-bottom: 20px;
}

.prize-subtext {
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.prize-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.prize-block:last-child {
    margin-bottom: 0;
}

.prize-email-text {
    color: #fff;
    text-align: center;
    margin: 0;
    margin-bottom: 15px;
}

.prize-email-info {
    color: #fff;
    text-align: center;
    margin: 0;
    margin-top: 15px;
    font-size: .8rem;
}

.prize-email-info a {
    text-decoration: underline;
}

.prize-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.prize-input {
    padding: 15px;
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 5px;
    flex: 1;
    max-width: 300px;
    font-weight: bold;
    font-family: inherit;
}

.prize-input[type="email"] {
    font-size: 16px;
    font-weight: normal;
}

.prize-btn {
    padding: 15px 30px;
    background: #fff;
    color: var(--orange-bg);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.prize-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

#notify {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0.95;
    z-index: 9999;
    font-size: 15px;
    transition: opacity 0.3s;
}

#notify.error {
    background: #d9534f;
}

#notify.success {
    background: #147a00;
}

#notify.show {
    display: block;
}

@media (max-width: 800px) {
    .prize-result {
        padding: 20px;
    }

    .prize-title {
        font-size: 24px;
    }
    
    .prize-text {
        font-size: 18px;
    }

    .prize-lose-text {
        font-size: 24px;
    }
    
    .prize-input-group {
        flex-direction: column;
    }
    
    .prize-input,
    .prize-btn {
        width: 100%;
        max-width: 100%;
    }
}

/* banner */
.section-banner {
    margin-top: 0;
    background: linear-gradient(to bottom, var(--orange-bg) 50%, #000000 50%);
}

/* FAQ */
.faq-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px;
    transition: all .2s;
    cursor: pointer;
}

.faq-box {
    border-bottom: 1px solid #FFFFFF;
}

.faq-title h4 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.faq-title .number {
    font-family: 'Obrazec', Arial, sans-serif;
    font-size: var(--h2-fontsize);
    line-height: 1em;
    min-width: 46px;
}

.faq-title svg {
    transition: all .2s;
}

.faq-box.open .faq-title {
    color: #fff;
}

.faq-box.open svg {
    filter: invert(0);
    transform: rotate(180deg);
}

.faq-title h4 {
    margin: 0;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    padding: 0px 40px;
    overflow: hidden;
    transition: max-height .2s ease, opacity .2s ease;
}

.faq-box.open .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

/* footer */
.footer {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    padding: 30px 0;
    z-index: 1;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-img {
    flex: 1 1 100%;
    margin-bottom: -100px;
}

.footer-img img {
    width: 100%;
}

.footer .logo {
    display: inline-block;
    font-size: 0px;
}

.social-media {
    display: flex;
    gap: 10px;
}

.social-media a {
    font-size: 0;
    display: inline-block;
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 6px 14px;
}

.social-media a:hover {
    background-color: var(--green-bg);
}

.social-media a svg {
    filter: invert(1);
    vertical-align: middle;
}

.view-pc {
    display: inline-block;
}

.view-mobile {
    display: none;
}

/* Стили для модального окна */
.modal {
    visibility: hidden;
    opacity: 0;
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    transition: all .2s;
}

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

.modal h3 {
    margin-top: 0;
}

.modal-content {
    border: 2px solid var(--orange-bg);
    background-color: var(--bg-color);
    margin: auto;
    opacity: 0;
    padding: 40px;
    border-radius: 10px;
    max-width: 80%;
    transform: scale(.5);
    transition: all .2s;
}

.modal.open .modal-content {
    opacity: 1;
    transform: scale(1);
}

.modal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-links a {
    text-align: center;
    flex: 1 1 45%;
}

.modal .close {
    position: absolute;
    color: var(--orange-bg);
    float: right;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
}

.modal .close:hover,
.modal .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1200px) {
    :root {
        --big-fontsize: 70px;
    }

    .header-btn {
        display: none;
    }

    .header-title {
        flex: 0 0 600px;
    }
}

@media (max-width: 1000px) {
    :root {
        --left-padding: 60px;
    }

    .header-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-title {
        flex: auto;
    }

    .offers,
    .deals {
        margin-left: -5%;
        margin-right: -5%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .offer {
        scroll-snap-align: center;
    }

    .modal-content {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    :root {
        --base-fontsize: 16px;
        --h1-fontsize: 70px;
        --h2-fontsize: 58px;
        --big-fontsize: 42px;
    }

    .slide-prev.viewed,
    .slide-next.viewed {
        display: none;
    }

    .view-pc {
        display: none;
    }

    .view-mobile {
        display: inline-block;
    }

    .header-list {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    section {
        margin-top: 4rem;
    }

    header {
        height: auto;
    }

    .header-info {
        margin: 0 -5%;
        gap: 20px;
    }

    .header-img {
        margin-top: -50px;
    }

    .header-title-wrapper {
        gap: 20px;
    }

    .header-title {
        text-align: center;
    }

    .header-text {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0;
    }

    .header-promo {
        width: 100%;
        text-align: center;
    }

    .header-promo-btn {
        margin-top: 10px;
        font-size: 20px;
        gap: 0px;
    }

    .card-title {
        padding: 30px;
    }

    .card-text {
        padding: 30px;
    }

    .modal {
        padding: 5px;
    }

    .modal-content {
        width: 100%;
        height: 100%;
    }

    .faq-title {
        gap: 20px;
    }

    .faq-title svg {
        flex-shrink: 0;
    }

    .faq-title h4 {
        gap: 20px;
    }

    .footer {
        text-align: center;
    }

    .footer .container {
        flex-direction: column;
        gap: 30px;
    }

    .social-media {
        width: 100%;
    }

    .social-media a {
        flex: 1 1 30%;
        padding: 10px 14px;
    }
}