* {
    box-sizing: border-box;
    font-family: "Inter", serif;
    color: #fff;
    padding: 0;
    margin: 0;
}

body {
    background: #061100;
}

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;
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(4, 135, 48, 0) 0%, rgba(4, 135, 48, 0.5) 100%);
    border-radius: 0 0 15px 15px;
}

.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;
    height: 35px;
}

.nav a, .menu-wrapper a {
    margin: 0 10px;
    font-size: 20px;
    font-style: italic;
    color: #fff;
    font-weight: 900;
}

.nav a:hover {
    color: #dedede;
}

.nav-mobile {
    display: none;
    cursor: pointer;
}

.menu-wrapper {
    position: absolute;
    width: 100%;
    background: #061100;
    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: #061100;
    background-size: 100%;
    background-repeat: no-repeat;
    justify-content: flex-start;
}

.title {
    text-align: center;
}

.title h1 {
    color: #fff;
    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 {
    background: linear-gradient(180deg, rgba(4, 135, 48, 0) 0%, rgba(4, 135, 48, 0.5) 100%);
    border-radius: 10px;
    padding: 5px 10px;
    gap: 8px;
    font-style: italic;
    border: 1px solid #286639;
}

.offers-header {
    background: linear-gradient(180deg, rgba(4, 135, 48, 0) 0%, rgba(4, 135, 48, 0.5) 100%);
    border: 1px solid #286639;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 20px;
}

.offers {
    margin-top: 40px;
}

.last-update {
    font-weight: 800;
    margin-top: 20px;
}

.offers-header-item {
    text-align: center;
    color: #49CE28;
    text-transform: uppercase;
}

.offers-header-item:first-child {
    width: 100%;
    max-width: 300px;
    
}

.offers-header-item:nth-child(2) {
    width: 100%;
    max-width: 350px;
    
}

.offers-header-item:nth-child(3) {
    width: 100%;
    max-width: 160px;
}

.offers-header-item:nth-child(4) {
    width: 100%;
    max-width: 270px;
}

.title-card p {
    font-size: 14px;
    font-weight: 400;
    color: #49CE28;
}

.offer {
    width: 100%;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(4, 135, 48, 0) 0%, rgba(4, 135, 48, 0.5) 100%);
    border: 1px solid #286639;
    padding: 10px;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    height: 150px;
    margin: 10px 0;
}

.first-offer {
    background: linear-gradient(180deg, rgba(4, 214, 0, 0) 0%, rgba(4, 214, 0, 0.75) 100%);
    border: 2px solid #0BA807;
}

.subtitle {
    max-width: 900px;
}

.offer-title {
    color: #000;
    height: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
}

.first-offer-title {
    background: #49CE28;
}

.offer-rate {
    color: black;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.offer-title p {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

.offer-title img {
    height: 55px;
}


.offer-bonus, .offer-logo {
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    cursor: pointer;
}

.offer-logo {
    justify-content: space-between;
}

.offer-notation {
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 160px;
    cursor: pointer;
}

.raiting {
    gap: 10px;
    width: 100%;
}

.offer-action {
    height: 100%;
}

.offer-btn {
    width: 270px;
    height: 50px;
    font-weight: 800;
    font-size: 20px;
    font-style: italic;
    background: #49CE28;

    padding: 10px;
    border-radius: 95px;
    cursor: pointer;
}

.offer-btn:hover {
    transform: scale(1.02);
    transition: 0.5s;
}

.bonus-value {
    font-weight: 600;
    font-style: italic;
    font-size: 32px;
}

.bonus-value span {
    font-weight: 900;
}

.raiting img {
    height: 20px;
    width: 20px;
    margin-right:5px;
}

.offer-rate-value {
    font-weight: 900;
    color: #000;
    font-size: 34px;
    font-style: italic;
    background: #49CE28;
    border-radius: 40px;
    width: 60px;
    height: 60px;
}

.offer-logo {
    width: 300px;
}

.offer-logo img {
    width: 85%;
}

.offer-bonus {
    width: 350px;
}

.info {
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.info-item {
    width: 49%;
    border-radius: 10px;
    height: 105px;
    background: linear-gradient(180deg, rgba(4, 135, 48, 0) 0%, rgba(4, 135, 48, 0.5) 100%);
    border: 1px solid #266135;
    padding: 15px;
    gap: 10px;
}

.info-item-right p:first-child {
    font-weight: 800;
    font-size: 20px;
}

.info-item-right p:last-child {
    font-weight: 400;
    font-size: 12px;
}


.info-item-left img {
    width: 50px;
}
.footer {
    background: #333;
    padding: 20px;
}

.footer * {
    font-family: 'Rubik', sans-serif;
}

.footer-links {
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-text {
    width: 100%;
text-align: center;

}

.footer-text p {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    color: #ddd;
}

.bottom-links {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.bottom-links a {
    margin: 10px;
    text-wrap: nowrap;
    color: #ff9800;
}

.copyright {
    margin: 10px 0;
}


.copyright p{
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #bbb;

}


.faq-info p, .faq-info h1, .faq-info h2 {
    margin: 15px 0;
}

.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%;
    }

    .offers-header {
        display: none;
    }

    .offer-bonus, .offer-logo {
        justify-content: center;
        align-items: center;
    }

    .raiting {
        flex-direction: row;
    }

    .info-item {
        width: 100%;
    }

    .footer-links {
        justify-content: center;
    }
}

@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;
    }
}