:root {
    --accent: orange;
    --text: #333;
    --regular-text: 16px;
    --lineheight: 1.65;
    --userfont: inter-t, sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: .625rem
}

.row,
.row>* {
    --bs-gutter-x: 1.25rem
}

@font-face {
    src: url(/fonts/roboto-regular-webfont.woff2)format("woff2");
    font-family: roboto-st;
    font-weight: 400;
    font-style: normal
}

@font-face {
    src: url(/fonts/roboto-italic-webfont.woff2)format("woff2");
    font-family: roboto-st;
    font-weight: 400;
    font-style: italic
}

@font-face {
    src: url(/fonts/roboto-bold-webfont.woff2)format("woff2");
    font-family: roboto-st;
    font-weight: 700;
    font-style: normal
}

@font-face {
    src: url(/fonts/roboto-bolditalic-webfont.woff2)format("woff2");
    font-family: roboto-st;
    font-weight: 700;
    font-style: italic
}

@font-face {
    src: url(/fonts/InterTight-Thin.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 100;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-ExtraLight.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 200;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-Light.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 300;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-Regular.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 400;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-Medium.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 500;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-SemiBold.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 600;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-Bold.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 700;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-ExtraBold.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 800;
    font-style: normal
}

@font-face {
    src: url(/fonts/InterTight-Black.ttf)format("ttf");
    font-family: inter-t;
    font-weight: 900;
    font-style: normal
}

::placeholder {
    color: #666
}

::selection {
    background-color: var(--accent);
    color: #fff
}

input,
textarea {
    outline: none
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red
}

input:required:valid,
textarea:required:valid {
    border-color: green
}

html,
body {
    margin: 0;
    padding: 0
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden
}

body {
    font-family: var(--userfont);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--text);
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    position: relative;
    overflow-x: hidden
}

* {
    box-sizing: border-box
}

