@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-SemiBold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Poppins";
    src: url(../fonts/Poppins-Regular.ttf);
    font-weight: 400;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

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

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

.ul-style-none {
    padding: 0;
    margin: 0;
}

.ul-style-none li {
    padding: 0;
    list-style-type: none;
}

a {
    color: #eaf279;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

input:not([type=checkbox], [type=radio]),
input:not([type=checkbox], [type=radio]):focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    -webkit-appearance: none;
}

.modal__bg {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    display: none;
}

.modal {
    max-width: 450px;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 90;
    display: none;
}

.modal.active,
.modal__bg.active {
    display: block;
}

.modal-body {
    width: 100%;
    height: 100%;
    padding: 30px;
    position: relative;
}

.modal-title {
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
}

body.show-modal {
    overflow: hidden;
}

.close {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.close .inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.close .inner::before,
.close .inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
}

.close .inner::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.close .inner::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}


/*.menu {*/


/*  display: -webkit-box;*/


/*  display: -ms-flexbox;*/


/*  display: flex;*/


/*}*/

.menu a {
    padding: 5px;
}

.menu a:hover {
    opacity: 0.7;
}

.mobile-nav .menu {
    display: block;
}

.mobile-nav li {
    margin-right: 0;
    margin-bottom: 5px;
}

.mobile-nav li a {
    font-size: 14px;
}

.mobile-nav {
    margin-bottom: 25px;
}

.mobile-wrap {
    max-width: 450px;
    width: 100%;
    height: 100vh;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 70;
}

.mobile-wrap.active {
    right: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.mobile-body {
    width: 100%;
    height: 100%;
    padding: 70px 15px 30px 30px;
    position: relative;
}

.mobile-body .close {
    position: absolute;
    top: 25px;
    right: 25px;
}

.mobile-body .close .inner::before,
.mobile-body .close .inner::after {
    background-color: #fff;
}

.mobile-nav .menu a {
    color: #fff;
}

.mobile-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    display: none;
}

.mobile-btn .inner,
.mobile-btn::before,
.mobile-btn::after {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
}

