:root {
    --font-family: "Inter", sans-serif;
    --content-width: 1240px;
    --container-offset: 10px;
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --transition: .2s ease-in-out
}

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

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

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

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

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

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

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth
}

*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

h1,
h2,
h3,
h4,
h5,
ol,
p,
ul {
    margin: 0;
    padding: 0
}

.page {
    overflow-x: hidden;
    height: 100%
}

.page__body {
    position: relative;
    overflow-x: hidden;
    margin: 0;
    min-width: 320px;
    min-height: 100%;
    font-family: var(--font-family);
    font-size: 16px
}

img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

a {
    text-decoration: none
}

.site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: #151515
}

.main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.is-hidden {
    display: none !important
}

.dis-scroll {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer
}

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

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
    display: none
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0)
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: var(--container-width)
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: 0
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.grid {
    display: -ms-grid;
    display: grid
}

.centered {
    text-align: center
}

.page--ios .dis-scroll {
    position: relative
}

.privacy {
    padding: 111px 0 40px
}

.privacy__wrap {
    padding: 40px 0;
    background-color: #313131;
    color: #fff
}

.privacy h2 {
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    font-size: clamp(1.75rem, 1.188rem + 2.5vw, 3.125rem);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase
}

.privacy p:not(:last-child) {
    margin-bottom: 15px
}

.privacy ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px
}

.privacy a {
    color: var(--white-color);
    text-decoration: underline
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999
}

.popup {
    width: 90%;
    max-width: 400px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: -webkit-gradient(linear, left top, left bottom, from(#1a1819), to(#000));
    background: -o-linear-gradient(top, #1a1819 0, #000 100%);
    background: linear-gradient(180deg, #1a1819 0, #000 100%);
    -webkit-box-shadow: 0 0 20px 0 rgba(234, 46, 70, .5);
    box-shadow: 0 0 20px 0 rgba(234, 46, 70, .5)
}

.popup__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px
}

.popup__row span {
    color: #fff;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.popup__row h2 {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase
}

.popup p {
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.section__btn {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #eb697a;
    background: #000;
    padding: 20px 10px;
    color: #fff;
    font-size: clamp(1.125rem, 1.082rem + .22vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: .6px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.section__btn span {
    position: relative;
    z-index: 2
}

.section__btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ea2e46;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out
}

.section__btn:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(198, 88, 88, .3);
    box-shadow: 0 0 20px 0 rgba(198, 88, 88, .3);
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.section__btn:hover::before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media screen and (max-width:767px) {
    .popup {
        padding: 16px
    }

    .section__title {
        margin-bottom: 24px
    }

    .section__text:not(:last-child) {
        margin-bottom: 16px
    }

    .section__btn {
        padding: 10px 20px
    }
}