* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--default-link-color);
}

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

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

body, html {
    padding: 0;
    margin: 0;
}

body {
    background: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

h1 {
    font-size: 66px;
    font-weight: bold;
    color: var(--main-text-color);
    margin-bottom: 40px;
    text-align: center;
}

.sub-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--main-text-color);
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
    line-height: 120%;
}

h2 {
    font-size: 45px;
    font-weight: 600;
    color: var(--main-text-color);
    margin-bottom: 30px;
}

.section-block {
    margin: 50px 0;
}

.section-block-special {
    padding: 20px 60px;
    border-radius: 20px;
    background: var(--special-section-bg);
}

.section-block-special img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
}

.text-center {
    text-align: center;
}

.list {
    margin: 5px 0;
    margin-bottom: 20px;
}

.list li {
    color: var(--main-text-color);
    padding: 4px 0;
    font-size: 18px;
    list-style-type: disc;
    margin-left: 30px;
}

p, table {
    line-height: 180%;
    text-align: justify;
    margin: 10px 0;
    font-size: 18px;
    color: var(--main-text-color);
}

p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.header {
    background: var(--bg-header);
    width: 100%;
    margin-bottom: 50px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.btn {
    padding: 10px 15px;
    border: none;
    color: var(--btn-text-color);
    text-decoration: none;
    font-size: 17px;
    border-radius: 20px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-big {
    padding: 12px 20px;
    border: none;
    color: var(--btn-text-color);
    text-decoration: none;
    font-size: 26px;
    border-radius: 20px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn:hover {
    filter: brightness(85%);
}

.btn-signup {
    background: var(--btn-bg-signup-colr);
    margin-right: 5px;
}

.btn-login {
    background: var(--btn-bg-login-color);
}

.btn-get-bonus {
    background: var(--btn-bg-get-bonus-colr);
    font-size: 26px;
}

.btn-reverse {
    background: var(--btn-text-color);
    color: var(--btn-bg-get-bonus-colr);
}

.logo {
    width: 160px;
}
.logo img {
    width: 100%;
}

.nav-header ul {
    display: flex;
    gap: 30px;
}

.nav-header ul li a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 0;
    background: var(--bg-color);
    overflow: hidden;
    transition: width 0.4s;
    z-index: 100;
}

.side-panel ul {
    padding: 80px 0;
}

.side-panel li {
    font-size: 18px;
    white-space: nowrap;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.side-panel li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.side-panel-open {
    display: none;
    border: none;
    background: transparent;
    color: var(--main-text-color);
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
}

.side-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: transparent;
    color: var(--main-text-color);
    font-size: 38px;
    width: 40px;
    height: 40px;
    font-weight: bold;
    cursor: pointer;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.nav-list li {
    width: 50%;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 17px;
    text-transform: uppercase;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-bottom: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -1px 22px 88px -20px var(--hero-shadow-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.approve-block, .disapprove-block {
    width: 50%;
}

.approve-block p, .disapprove-block p {
    position: relative;
    margin-left: 35px;
    font-size: 20px;
}

.approve-block p:after, .disapprove-block p:after {
    position: absolute;
    display: block;

    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
}

.approve-block p:after {
    content: url("../assets/approve.svg");
}

.disapprove-block p:after {
    content: url("../assets/disapprove.svg");
}

footer {
    background: var(--bg-footer);
    margin-top: auto;
    width: 100%;
}

.footer-content {
    display: flex;
    padding: 50px 0;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-content:last-child {
    border-top: 1px solid #595959;
}

.footer-content ul {
    display: flex;
    gap: 20px;
}

.footer-content ul li a {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banners-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
}

.footer-small {
    font-size: 14px;
    font-weight: 300;
    color: #b8b8b8;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: left;
}

.faq-block {
    border-top: 1px solid var(--faq-color);
    padding: 20px;
}

.faq-block:last-child {
    border-bottom: 1px solid var(--faq-color);
}

.faq-block-title {
    color: var(--main-text-color);
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.faq-block-text {
    margin: 0;
}

@media screen and (max-width: 1150px) {
    .nav-header {
        display: none;
    }
    .nav-footer ul {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .side-panel-open {
        display: block;
    }
    .btn-container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding: 0 40px;
    }
}

@media screen and (max-width: 850px) {
    .hero-section {
        flex-direction: column;
    }
    .approve-block, .disapprove-block {
        width: 100%;
    }
    .footer {
        padding: 50px 0;
    }
    .footer-content {
        padding: 10px 0;
        flex-direction: column;
        gap: 40px;
    }
    .footer-content ul {
        flex-direction: column;
        align-items: center;
    }
    .footer-content:last-child {
        flex-direction: column-reverse;
        border-top: none;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 46px
    }
    .sub-title {
        font-size: 22px
    }
    h2 {
        font-size: 32px;
        text-align: center;
    }
    p {
        font-size: 14px;
    }
    .list li {
        font-size: 14px;
    }

    header {
        margin-bottom: 60px;
    }
    .header-content {
        padding: 24px 0 65px;
    }
    .btn-container {
        display: flex;
        position: absolute;
        width: calc(100% - 40px);
        top: 90px;
        padding: 0;
    }
    .btn-signup, .btn-login {
        width: 100%;
    }
    .faq-block-title {
        font-size: 16px;
    }
    .section-block-special {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 500px) {
    .nav-list li {
        width: 100%;
    }
}