.mobile-btn .inner {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile-btn::before {
    content: "";
    top: 0;
}

.mobile-btn::after {
    content: "";
    bottom: 0;
}

.mobile-wrap-btns {
    margin-top: 30px;
}

.mobile-wrap-btns .btn {
    display: block;
    margin-bottom: 15px;
}

.mobile-wrap-btns .btn:last-child {
    margin-bottom: 0;
}

.tab {
    margin-bottom: 30px;
    border: 1px solid #000;
    border-radius: 15px;
    padding: 30px;
}

.tab-title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.tab-ans {
    line-height: 1.3;
    margin-top: 25px;
    display: none;
}

.tab.active .tab-ans {
    display: block;
}

.wrap {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    padding: 15px 50px;
    border-radius: 150px;
    padding-top: 30px;
    margin-bottom: 50px;
}

.header.fixed {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
    margin-top: 0;
    border: none !important;
    border-radius: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.header-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-btns {
    display: flex;
    align-items: center;
}

.header-btns .btn {
    width: 150px;
    margin-left: 10px;
}

.btn.register-btn {
    background-color: transparent !important;
}

.header-btns .lang-switcher {
    margin-left: 15px;
}

.custom-logo-link {
    width: 150px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-logo-link img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}

.section {
    margin-bottom: 150px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
}

.section-title span {
    position: relative;
}

.section.banner {
    padding-top: 0;
}

.banner {
    height: 600px;
}

.banner-content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.banner-img {
    width: 46%;
    height: 100%;
    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;
    position: relative;
}

.banner-img img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.circle {
    border-radius: 150%;
    position: absolute;
}

.banner-img .circle {
    width: 100%;
    aspect-ratio: 1/1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.has-border {
    position: relative;
}

.has-border::before,
.has-border::after {
    content: "";
    display: block;
    width: 1px;
    height: 90%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.has-border::before {
    left: 0;
}

.has-border::after {
    right: 0;
}

.offer {
    width: 50%;
    padding-left: 15px;
}

.offer-title h1 {
    font-size: 92px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.offer-subtitle {
    font-size: 27px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.offer-desc {
    margin-bottom: 35px;
    font-size: 18px;
}

.offer-btn {
    max-width: 300px;
    width: 100%;
    line-height: 55px;
}

.btn {
    display: inline-block;
    padding: 0 15px;
    line-height: 58px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: inherit;
    border-radius: 10px;
}

.btn:hover {
    opacity: 0.7;
}

.slots-hot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.slots-hot .slots-item:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
}

.slots-hot .slots-item:first-child .item__img {
    aspect-ratio: 30/22;
}

.slots-hot .slots-item .item__img {
    aspect-ratio: 30/19;
}

.slots-hot .slots-item .item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slots-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.slots-item {}

.slots-item .item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.slots-item .item__title {
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}

.slots-item:hover img {
    opacity: 0.7;
}

.content {
    overflow: hidden;
    position: relative;
}

.content .circle {
    width: 600px;
    height: 600px;
    position: absolute;
    top: 50%;
    right: -500px;
    transform: translateY(-50%);
}

.content-title {
    font-size: 45px;
    text-align: center;
    line-height: 1;
    margin-bottom: 30px;
}

.content-text {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.5;
}

.elements {
    position: relative;
    overflow: hidden;
}

.elements .circle {
    width: 600px;
    height: 600px;
    top: 50%;
    left: -500px;
    transform: translateY(-50%);
}

.elements .wrap {
    max-width: 1170px;
}

.elements-item {
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.elements-item:nth-child(even) {
    flex-direction: row-reverse;
}

.elements-item-content,
.elements-item-image {
    width: 48%;
}

.elements-item:last-child {
    margin-bottom: 0;
}

.elements-item-title {
    margin-bottom: 20px;
}

.elements-item-text {
    font-size: 24px;
}

.elements-item-title h2 {
    font-size: 35px;
    font-weight: 600;
}

.elements-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.elements-item-text.has-border::after {
    display: none;
}

.elements-item-image {
    aspect-ratio: 57/32;
}

.elements-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elements-item:nth-child(even) .elements-item-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.footer {
    padding: 50px 0;
}

.pay-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.own {
    font-size: 13px;
}

.page .section {
    padding-top: 0;
}

.lang-switcher {
    position: relative;
}

.lang-switcher-current li:not(.current-lang) {
    display: none;
}

.lang-switcher li {
    list-style-type: none;
}

.lang-switcher li:last-child {
    margin-right: 0;
}

.lang-switcher li img {
    width: 25px !important;
    height: 17px !important;
    border-radius: 3px;
}

.lang-switcher-list {
    padding: 5px 15px;
    border: 1px solid rgb(68, 68, 68);
    border-radius: 5px;
    backdrop-filter: blur(53.5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    display: none;
}

.lang-switcher-list li {
    margin-bottom: 5px;
    line-height: 1;
}

.lang-switcher:hover .lang-switcher-list {
    display: block;
}

.mobile-wrap .lang-switcher ul {
    display: flex;
}

.mobile-wrap .lang-switcher ul li {
    margin-right: 10px;
}

.mobile-wrap .lang-switcher ul li:last-child {
    margin-right: 0;
}

.header .nav {
    padding: 0 25px;
}

.header .nav ul li a {
    white-space: nowrap;
}

.header .nav ul {
    flex-wrap: wrap;
    justify-content: center;
}

.header .nav ul li {
    margin-bottom: 10px;
}

.offer-btns {
    display: flex;
    align-items: center;
}

a.social-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 150%;
    margin-left: 15px;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.social-icon svg {
    width: 65%;
    height: 65%;
}

.header-menu {
    position: relative;
}

.header-menu-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.header-menu:hover .header-menu-list {
    display: block;
}

.header-menu-list {
    min-width: 250px;
    padding: 15px;
    border: 1px solid rgb(68, 68, 68);
    border-radius: 17px;
    backdrop-filter: blur(53.5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
}

.page-title h1 {
    font-size: 49px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
}

.template-1-content {
    max-width: 1225px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.template-1-image.banner-img {
    width: 100%;
    margin-bottom: 30px;
}

.template-1-content .headers {
    max-width: 1227px;
    width: 100%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid rgb(55, 55, 55);
    overflow: hidden;
    font-size: 49px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.template-1-content .headers .title__top {
    width: 100%;
    padding: 10px 15px;
    background: rgba(60, 60, 60, 0.92);
    color: rgb(234, 242, 121);
}

.template-1-content .headers .title__top {
    padding: 10px 15px;
    font-size: inherit;
    display: block;
}

.template-desc {
    max-width: 970px;
    text-align: center;
    margin: 0 auto 50px;
}

.template-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.template-wrap {
    margin-bottom: 100px;
}

.block-with-icon {
    max-width: 550px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-with-icon .block-icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    margin-right: 50px;
}

.block-with-icon .block-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-with-icon .block-content-title {
    color: #9A9A9A;
    text-align: center;
}

.block-with-icon .block-content-text {
    font-size: 62px;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}

.block-with-line {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
}

.block-with-line::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.block-with-line .left-block,
.block-with-line .right-block {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.block-with-line .left-block {
    padding-right: 50px;
}

.block-with-line .right-block {
    padding-left: 50px;
}

.block-with-line .top__line {
    color: #9A9A9A;
}

.block-with-line .bottom__line {
    font-size: 29px;
    font-weight: 700;
}

.template-2 {
    text-align: center;
    margin-bottom: 100px;
}

.template-2 .banner-img {
    width: 100%;
    margin-bottom: 30px;
}

.template-2 .subtitle {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 25px;
}

.template-2 .desc {
    margin-bottom: 50px;
}

.template-2 .btn.offer-btn {
    margin-bottom: 50px;
}

.template-2 .bottom-block-title {
    color: #9A9A9A;
}

.template-2 .bottom-block-text {
    font-size: 22px;
    font-weight: 700;
}

.page-content {
    margin-bottom: 100px;
}

.page-text {
    max-width: 990px;
    margin: 0 auto;
}

.page-content .banner-img {
    width: 100%;
    margin-bottom: 50px;
}


/* Adaptive */

@media (max-width: 1440px) {
    .elements .circle {
        left: -550px;
    }
    .content .circle {
        right: -550px;
    }
}

@media (max-width: 1350px) {
    .has-border::before,
    .has-border::after {
        display: none;
    }
    .offer-title h1 {
        font-size: 60px;
    }
    .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    body {
        font-size: 16px;
    }
    .elements .circle,
    .content .circle {
        display: none;
    }
    .template-1-content .headers {
        font-size: 35px;
    }
}

@media (max-width: 1100px) {
    .header {
        width: 95%;
        padding: 10px 15px;
        margin-top: 15px;
    }
    .custom-logo-link {
        max-width: 100px;
        height: 50px;
    }
    .custom-logo-link img {
        display: block;
    }
    .header-btns {
        display: none;
    }
    .header-menu {
        display: none;
    }
    .mobile-btn {
        display: block;
    }
    .content-text,
    .elements-item-text,
    .slots-item .item__title {
        font-size: 16px;
    }
    .block-with-icon .block-content-text {
        font-size: 35px;
    }
    .block-with-icon .block-icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        margin-right: 25px;
    }
    .block-with-line .left-block {
        padding-right: 20px;
    }
    .block-with-line .right-block {
        padding-left: 20px;
    }
    .block-with-line .bottom__line {
        font-size: 20px;
    }
    .block-with-line {
        margin-bottom: 50px;
    }
    .template-2 .bottom-block-text {
        font-size: 16px;
    }
    .page-title h1 {
        font-size: 40px;
    }
    .slots-hot .slots-item:first-child {
        grid-column: auto;
        grid-row: auto;
    }
    .slots-hot .slots-item:first-child .item__img {
        aspect-ratio: 30/19;
    }
}

@media (max-width: 900px) {
    .wrap {
        padding: 0 15px;
    }
    .section {
        padding-top: 50px;
    }
    .slots-row {
        gap: 15px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    img {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }
    .section {
        margin-bottom: 50px;
    }
}

@media (max-width: 850px) {
    body {
        font-size: 14px;
    }
    .banner-content {
        display: block;
    }
    .banner {
        padding-bottom: 30px;
        height: auto;
    }
    .banner-img {
        max-width: 500px;
        width: 100%;
        margin: 0 auto 50px;
    }
    .offer {
        max-width: 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .offer-btns {
        flex-direction: column-reverse;
    }
    .offer-btn {
        margin-bottom: 20px;
    }
    .section-title span::before {
        display: none;
    }
    .elements-item-row {
        display: block;
    }
    .elements-item {
        margin-bottom: 50px;
    }
    .elements-item:last-child {
        margin-bottom: 0;
    }
    .elements-item-text {
        width: 100%;
        padding: 0;
        margin-top: 0;
    }
    .elements-item-title h2 {
        font-size: 25px;
    }
    .template-1-content .headers {
        position: static;
        transform: translateX(0);
        margin-bottom: 30px;
    }
    .template-wrap {
        margin-bottom: 50px;
    }
    a.social-icon {
        margin-bottom: 20px;
    }
    .slots-hot {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .offer-title h1 {
        font-size: 40px;
    }
    .section.banner {
        padding-bottom: 0;
    }
    .btn {
        line-height: 45px;
    }
    .slots-row {
        grid-template-columns: 1fr 1fr;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .elements-item {
        display: block;
    }
    .elements-item-content,
    .elements-item-image {
        width: 100%;
    }
    .slots-hot {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    body {
        font-size: 14px;
    }
    .slots-item .item__title {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .section-title {
        font-size: 35px;
    }
    .header-btns .btn {
        width: 100px;
    }
    .elements-item {
        margin-bottom: 30px;
    }
    .elements-item-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 450px) {
    .header-btns .btn:nth-child(2) {
        margin-top: 5px;
    }
}