* {
    box-sizing: border-box;
    font-family: "Inter", serif;
    color: #fff;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.flex-row-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.max-width {
    max-width: 1200px;
    width: 100%;
}

.header {
    width: 100%;
    background: #170835;
    padding: 10px;
    height: 50px;
    justify-content: space-around;
}

.logo {
    width: max-content;
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
}

.logo a {
    margin: 0;
}

.logo span {
    color: #B640FF;
}

.logo img {
    margin-left: 10px;
}

.nav a, .menu-wrapper a {
    margin: 0 10px;
    font-size: 20px;
    font-style: italic;
    color: #C3A6FF;
    font-weight: 900;
}

.nav a:hover {
    color: #B640FF;
}

.nav-mobile {
    display: none;
    cursor: pointer;
}

.menu-wrapper {
    position: absolute;
    width: 100%;
    background: #170835;
    top: 0;
    padding: 10px;
    display: none;
}

.menu-wrapper a {
    margin: 10 0;
}

.opened {
    display: flex;
    animation: menu-open 0.5s forwards;
}


/* content */

.main {
    padding: 50px 15px 15px 15px ;
    background-color: #0D0420;
    background-image: url("../assets/images/bg.png");
    background-size: 100%;
    background-repeat: no-repeat;
    justify-content: flex-start;
}

.title {
    text-align: center;
}

.title h1 {
    color: #B640FF;
    font-weight: 800;
    font-style: italic;
    font-size: 48px;
}

.title p {
    font-weight: 400;
    font-size: 20px;
    font-style: italic;
}

.title-cards {
    gap: 15px;
    margin-top: 30px;
}

.title-card {
    max-width: 380px;
    background: #170835;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    gap: 8px;
    height: 90px;
}

.offers {
    margin-top: 40px;
    margin-bottom: 40px;
}

.title-card p:first-child {
    font-size: 20px;
    font-weight: 700;
}

.title-card p:last-child {
    font-size: 14px;
    font-weight: 400;
    color: #C3A6FF;
}

.offer {
    width: 100%;
    border-radius: 25px;
    background: #170835;
    padding: 10px;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    height: 150px;
    margin: 10px 0;
}


.offer-title {
    color: #B640FF;
    height: 30px;
}

.offer-rate {
    color: black;
    background: #B640FF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    margin-right: 6px;
}

.offer-title p {
    color: #B640FF;
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
}

.offer-title img {
    height: 55px;
}

.offer-bonus, .offer-logo {
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
}

.offer-notation {
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 162px;
    cursor: pointer;
}

.offer-action {
    height: 100%;
}

.offer-btn {
    width: 270px;
    height: 50px;
    font-weight: 800;
    font-size: 20px;
    font-style: italic;
    background: #B640FF;
    padding: 10px;
    border-radius: 95px;
    cursor: pointer;
}

.offer-btn:hover {
    transform: scale(1.02);
    transition: 0.5s;
}

.bonus-value {
    font-weight: 900;
    font-style: italic;
    font-size: 32px;
    text-wrap: nowrap;
}

.bonus-value span {
    color: #B640FF;
}

.raiting img {
    height: 20px;
    width: 20px;
    margin-right:5px;
}


.offer-logo {
    width: 300px;
}

.offer-logo img {
    height: 120px;
}

.offer-bonus {
    width: 350px;
}

.footer {
    background: #170835;
    padding: 20px;
}

.footer-links {
    gap: 20px;
    flex-wrap: wrap;
}

.footer-text {
    text-align: center;
    max-width: 800px;


}

.footer-text p {
    font-size: 14px;
    font-style: italic;
    color: #C3A6FF;
    font-weight: 400;
}

.bottom-links {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
    flex-wrap: nowrap;
}

.bottom-links a {
    color: #C3A6FF;
    margin: 20px;
    text-wrap: nowrap;
}

.copyright p{
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #C3A6FF;
    text-align: center;
}

.faq {
    border: 1px solid #fff;
    border-radius: 15px;
    padding: 10px;
}

.faq-second {
    margin: 20px;
    padding: 10px;
}

.faq-second p {
    margin: 20px 0;
}

.faq p {
    margin: 10px 0;
}
@media screen and (max-width: 1024px) {
    .offer {
        height: auto;
        flex-direction: column;
        justify-content: space-between;
        
    }

    .offer-logo {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .offer-bonus, .offer-notation {
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .title-cards {
        flex-direction: column;
    }
}

@media screen and (max-width: 765px) {
    .nav {
        display: none;
    }

    .header {
        justify-content: space-between;
    }

    .nav-mobile {
        display: block;
    }

    .title h1 {
        font-size: 28px;
    }

    .title p {
        font-size: 18px;

    }

    .bonus-value {
        font-size: 28px;
    }

    .bottom-links {
        display: flex;
        flex-direction: column;
    }
}

@keyframes menu-open {
    from {
        top: -100%;
    }

    to {
        top: 50px;
    }
}