img,
svg,
video {
    max-width: 100%;
    height: auto
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.image {
    max-width: 100%;
    margin-bottom: var(--bs-gutter-x);
    border-radius: 4px
}

.accent {
    color: var(--accent);
    font-weight: 700
}

.main {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden
}

.main__container {
    box-sizing: border-box;
    width: 88%;
    max-width: 100%;
    margin: 0 6%
}

.header {
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
    display: flex
}

.header-right,
.nav {
    align-items: center;
    gap: 20px;
    display: flex
}

.nav__link {
    color: #2b2c2f;
    background: 0 0;
    border: 1px solid #2b2c2f1a;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 14px 24px;
    text-decoration: none;
    transition: all .5s ease-in-out;
    display: flex
}

.nav__link:hover {
    color: #fff;
    background-color: #f09
}

.first-screen {
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    display: grid;
    position: relative
}

.first-screen__left {
    grid-template-columns: 1fr;
    gap: 36px;
    display: grid
}

.title .h1 {
    letter-spacing: -.02em;
    color: #2b2c2f;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%
}

.description {
    letter-spacing: -.02em;
    color: #85878c;
    opacity: .8;
    max-width: 600px;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.button .custom-link {
    color: #fff;
    background: #f09;
    border: 1px solid #2b2c2f1a;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 14px 24px;
    text-decoration: none;
    transition: all .5s ease-in-out;
    display: flex
}

.button--mobile {
    display: none
}

.button--desktop {
    display: block
}

@media (max-width: 768px) {
    .button--mobile {
        display: block
    }

    .button--desktop {
        display: none
    }
}

.picture-container {
    z-index: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden
}

.picture-container:before {
    content: "";
    z-index: 3;
    background: url(/images/emoji.png) 50% no-repeat;
    width: 170px;
    height: 100px;
    position: absolute;
    bottom: 165px;
    left: -90px
}

.picture-container:after {
    content: "";
    z-index: 3;
    background: url(/images/emoji2.png) 50% no-repeat;
    width: 130px;
    height: 100px;
    position: absolute;
    top: 50px;
    right: -55px
}

.main-slider {
    border-radius: 15px;
    width: 100%;
    height: 700px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden
}

.slider-container {
    cursor: col-resize;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    width: 100%;
    height: 100%;
    position: relative
}

.slider-image {
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.slider-handle {
    z-index: 3;
    cursor: col-resize;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #fff;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 0 10px #00000080
}

.slider-handle:before {
    content: "";
    background: #f09;
    border: 1px solid #2b2c2f1a;
    border-radius: 10px;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px #0000004d
}

.slider-handle:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 0.75L0.75 6.75L6.75 12.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.75 12.75L18.75 6.75L12.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 20px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.preview-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    display: grid
}

.preview-item {
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 3px solid #0000;
    border-radius: 10px;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px #0003
}

.preview-item.active {
    border-color: #f09
}

.preview-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .3s
}

.preview-item:hover .preview-image {
    transform: scale(1.1)
}

.preview-label {
    color: #fff;
    text-align: center;
    background: linear-gradient(#0000, #000000b3);
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.instructions {
    text-align: center;
    color: #718096;
    margin-top: 20px;
    font-size: 14px
}

.image-labels {
    color: #4a5568;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 600;
    display: flex
}

.steps {
    background-color: #f8f8f8;
    width: 100%;
    max-width: 100vw;
    padding: 46px 0;
    position: relative;
    overflow-x: hidden
}

.title-block {
    margin-bottom: 20px
}

.title-block .h2 {
    text-align: center;
    letter-spacing: -.02em;
    color: #2b2c2f;
    font-size: 48px;
    font-weight: 800;
    line-height: 130%
}

.steps__container {
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    display: grid
}

.steps-box {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 14px;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    display: grid;
    overflow: hidden
}

.steps-box__top {
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    display: flex
}

.steps-box__arrow {
    flex-shrink: 0;
    max-width: 72px
}

.steps-box__arrow svg {
    max-width: 100%;
    height: auto
}

.steps-box__number {
    text-align: center;
    letter-spacing: -.02em;
    color: #fff;
    background-color: #2b2c2f;
    border-radius: 10em;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    display: flex
}

.steps-box__number.active {
    background-color: #f09
}

.steps-box__picture {
    justify-content: center;
    align-items: center;
    height: 330px;
    display: flex
}

.steps-box__picture img {
    max-width: 100%
}

.steps-box__description {
    letter-spacing: -.02em;
    color: #2b2c2f;
    text-align: left;
    align-self: flex-end;
    font-size: 22px;
    font-weight: 400;
    line-height: 130%
}

.examples {
    width: 100%;
    max-width: 100vw;
    padding: 40px 0 80px;
    position: relative;
    overflow-x: hidden
}

.description-block {
    text-align: center;
    letter-spacing: -.02em;
    color: #2b2c2f;
    opacity: .8;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%
}

.grid-title {
    text-align: center;
    color: #2d3748;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700
}

.grid-container {
    box-sizing: border-box;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
    display: grid
}

.comparison-card {
    aspect-ratio: 1;
    cursor: col-resize;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 15px;
    position: relative;
    overflow: hidden
}

.card-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.image-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%)
}

.image-after {
    z-index: 1
}

.card-handle {
    z-index: 3;
    cursor: col-resize;
    background: #fff;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 0 8px #0006
}

.card-handle:before {
    content: "";
    background: #fff;
    border: 3px solid #667eea;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px #0000004d
}

.card-handle:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='11' viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.4 0.6L0.6 5.4L5.4 10.2' stroke='%23667eea' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.2 10.2L15 5.4L10.2 0.6' stroke='%23667eea' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 16px;
    height: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.card-label {
    color: #fff;
    z-index: 4;
    background: #000000b3;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    bottom: 10px
}

.label-before {
    left: 10px
}

.label-after {
    right: 10px
}

.instructions {
    text-align: center;
    color: #718096;
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.5
}

.banner {
    background-color: #f8f8f8;
    width: 100%;
    max-width: 100vw;
    padding: 60px 0;
    overflow-x: hidden
}

.banner__container {
    box-sizing: border-box;
    grid-template-columns: .5fr 1fr .5fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    display: grid
}

.banner-picture img {
    max-width: 100%
}

.banner__mobile {
    display: none
}

.footer {
    background-color: #2b2c2f;
    width: 100%;
    max-width: 100vw;
    padding: 24px 0;
    overflow-x: hidden
}

.footer__container {
    box-sizing: border-box;
    border-bottom: 1px solid #fff3;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 24px;
    display: flex
}

.footer-cop {
    text-align: center;
    letter-spacing: -.02em;
    color: #fff;
    padding-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%
}

.footer-col {
    grid-template-columns: 1fr;
    gap: 12px;
    display: grid
}

.footer-col__title {
    letter-spacing: -.02em;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%
}

.footer-col__nav {
    grid-template-columns: 1fr;
    gap: 12px;
    display: grid
}

.footer-col__link {
    letter-spacing: -.02em;
    color: #fff9;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    transition: color .5s
}

.footer-col__link:hover {
    color: #f09
}

.language-selector {
    display: none !important;
}

.change-language,
.language-selector {
    position: relative
}

.language-selector__button {
    color: #fff;
    cursor: pointer;
    background-color: #f09;
    border: none;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 74px;
    height: 54px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s;
    display: flex
}

.language-selector__button:hover {
    background-color: #e00087
}

.language-selector__dropdown {
    z-index: 1000;
    background-color: #f5f5f5;
    border-radius: 10px;
    grid-template-columns: 1fr;
    gap: 5px;
    min-width: 62px;
    padding: 6px;
    display: grid;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    box-shadow: 0 4px 12px #00000026
}

.language-selector__option {
    color: #f09;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #2b2c2f1a;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 46px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    display: flex
}

.language-selector__option:hover,
.language-selector__option.active {
    color: #fff;
    background-color: #f09
}

.scroll-to-top {
    cursor: pointer;
    z-index: 999;
    background: #f09;
    border: none;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    transition: all .3s;
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 4px 16px #f096
}

.scroll-to-top:hover {
    background: #e00087;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px #ff009980
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 16px
    }
}

