@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap);
@font-face {
    font-family: Gilroy;
    src: local("Gilroy"), url(../fonts/Gilroy-Medium.woff2) format("woff2"), url(../fonts/Gilroy-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

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

html {
    box-sizing: border-box
}

:root {
    --main-black: #141414;
    --white-color: #FDFCF8;
    --grey-color: #949494;
    --light-blue-color: #00A0D6;
    --blue-color: #025DB1;
    --hover-blue: #084f90;
    color-scheme: only light
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:focus-visible {
    outline: 0
}

:focus {
    outline: 0
}

a {
    position: relative;
    color: inherit;
    text-decoration: none
}

input,
textarea {
    outline: 0;
    border: none
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

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

img,
svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 100%
}

body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    background-color: var(--main-black);
    color: var(--white-color)
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px
}

@media screen and (max-width:800px) {
    .container {
        max-width: 800px;
        margin: 0 auto;
        padding-right: 10px;
        padding-left: 10px;
    }
}

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

.btn-reset {
    padding: 0;
    border: none;
    outline: 0;
    cursor: pointer;
    background: 0 0;
    transition: .3s
}

.heading-1 {
    margin-bottom: 26px;
    font: 500 52px/121% Unbounded, sans-serif;
    text-transform: uppercase;
    color: var(--white-color)
}

.heading-2 {
    font: 400 64px/135% "Rubik Mono One", sans-serif;
    color: var(--main-black);
    text-transform: uppercase;
    text-align: center;
    word-spacing: -25px
}

.heading-3 {
    font: 600 26px/32px Rubik, sans-serif;
    color: var(--white-color)
}

@media screen and (max-width:1250px) {
    .heading-1,
    .heading-2 {
        font-size: 40px
    }
}

@media screen and (max-width:850px) {
    .heading-1 {
        margin-bottom: 15px;
        font-size: 25px;
        line-height: 30px;
        text-align: center
    }
    .heading-descr {
        position: absolute;
        bottom: -20px;
        right: 53px;
        padding: 7px 14px;
        background-color: var(--white-color);
        color: var(--light-blue-color);
        border: 2px solid var(--light-blue-color);
        border-radius: 5px;
        font: 500 12px/110% Unbounded, sans-serif
    }
    .heading-2 {
        font-size: 23px;
        line-height: 30px;
        word-spacing: -12px
    }
}

.btn-cmn {
    padding: 25px 30px;
    border-radius: 23px;
    font: 500 20px/100% Rubik, sans-serif;
    color: #000;
    transition: .3s
}

@media (hover:hover) {
    .btn-cmn:hover {
        background-color: var(--yellow-hover)
    }
}

@media (hover:none) {
    .btn-cmn:active {
        background-color: var(--yellow-hover)
    }
}

.common-descr {
    margin-top: 16px;
    margin-bottom: 30px;
    font: 400 16px/100% Rubik, sans-serif
}

.play-img {
    transform: translateY(5px)
}

@media screen and (max-width:1100px) {
    .cmn-logo {
        width: 158px;
        height: 20px
    }
    .play-img {
        width: 27px;
        height: 32px;
        transform: translateY(2px)
    }
}

@media screen and (max-width:700px) {
    .cmn-logo {
        width: 158px;
        height: 20px
    }
    .play-img {
        width: 17px;
        height: 19px;
        transform: translateY(1px)
    }
    .for-mob {
        display: none
    }
}

.hero {
    position: relative;
    padding: 84px 0 46px;
    background-image: url(../img/main-bg.webp);
    background-position: center;
    background-size: cover;
    overflow: hidden
}

.hero::before {
    position: absolute;
    content: "";
    background-image: url(../img/roman-main.webp);
    background-position: center center;
    background-size: cover;
    bottom: -3%;
    left: 51%;
    width: 492px;
    height: 602px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.hero::after {
    position: absolute;
    content: "";
    background: url(../img/money.webp) center center/contain no-repeat;
    bottom: -17%;
    left: 47%;
    width: 701px;
    height: 546px;
    z-index: 15;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.hero__subtitle {
    margin-bottom: 19px;
    font: 700 22px/127% Gilroy, sans-serif;
    color: var(--white-color);
    text-transform: uppercase
}

.hero__subtitle span {
    padding: 3px 3px 0;
    background-color: var(--white-color);
    color: #b22
}

.hero__descr {
    margin-bottom: 42px;
    font: 500 26px/110% Gilroy, sans-serif;
    color: var(--white-color)
}
.hero__descr .timer {
    font-size: 42px;
    line-height: 125%;
}

.hero__price {
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    z-index: 10;
    gap: 20px;
    color: var(--white-color)
}

.hero__price .old-price {
    display: block;
    font: 600 19px/115% Montserrat, sans-serif;
    text-decoration: line-through
}

.hero__price .current-price {
    display: block;
    font: 700 26px/115% Unbounded, sans-serif;
    text-transform: uppercase
}

.hero__btn-wrap {
    position: relative
}

.hero__btn-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 94px;
    background-color: var(--white-color);
    border-radius: 12px;
    transition: .3s ease-in-out
}

.hero__btn-wrap::before:hover {
    background-color: #cacaca
}

.hero__btn {
    position: relative;
    width: 100%;
    background-color: transparent;
    color: #000;
    font: 700 26px/90% Gilroy, sans-serif;
    text-transform: uppercase;
    padding: 35px 20px;
    border-radius: 12px;
    z-index: 20;
    overflow: hidden
}

.hero__btn:hover {
    transform: scale(1.05);
    background-color: var(--white-color);
    border-color: #000
}

@media screen and (max-width:1100px) {
    .hero .text-block__content-right {
        font-size: 17px
    }
}

@media screen and (max-width:850px) {
    .hero {
        padding: 15px 0;
        background-image: url(../img/main-bg-360.webp);
        background-repeat: no-repeat;
        background-size: cover
    }
    .hero::after {
        display: none
    }
    .hero::before {
        background-image: url(../img/roman-main-360.webp);
        width: 312px;
        height: 381px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%
    }
    .hero__subtitle {
        margin-bottom: 17px;
        text-align: center;
        font-size: 14px;
        line-height: 116%
    }
    .hero__descr {
        margin: 0 auto;
        width: 86%;
        font-size: 14px;
        line-height: 15px;
        text-align: center
    }
    .hero__price {
        position: relative;
        margin-top: 250px;
        margin-bottom: 0;
        display: block;
        text-align: right;
        z-index: 15
    }
    .hero .old-price {
        margin-bottom: 5px;
        font-size: 15px
    }
    .hero .current-price {
        font-size: 22px
    }
    .hero__btn {
        margin-top: 19px;
        padding: 38px 20px;
        font-size: 18px
    }
}

@media screen and (max-width:440px) {
    .hero::after {
        display: block;
        background-image: url(../img/money-360.webp);
        width: 705px;
        height: 303px;
        background-size: contain;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-position: center center
    }
    .hero__container {
        position: relative
    }
    .hero__container::before {
        content: "";
        position: absolute;
        background-image: url(../img/seif-360.webp);
        background-repeat: no-repeat;
        background-size: contain;
        width: 165px;
        height: 165px;
        left: 80px;
        transform: translateX(-50%);
        bottom: 40%
    }
}
.thanks {
    position: relative;
    padding: 82px 0 80px;
    background-image: url(../img/thanks-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.thanks::before {
    position: absolute;
    content: "";
    background: url(../img/roman-thanks.webp) center center/cover;
    bottom: 0;
    left: 35%;
    width: 776px;
    height: 653px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.thanks__wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.thanks__content {
    position: relative;
    margin-bottom: 19px
}

.thanks__title {
    margin-bottom: 48px;
    font: 500 45px/122% Unbounded, sans-serif;
    color: var(--white-color);
    text-transform: uppercase
}

.thanks__percent {
    position: absolute;
    z-index: 10;
    left: 60%;
    bottom: 54.4%;
    font: 500 22px/100% Montserrat, Arial, sans-serif;
    color: var(--main-black)
}

.thanks .bar {
    max-width: 500px;
    margin-bottom: 42px
}

.thanks .bar__percent {
    text-align: right;
    margin-bottom: 5px
}

.thanks .bar__text {
    margin-top: 10px;
    font: 500 20px/110% Gilroy, Arial, sans-serif;
    text-transform: uppercase
}

.thanks .bar__line {
    position: relative;
    border-radius: 12px;
    border: 2px solid var(--white-color);
    background: 0 0;
    height: 47px;
    width: 100%;
    overflow: hidden
}

.thanks .bar__line span {
    position: relative;
    width: 0;
    height: 100%;
    display: block;
    background: currentColor;
    color: var(--white-color);
    margin: 0;
    max-width: calc(100% - 6px);
    -webkit-animation: .7s linear both wd;
    animation: .7s linear both wd
}

.thanks .bar__line span::before {
    position: absolute;
    content: "";
    left: 100%;
    bottom: 0;
    z-index: 10;
    color: var(--white-color);
    border-top: 43px solid currentColor;
    border-right: 27px solid transparent
}

@-webkit-keyframes wd {
    0% {
        width: 0
    }
    100% {
        width: 85%
    }
}

@keyframes wd {
    0% {
        width: 0
    }
    100% {
        width: 85%
    }
}

.thanks__descr {
    font: 700 21px/112% Gilroy, Arial, sans-serif;
    text-transform: uppercase;
    color: var(--white-color)
}

.thanks__descr .dif-color {
    padding: 3px 3px 0;
    background: var(--white-color);
    color: #b22
}

.thanks__descr .small-txt {
    display: block;
    margin-top: 15px;
    text-transform: none;
    font-size: 22px;
    line-height: 27px;
    font-weight: 400
}

.thanks__descr .for-desc {
    display: block
}

.thanks .btns {
    flex-direction: column
}

.thanks .btns__descr {
    margin-bottom: 40px;
    font: 700 18px/130% Montserrat, Arial, sans-serif;
    text-transform: uppercase;
    color: var(--white-color)
}

.thanks .btns__descr .dif-color {
    background: #7bd3f1;
    border-radius: 12px
}

.thanks .btns__descr .small-txt {
    display: block;
    margin-top: 15px;
    text-transform: none;
    font-size: 22px;
    line-height: 27px;
    font-weight: 400
}

.thanks .btns__descr .for-desc {
    display: block
}

.thanks .btns__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 17px 70px;
    font: 600 26px/115% Montserrat, sans-serif;
    text-transform: uppercase;
    border-radius: 8px;
    color: #fdfcf8;
    transition: .3s
}

.thanks .btns__btn .link-img {
    width: 45px
}

.thanks .btns__btn .tg-img,
.thanks .btns__btn .wa-img {
    height: 45px
}

.thanks .btns__btn span {
    position: relative;
    transition: .6s
}

.thanks .btns__btn span::before {
    content: "";
    bottom: -3px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    color: var(--white-color);
    background: currentColor;
    transition: .6s;
    transform: scaleX(0)
}

.thanks .btns__btn:hover span::before {
    transform: scaleX(1)
}

.thanks .btns .tg {
    margin-bottom: 22px;
    background: linear-gradient(265deg, #3da7e1 -4.04%, #42ade4 19.97%, #4eb7e7 39.92%, #4db7e7 65.96%, #319dde 90.05%, #36a2e0 100.15%, #47b1e5 106.73%), radial-gradient(40.91% 40.91% at 50% 0, #42ea61 0, #3aa5e1 .01%, rgba(58, 165, 225, 0) 100%)
}

.thanks .btns .vk {
    background: linear-gradient(265deg, #0078ff -4.04%, #499fff 19.97%, #499fff 39.92%, #499fff 65.96%, #0078ff 90.05%, #0078ff 100.15%, #499fff 106.73%), radial-gradient(40.91% 40.91% at 50% 0, #42ea61 0, #3aa5e1 .01%, rgba(58, 165, 225, 0) 100%)
}

.thanks__img img {
    width: 800px
}

@media screen and (max-width:1200px) {
    .thanks {
        padding: 40px 0 35px;
        min-height: auto;
        background-image: url(../img/thanks-bg-1024.webp)
    }
    .thanks::before {
        display: none
    }
    .thanks__title {
        font-size: 45px
    }
    .thanks__percent {
        left: 68%;
        bottom: 33%
    }
    .thanks .bar {
        margin-bottom: 40px
    }
    .thanks .bar__text {
        text-align: center;
        font-size: 22px
    }
    .thanks .btns__btn__descr {
        font-size: 22px
    }
    .thanks .btns__btn .link-img {
        width: 40px
    }
    .thanks .btns__btn .tg-img,
    .thanks .btns__btn .wa-img {
        height: 40px
    }
    .thanks .btns__btn span {
        position: relative;
        transition: .6s
    }
    .thanks .btns__btn span::before {
        content: "";
        bottom: -3px;
        left: 0;
        position: absolute;
        width: 100%;
        height: 3px;
        color: var(--white-color);
        background: currentColor;
        transition: .6s;
        transform: scaleX(0)
    }
}

@media screen and (max-width:900px) {
    .thanks {
        background-color: var(--white-color);
        padding: 15px 0;
        background-image: url(../img/thanks-bg-360.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center
    }
    .thanks::before {
        display: block;
        background-image: url(../img/thanks-roman-360.webp);
        background-position: center center;
        background-size: cover;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 283px;
        height: 326px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }
    .thanks__wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center
    }
    .thanks__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
    .thanks__title {
        margin-bottom: 8px;
        text-align: center;
        font-size: 21px;
        line-height: 30px;
    }
    .thanks__percent {
        font-size: 15px;
        left: 71%;
        bottom: 53%
    }
    .thanks .bar {
        width: 100%;
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
        margin-bottom: 26px
    }
    .thanks .bar__line {
        min-width: -webkit-max-content;
        min-width: -moz-max-content;
        min-width: max-content;
        width: 100%;
        height: 36px;
        border-radius: 5px
    }
    .thanks .bar__text {
        margin-top: 5px;
        font-size: 16px
    }
    .thanks__descr {
        text-align: center;
        font-size: 14px
    }
    .thanks__descr br {
        display: none;
    }
    .thanks .btns {
        margin-top: 261px;
        width: 100%
    }
    .thanks .btns__btn {
        justify-content: center;
        min-height: 67px;
        padding: 0 20px;
        font-size: 19px;
        text-transform: uppercase;
        border-radius: 10px
    }
    .thanks .btns .tg {
        margin-bottom: 8px
    }
    .thanks .btns .link-img {
        padding-right: 0;
        width: 35px
    }
    .thanks .btns .tg-img {
        height: 35px
    }
    .thanks__img {
        display: none
    }
}

.disable-scroll,
.modal-overlay {
    position: fixed;
    left: 0;
    height: 100vh;
    width: 100%;
    top: 0
}

.modal-overlay {
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    overflow: auto
}

.modal {
    position: relative;
    align-items: center;
    justify-content: center;
    display: none;
    background-color: #1d1d1f;
    z-index: 40
}

.modal-overlay--visible {
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in-out
}

.modal--visible {
    display: block
}

.close-modal-btn {
    position: absolute;
    right: 10px;
    top: -20px
}

.close-modal-btn,
.close-modal-btn span {
    width: 20px;
    height: 20px
}

.close-modal-btn span::after,
.close-modal-btn span::before {
    content: "";
    background-color: var(--white-color);
    position: absolute;
    width: 30px;
    height: 3px;
    right: 0;
    top: 0;
    transition: .3s
}

.close-modal-btn span::after {
    transform: rotate(-45deg);
    border-radius: 20px
}

.close-modal-btn span::before {
    transform: rotate(-135deg);
    border-radius: 20px
}

.close-modal-btn span:hover::after,
.close-modal-btn span:hover::before {
    background-color: #dedede
}

.modal--1 {
    width: 650px;
    padding: 50px 30px 10px;
    border-radius: 15px;
    margin: 30px auto
}

.modal-form__title h2 {
    margin-bottom: 25px;
    font: 600 36px/49px Manrope, sans-serif;
    color: #1d1d1f;
    text-align: center
}

@media (max-width:800px) {
    .modal-overlay {
        display: block
    }
    .modal-form {
        width: auto;
        padding: 50px 20px
    }
    .modal--1 {
        margin: 10vh auto
    }
}

.footer {
    padding: 40px 0;
    color: #fff;
    z-index:5;
    width:100%;
    position:relative;
}
.footer__container {
    display: flex;
    justify-content: space-between;
}


.footer__legacy {
    margin-bottom:10px;
    display:flex;
    gap:30px;
}
.footer__adress {
    margin-bottom:10px;
}

.footer__content p {
    font: 400 14px/110% Manrope, Arial, sans-serif;
}

.footer__links {
    font: 400 14px/100% Manrope, Arial, sans-serif;
    display:flex;
    flex-direction:column;
    gap:10px;
    justify-content:center;
    text-align: right;
    color:#fff;
}

@media screen and (max-width:900px) {
    .footer {
        padding: 20px 0;
    }
    .footer__container {
        flex-direction:column;
    }
    .footer__legacy {
        flex-direction: column;
        align-items: center;
        gap: 10px
    }
    
    .footer__content p {
        font-size: 12px;
        text-align:center;
    }

    .footer__links {
        flex-direction: column;
        align-items: center;
        font-size: 12px;
    }
}
/* ========== POPUP (cookie-плашка) ========== */
.popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 500px;
  width:100%;
  background: #36454F;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popup--visible {
  display: flex;
  opacity: 1;
}

.popup__text {
  font-size: 12px;
  margin-bottom: 7px;
  color: #fff;
}

.popup__text a {
    text-decoration: underline;
}

.popup__btn {
  padding: 10px 20px;
  background-color: #0e0e0e;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup__btn:hover {
  background-color: #0056b3;
}

@media screen and (max-width:900px) {
    .popup {
        max-width: calc(100% - 40px);
        padding: 10px;
    }
    .popup__text {
        font-size:10px;
    }
}

