@font-face {
    font-family: "Inter";
    src: local("Inter"), url(/css/fonts/Inter-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: local("Inter"), url(/css/fonts/Inter-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: local("Inter"), url(/css/fonts/Inter-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

:root {
    --dark-color: #3F4955;
    --min-font-size: 12px;
    --middle-font-size: 20px;
    --header-font-size: 40px;
    --button-font-size: 20px;
    --text-color: #000;
}

:focus-visible {
    outline: none;
}

html {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

main {
    overflow-x: hidden;
}

.container {
    width: calc(100% - 400px);
    max-width: 1700px;
    padding: 0 200px;
    margin: 0 auto;
}

#nav {
    margin-top: 70px;
}

img {
    max-width: 100%;
}

.navlink {
    display: flex;
}

.navlink>a {
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
}

.nav-first_level {
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 160px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/images/Logo.png);
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.btn-ye {
    background-color: #FFBB01;
    padding: 20px 60px;
    border-radius: 75px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: var(--button-font-size);
    color: var(--text-color);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 1s ease;
    z-index: 1;
}

.btn-ye:after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFBE00 0%, #FF1F6C 100%);
    /* border-radius: 100px; */
    transition: all 1s ease;
    z-index: -1;
}

.btn-ye:hover:after {
    left: 0;
}

.btn-ye:hover {
    color: #fff;
}

#first_block {
    margin-top: 90px;
}

.d-flex {
    display: flex;
    justify-content: space-between;
}

.align-items-wrapper {
    display: flex;
    align-items: center;
}

.first_block-left {
    width: 100%;
    max-width: 500px;
}

.first_block-left-middlediv {
    margin: 69px 0;
}

.first_block-pic_bg {
    background-image: url(/images/first_block_pic_1.png);
    /* width: 611px; */
    /* max-width: 100%; */
    /* height: 548px; */
    background-size: cover;
}

.free_access_pic_bg {
    background-image: url(/images/free_access_pic_1.png);
    width: 654px;
    height: 521px;
    background-size: cover;
    background-size: contain;
    background-repeat: no-repeat;
}

.faq_answer {
    background: #FFFFFF;
    box-shadow: 4px 4px 12px rgba(135, 135, 135, 0.25);
    border-radius: 15px;
    /* padding: 30px; */
    margin-bottom: 20px;
}

h1,
h2 {
    font-size: 40px;
    font-weight: 500;
}

h2 {
    text-align: center;
    margin-bottom: 100px;
}

#about {
    margin-top: 90px;
    background-image: url(/images/about_bg.png);
    background-position: left top 8vh;
    background-repeat: no-repeat;
    padding-bottom: 90px;
    height: 100vh;
}

.about_klyaksa {
    background-image: url(/images/about_bg.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 752px;
    height: 651px;
    position: absolute;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.panel {
    /* padding: 0 18px; */
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
    padding-left: 55px;
}

.about-card-container {
    position: relative;
    width: 600px;
    max-width: 100%;
}

.about-card {
    background: #FFFFFF;
    box-shadow: 4px 4px 12px rgba(135, 135, 135, 0.25);
    border-radius: 26px;
    padding: 25px;
    /* display: flex;
    align-items: center; */
    /* width: 600px; */
    max-width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.about-card-question {
    display: flex;
    align-items: center;
}

.about-card-question>img {
    min-width: 35px;
    margin-right: 20px;
}

.about-card-question-title {
    font-weight: 600;
}

#claim {
    margin-top: 90px;
    background-image: url(/images/claim_bg.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    padding-bottom: 190px;
}

.claim-card {
    padding: 20px 20px 80px;
    background: #FBFBFB;
    box-shadow: 4px 4px 12px rgba(135, 135, 135, 0.25);
    border-radius: 18px;
    width: 100%;
    max-width: 350px;
}

.claim-card-title {
    margin: 30px 0;
    text-align: center;
    font-weight: 600;
    font-size: var(--middle-font-size);
}

.claim-card-text,
.claim-card-img {
    text-align: center;
    font-size: var(--middle-font-size);
}

#how-it-works {
    margin-top: 90px;
}

#free-access {
    background-image: url(/images/free_access_bg.png);
    background-position: right 10% bottom;
    background-repeat: no-repeat;
    display: flex;
    gap: 80px;
    justify-content: center;
    padding: 100px 0;
}

.free-access-wrapper {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.free-access-right {
    width: 100%;
    max-width: 628px;
}

.free-access-middlediv {
    margin: 50px 0;
}

footer {
    padding: 90px;
    background-color: #F8F8F8;
}

.footer-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-items>div {
    text-align: center;
}

.footer-link {
    text-decoration: none;
    color: var(--text-color);
}

#how-to-start {
    padding: 200px 0;
}

.HTS-card {
    border: 2px solid #FF0057;
    border-radius: 15px;
    padding: 50px 10px;
    position: relative;
    width: calc(100% - 20px);
    max-width: calc(370px - 20px);
    text-align: center;
}

.HTS-card-number {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    left: calc(50% - 28px);
    top: -28px;
    background-color: #FF0057;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.HTS-card-title {
    font-weight: 600;
    margin-bottom: 20px;
}

#form {
    margin: 100px 0;
    background-image: url(/images/form_bg.png);
    background-size: cover;
}

.form-div {
    background-color: #FF0057;
    border-radius: 76px;
    padding: 40px;
    width: calc(100% - 80px);
    max-width: calc(620px - 80px);
    margin: 0 auto;
}

.faq-div {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.form-div-title {
    color: #fff;
    font-weight: 500;
    font-size: 50px;
    text-align: center;
}

.form-div-text {
    color: #fff;
    font-size: var(--middle-font-size);
    font-weight: 500;
    text-align: center;
    margin: 40px 0 30px;
}

.subscribe-input {
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.57);
    color: rgba(255, 255, 255, 0.57);
    font-size: var(--middle-font-size);
    padding: 20px 5px;
    margin-bottom: 14px;
}

.form-label {
    color: #fff;
}

.form-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.form-btn {
    color: var(--text-color);
    border: none;
    padding: 20px 60px;
    font-size: var(--button-font-size);
    border-radius: 45px;
    font-weight: 500;
    cursor: pointer;
    background-color: #fff
}

.subscribe-input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.57);
    opacity: 1;
    /* Firefox */
}