.mobile-buttons {
    display: none
}

.btn-open-menu,
.btn-close-menu {
    transition: opacity .3s
}

.btn-open-menu:hover,
.btn-close-menu:hover {
    opacity: .7
}

.nav__item--mobile {
    display: none
}

.age-verification-overlay {
    z-index: 9999;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #000000e6;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0
}

.age-verification-modal {
    text-align: center;
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 710px;
    padding: 40px 30px;
    animation: .3s ease-out modalAppear;
    box-shadow: 0 10px 30px #0000004d
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: scale(.9)translateY(-20px)
    }

    to {
        opacity: 1;
        transform: scale(1)translateY(0)
    }
}

.age-verification-title {
    color: #2b2c2f;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 700
}

.age-verification-description {
    color: #2b2c2f;
    opacity: .8;
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 1.5
}

.age-verification-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    display: flex
}

.age-btn {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    min-width: 160px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s
}

.age-btn--yes {
    color: #fff;
    background: #f09
}

.age-btn--yes:hover {
    background: #e00087;
    transform: translateY(-2px)
}

.age-btn--no {
    color: #666;
    background: #f0f0f0
}

.age-btn--no:hover {
    background: #e0e0e0;
    transform: translateY(-2px)
}

.age-verification-message {
    border-radius: 8px;
    margin-top: 20px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.4;
    display: none
}

.age-verification-message.show {
    color: #d63031;
    background: #fff3f3;
    border: 1px solid #fcc;
    display: block
}

body.age-verification-open {
    overflow: hidden
}

.text-block__container {
    grid-template-columns: 1fr;
    gap: 12px;
    display: grid
}

.text-block {
    grid-template-columns: 1fr;
    gap: 8px;
    display: grid
}

.text-block .h4 {
    letter-spacing: -.02em;
    color: #2b2c2f;
    opacity: .8;
    font-size: 26px;
    font-weight: 600;
    line-height: 130%
}

.text-block .text-paragraph {
    letter-spacing: -.02em;
    color: #2b2c2f;
    opacity: .8;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%
}

.text-left {
    text-align: left !important
}

@media (max-width: 3000px) {
    .main__container {
        width: 60%;
        max-width: 100%;
        margin: 0 20%
    }
}

@media (max-width: 1930px) {
    .main__container {
        width: 88%;
        max-width: 100%;
        margin: 0 6%
    }
}

@media (max-width: 1200px) {
    .first-screen {
        grid-template-columns: 1fr
    }
}

@media (max-width: 992px) {
    .steps__container {
        grid-template-columns: 1fr
    }

    .banner__container .banner-picture {
        display: none
    }

    .banner__container {
        grid-template-columns: 1fr
    }

    .banner__mobile {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
        display: grid
    }
}

@media (max-width: 768px) {
    .preview-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        overflow-y: scroll
    }

    .preview-gallery .preview-item:last-child {
        display: none
    }

    .comparison-card {
        aspect-ratio: 4/4
    }

    .main-slider {
        height: 500px
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px
    }

    .grid-title {
        font-size: 24px
    }

    .title .h1 {
        font-size: 36px
    }

    .description {
        font-size: 26px
    }

    .first-screen__right {
        grid-row: 1
    }

    .title-block .h2 {
        font-size: 36px
    }

    .age-verification-title {
        font-size: 32px
    }

    .age-verification-description {
        font-size: 18px
    }

    .nav {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        z-index: 1000;
        background: #fff9;
        flex-direction: column;
        padding: 20px;
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        box-shadow: 0 4px 10px #0000001a
    }

    .nav.active {
        display: flex
    }

    .nav__item {
        text-align: center;
        width: 100%
    }

    .nav__link {
        background-color: #fff
    }

    .nav__item:last-child .nav__link {
        border-bottom: none
    }

    .mobile-buttons {
        align-items: center;
        display: flex
    }

    .btn-open-menu {
        cursor: pointer;
        background: 0 0;
        border: none;
        padding: 5px;
        display: block
    }

    .btn-close-menu {
        cursor: pointer;
        background: 0 0;
        border: none;
        padding: 5px;
        display: none
    }

    .mobile-menu-open .btn-open-menu {
        display: none
    }

    .mobile-menu-open .btn-close-menu {
        display: block
    }

    .nav__item--mobile {
        border-top: 1px solid #85878c33;
        padding-top: 16px;
        display: block
    }
}

@media (max-width: 480px) {
    .button .custom-link {
        width: 100%
    }

    .comparison-slider {
        padding: 20px
    }

    .main-slider {
        height: 400px
    }

    .preview-gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .comparison-grid {
        padding: 20px
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .title-block .h2 {
        font-size: 32px
    }
}

@media (min-width: 1200px) {
    .text {
        font-size: 18px
    }
}

@media (min-width: 1400px) {
    .text {
        font-size: 22px
    }
}