*, :before, :after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: Lexend, sans-serif;
    font-size: 24px;
    background: url("../img/main-bg.png") no-repeat, #2B3143;
    background-size: cover;
    background-position-x: 300px;
    overflow: hidden;
}

h1, h2 {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.green-text {
    color: #34C38F;
    font-weight: 800;
}

.text {
    font-family: Lexend, sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.contact-btn {
    background-color: #34C38F;
    color: #FFFFFF;
    padding: 12px 32px;
    height: 56px;
    max-width: 210px;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
    font-family: "Archivo Black", sans-serif;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    border: none;
}

.contact-btn:hover {
    transform: scale(1.01);
}

.hide {
    display: none !important;
}

.container {
    max-width: 1480px;
    padding: 0 20px;
    margin: 0 auto;
}

header {
    width: 100%;
    padding: 32px 0;
    position: fixed;
    top: 0;
}

footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 32px 0;
    background: linear-gradient(180deg, rgba(42, 48, 66, 0) 12.75%, #2A3042 87.01%);
}

footer .footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-wrapper .wrapper {
    display: flex;
    flex-direction: column;
    max-width: 433px;
    width: 100%;
    gap: 12px;
}

footer .footer-wrapper .wrapper .highlight-text {
    font-family: Lexend, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

footer .footer-wrapper .wrapper .highlight-text a {
    display: inline-block;
    font-family: Lexend, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    text-decoration: underline;
}

footer .footer-wrapper .wrapper .text {
    font-family: Lexend, sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    max-width: 365px;
}

section.main-content {
    position: relative;
}

section.main-content .big-img {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

section.main-content .easy-scan-img {
    right: 100px;
    height: 880px;
}

section.main-content .open-app-img {
    right: 1px;
    height: 880px;
}

section.main-content .scan-code-img {
    right: 50px;
    height: 920px;
}

section.main-content .get-info-img {
    right: 0;
    height: 860px;
}

section.main-content ul.main-content-list li {
    max-width: 683px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    height: 100vh;
}

section.main-content ul.main-content-list li h1, section.main-content ul.main-content-list li h2 {
    margin-top: -200px;
}

.download-wrapper {
    display: flex;
    gap: 32px;
}

section.main-content .main-content-nav-wrapper {
    position: absolute;
    right: 8%;
    top: 40%;
    z-index: 10;
    user-select: none;
}

section.main-content .main-content-nav-wrapper .nav-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

section.main-content .main-content-nav-wrapper .nav-btn {
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    opacity: .6;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.2s all linear;
}

section.main-content .main-content-nav-wrapper .nav-btn.active {
    height: 38px;
    opacity: 1;
    border-radius: 39px;

}

.mobile-btn {
    display: none;
}

.mobile-img {
    display: none;
}

.modal .modal-content .input-wrapper {
    position: relative;
}

.modal .modal-content .input-wrapper input:focus {
    outline: none;
}

.modal .modal-content .input-wrapper input:focus ~ label, .modal .modal-content .input-wrapper input:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 14px;
    color: #FFFFFF;
}

.modal .modal-content .input-wrapper label {
    position: absolute;
    top: 18px;
    left: 16px;

    color: #FFFFFF;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    transition: .1s all linear;
}

.backdrop {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(70px);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 30;
    top: 0;
}

.modal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
    z-index: 50;

}

.modal.contact-us-modal {
    background: #2B3143;
    box-shadow: 0px 4px 4px 0px #00000040;
    width: 993px;
    border-radius: 60px;
    padding: 60px;
    text-align: center;
}

.modal.contact-us-modal .modal-content {
    max-width: 580px;
    margin: 0 auto;
}

.modal .close-modal {
    background: transparent;
    border: none;
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
}

.modal h3 {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.modal .text {
    font-family: Lexend, sans-serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
}

.modal .inputs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

input[type=text] {
    max-width: 580px;
    width: 100%;
    height: 60px;
    background: #3A425A;
    border: 1px solid #8A8A8A;
    padding: 22px 12px 14px 16px;
    border-radius: 12px;

    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 124%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #34C38F;
}

.modal .modal-content .input-wrapper input.error ~ label {
    color: #E45555;
}

input[type=text]:valid {
    border: 1px solid #34C38F;
}

input[type=text].error {
    border: 1px solid #E45555;
    color: #E45555;
}

textarea {
    max-width: 580px;
    min-width: 580px;
    height: 96px;
    background: #3A425A;
    border: 1px solid #8A8A8A;
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #FFFFFF;
    padding: 14px 12px 14px 16px;
    border-radius: 12px;
}

textarea::placeholder {
    font-family: Lexend, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #FFFFFF;
}

.submit-btn {
    font-family: Archivo Black, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
    max-width: 580px;
    width: 100%;
    height: 56px;
    border: none;
    background: #34C38F;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.modal.contact-us-modal .logo-mobile {
    display: none;
}

section.privacy-policy {
    height: auto;
    padding: 90px 0;
}

body.privacy-policy-page {
    overflow: auto;
    background: url("../img/privacy-policy-bg.png") center center/cover, #2A3042;
}

header.privacy-policy-page {
    position: relative;
}

footer.privacy-policy-page {
    position: relative;
    background: transparent;
}

section.privacy-policy h1 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    color: #34C38F;
}

section.privacy-policy h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
}

section.privacy-policy h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #34C38F;
}

section.privacy-policy .text {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
}

ul.text-list {
    list-style-type: circle;
    padding-left: 18px;
}

ul.text-list li {
    list-style-type: disc;
    color: #FFFFFF;
    font-size: 18px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-16 {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    section.privacy-policy h1 {
        font-size: 26px;
        line-height: 1;
    }

    section.privacy-policy h2 {
        font-size: 20px;
        line-height: 1;
    }

    section.privacy-policy h3 {
        font-size: 16px;
        line-height: 1;
    }

    section.privacy-policy .text {
        font-size: 16px;
        line-height: 1;
    }
}