#faq {
    margin: 200px 0;
}

.faq-div-item {
    padding: 30px 20px;
    background-color: #F8F8F8;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    font-size: var(--middle-font-size);
    margin-bottom: 24px;
    border-radius: 15px;
    cursor: pointer;
}

.free_access_pic_man {
    margin-left: -14px;
    margin-top: -2px;
}

.faq-div-item-icon {
    background-image: url(/images/faq_icon.png);
    min-width: 34px;
    height: 34px;
    margin-right: 50px;
}

.d-flex-center {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.up {
    border-radius: 50px;
    background-color: #FF1F6C;
    opacity: .62;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=62)";
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    left: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    z-index: 300;
    -webkit-transition: .3s ease;
    transition: .3s ease
}

.up:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

.show_up_btn {
    display: flex;
}

.about-card-container>div {
    position: absolute;
}

.about-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    /* flex-wrap: wrap; */
}

.how-it-works-container {
    background: #FFFFFF;
    box-shadow: 4px 4px 12px rgba(135, 135, 135, 0.25);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    padding: 40px;
    width: fit-content;
    margin: auto;
}

.how-it-works-card {
    width: 100%;
    max-width: 240px;
    text-align: left;
    font-weight: 500;
}

.how-it-works-title {
    color: rgba(0, 0, 0, 0.32);
    margin-bottom: 33px;
}

.how-it-works-vertical-separator {
    min-width: 2px;
    height: 80px;
    background-color: #DEDEDE;
    margin: 10px 20px;
}

.how-it-works-horizon-separator {
    height: 2px;
    width: 80px;
    background-color: #DEDEDE;
    display: none;
    margin: 20px 0;
}

#betaTest {
    margin-top: 160px;
}

.betaTest-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.betaTest-firstline-header {
    font-size: 32px;
    max-width: 626px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 10px;
}

.betaTest-firstline-text {
    max-width: 600px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
}

.betaTest-prebutton-text {
    font-size: 20px;
    max-width: 230px;
    font-weight: 600;
    margin-bottom: 50px;
}

.betaTest-text {
    width: 100%;
    max-width: 460px;
    margin-bottom: 10px;
}

.betaTest-separator {
    width: 2px;
    height: 100%;
    background-color: #E0E0E0;
    margin: 0 95px 0 50px;
}

.betaTestForm {
    margin: 100px 0;
}

.betaTestForm-wrap {
    background-color: #FF0057;
    border-radius: 25px;
    padding: 30px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: fit-content;
}

.betaTestForm-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 60px 48px;
    max-width: calc(620px - (48px * 2));
    width: calc(100% - 90px);
}

#betaTestForm {
    padding: 50px 0;
}

.betaTestForm-form-input {
    border: none;
    background-color: #F2F2F2;
    color: #828282;
    padding: 20px 35px;
    width: calc(100% - 70px);
    margin-bottom: 16px;
    font-size: 16px;
    border-radius: 100px;
}

.betaTestForm-header {
    font-size: 40px;
    font-weight: 600;
}

.betaTestForm-img {
    width: 100%;
    max-width: 399px;
    height: 376px;
    background-image: url(/images/betaTest.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.betaTestForm-img-text {
    color: #6f6f6f;
    width: 100%;
    max-width: 270px;
}

.betaTestForm-img-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.betaTestForm-info {
    color: #4F4F4F;
    font-size: 12px;
    text-align: left;
    margin-left: 4px;
    display: inline-block;
}

.betaTestForm-info>a {
    color: #4F4F4F;
}

.b24-widget-button-position-bottom-right {
    right: 20px !important;
    bottom: 20px !important;
}