* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color: white;
    background-color: #131514;
    font-family: "Manrope", sans-serif;
}

a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 300ms;
}

ul {
    list-style: none;
}













.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background-color: #232423;
    margin: 30px;
    border-radius: 20px;
    border: 1px solid #606068;
    position: relative;
    min-width: 400px;
    text-align: start;

    h3 {
        padding: 0 20px 20px 10px;
    }

    p {
        padding: 0 20px 20px 10px;
    }

    ul {
        list-style: disc;
        padding: 0 20px 50px 50px
    }
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
}

.hidden {
    display: none;
}

.disclaimer-header {
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid white;
    text-align: start;
}

#disclaimer-btn {
    background-color: transparent;
    color: white;
    font-size: 18px;
    font-family: "Manrope", sans-serif;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 10px;
    transition: all 300ms;
    cursor: pointer;

    img {
        margin: 0 0 0 10px;
    }

    &:hover {
        background-color: #2E2E2E;
    }
}




















header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 20px 10px;
}

.header-content{
    display: flex;
    flex-direction: row;

    justify-content: space-between;
}

.header-logo{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.navigation-list{
    display: flex;
    flex-direction: row;
}

.menu-header-icon{
    transition: all 500ms;
    filter: brightness(0) saturate(100%) invert(1%) sepia(0%) saturate(2080%) hue-rotate(219deg) brightness(98%) contrast(86%);
}

.nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 20px;
    transition: all 300ms;
    &:hover{
        a{
            color: #5D7B45;
        }
        .menu-header-icon{
            filter: brightness(0) saturate(100%) invert(42%) sepia(7%) saturate(2158%) hue-rotate(50deg) brightness(102%) contrast(88%);
        }
    }
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;


    background-image: url("images/background-hero.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    /*background-attachment: fixed;*/


}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.hero-header{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    padding-bottom: 20px;
}

.hero-text{
    font-size: 16px;
    padding-bottom: 50px;
}

.green-grad-text{
    background: linear-gradient(to bottom, #AAE17E, #2C510F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-text{
    color: #CADDBC;
}

.hero-bottom{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.hero-feature{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-feature-btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hero-icon{
    margin-bottom: 10px;
}

.header-space{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.line1{

    background-color: #F2F2F2;
    position: absolute;
    width: 1px;
    height: 200px;
    margin-bottom: -2px;
    top: 0;

    animation-name: line1;
    animation-duration: 4s;
    animation-iteration-count: 1;
}


.line2{

    background-color: #F2F2F2;
    position: absolute;
    width: 1px;
    height: 350px;
    margin-bottom: -2px;
    top: 0;

    animation-name: line2;
    animation-duration: 4s;
    animation-iteration-count: 1;
}

.star1{
    position: relative;
    animation-name: star1;
    animation-duration: 4s;
    animation-iteration-count: 1;
    top:157px;
    width: 20px
}

.star2{
    position: relative;
    animation-name: star2;
    animation-duration: 4s;
    animation-iteration-count: 1;
    top:300px;
    width: 30px;
}


@keyframes star1 {
    0% {
        top:0;
    }

    100% {
        top: 157px;
    }
}

@keyframes line1 {
    0% {
        top:-157px;
    }

    100% {
        top: 0;
    }
}


@keyframes star2 {
    0% {
        top:0;
    }

    100% {
        top: 300px;
    }
}

@keyframes line2 {
    0% {
        top:-300px;
    }

    100% {
        top: 0;
    }
}


.offers{
    display: flex;
    flex-direction: column;
}

.offers-top{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;

    padding-bottom: 50px;
}

.offer{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #38482C;
    border-radius: 20px;
    padding: 40px 0;
}


.place{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: start;
    background: linear-gradient(to bottom, #2C510F, #5C833D) ;
    border-radius: 0 20px 20px 0;
    padding: 10px 20px;
    p{
        font-size: 20px;
    }
}

.place-icon{
    margin-right: 10px;
}

.offer-middle{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 40px;
    width: 70%;
    margin: 0 auto;
}

.offer-logo{
    margin-bottom: 40px;
}

.offer-features {
    padding-bottom: 20px;
    h1{
        padding-bottom: 10px;
    }

}

.offer-feature{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
    font-size: 25px;
}

.offer-feature-icon{
    margin-right: 10px;
}

.rating{
    display: flex;
    flex-direction: row;
    border: 1px solid #38482C;
    align-items: center;
    padding: 10px 20px;
    border-radius: 20px;
    justify-content: center;
    rotate: -10deg ;
    font-size: 25px;
}

.rating-left{
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-bottom{
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.offer-welcome-bonus{
    text-align: center;
    padding-bottom: 20px;
    p{
        font-size: 25px;
        padding-top: 10px;
    }
}

.deposit{
    padding-top: 20px;
}

.play-btn{
    border: 1px solid white;
    border-radius: 30px;
    background: linear-gradient(to bottom,#0C1117, #2C510F );
    padding: 10px 30px;
    font-size: 30px;
    transition: all 300ms;
    text-wrap: nowrap;
    &:hover{
        scale: 1.05;
    }
}

.gray-text{
    color:#7F7F7F;
}


.green-grad{
    background-image: url("images/offer-background.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
}

.gold-grad{
    background: linear-gradient(to top, #BB8D3F, #55401D);
}

.arrow-icon{
    margin-left: 10px;
    width: 20px;
}

.crown-stars{
    display: flex;
    flex-direction: column;
    position: absolute;

    top: 40%;
    right: 6%;
}

.crown-stars-top{
    display: flex;
    flex-direction: row;
    align-items: end;
}

.crown-stars-bottom{
    display: flex;
    flex-direction: row;
}


.crown-img1{
    width: 200px;




    animation-name: crown-img1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.small-star1{
    width: 20px;

    animation-name: small-star1;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.small-star2{
    width: 20px;

    animation-name: small-star2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.big-star1{
    width: 40px;

    animation-name: big-star1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes crown-img1 {
    0% {
        rotate: 0deg
    }

    50%{
        rotate: 8deg;
    }

    100% {
        rotate: 0deg;
    }
}


@keyframes small-star1 {
    0% {
        rotate: 0deg
    }

    50%{
        rotate: -25deg;
        filter: brightness(0) saturate(100%) invert(100%) sepia(60%) saturate(99%) hue-rotate(348deg) brightness(116%) contrast(101%);
    }

    100% {
        rotate: 0deg;
    }
}


@keyframes small-star2 {
    0% {
        rotate: 0deg
    }

    50%{
        rotate: 20deg;
        filter: brightness(0) saturate(100%) invert(100%) sepia(60%) saturate(99%) hue-rotate(348deg) brightness(116%) contrast(101%);
    }

    100% {
        rotate: 0deg;
    }
}

@keyframes big-star1 {
    0% {
        rotate: 0deg
    }

    50%{
        rotate: -20deg;
        filter: brightness(0) saturate(100%) invert(100%) sepia(60%) saturate(99%) hue-rotate(348deg) brightness(116%) contrast(101%);
    }

    100% {
        rotate: 0deg;
    }
}

.offers-divider1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 30%;
}

.divider1-line{
    height: 1px;
    width: 100%;
    background-color: white;
    margin-right: -2px;
}


.offers-divider2{
    margin: 0 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    width: 30%;
}

.divider2-line{
    height: 1px;
    width: 100%;
    background-color: white;
    margin-left: -2px;
}

.offers-bottom{
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.offer-bottom-left{
    width: 50%;
    padding-right: 20px;
    h1{
        font-size: 48px;
    }
}


.offer-bottom-right{
    width: 50%;

    p{
        color: #D6D6D6;
    }
}

.gray-text-grad{
    background: linear-gradient(to bottom, #F2F2F2, #7C7C7C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider1{
    background-image: url("images/background-offers-bottom.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    margin-bottom: -100px;
}


.reviews{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.review{
    width: 80%;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    border-radius: 30px;
    margin: 20px auto 20px auto;
}

.review-row-top{
    display: flex;
    flex-direction: row;

}

.review-row-bottom{
    display: flex;
    flex-direction: row;

}

.row-top-cell-left{
    width: 50%;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    padding: 40px;
    h1{
        font-size: 50px;
    }
}

.row-top-cell-right{
    border-bottom: 1px solid white;
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    p{
        font-size: 25px;
        margin-right: 30px;
    }
}

.row-bottom-cell-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-right: 1px solid white;
}

.row-bottom-cell-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.ranking{
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.ranking-content{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ranking-numbers{
    font-size: 50px;
    padding-right: 20px;
}

.row-bottom-cell-left h1{
    padding-bottom: 10px;
}

.detailed-text{
    padding-bottom: 40px;
}

.row-bottom-cell-right h1{
    padding-bottom: 10px;
}

.pros{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
}

.pros-img{
    margin-right: 10px;
}


.comparison{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 50px auto;
    h3{
        padding-bottom: 30px;
    }

    h1{
        padding-bottom: 20px;
    }
    h2{
        padding-bottom: 20px;
        padding-top: 30px;
    }
    p{
        padding-bottom: 10px;
    }
}

.comparison-link{
    text-decoration: underline;
    transition: all 300ms;
    &:hover{
        color: #5C833D;
    }
}


.green-text-dark{
    color: #5C833D;
}

.divider2{
    height: 200px;
    background-image: url("images/divider2.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0C0D0C;
    h1{
        font-size: 40px;
        padding-bottom: 30px;
    }
}

.faq-content{
    width: 80%;
    display: flex;
    flex-direction: column;
}

.faq-row{
    display: flex;
    flex-direction: row;
}

.faq-cell{
    display: flex;
    flex-direction: row;
    width: 50%;
    margin: 20px 10px;
    align-items: center;
}

.cell-right{
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

footer{
    background-color: #0C0D0C;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 20px 10px;
}

.logo{
    display: flex;
    flex-direction: row;
}

.logo-footer{
    margin-right: 10px;
}

.footer-menu-element a{
    transition:  all 300ms;
    &:hover{
        color: #5C833D;
    }
}

.legal-img{
    margin: 10px;
    height: 40px;
}

.rules {
    padding: 40px 40px 40px 40px;

    background: rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.49);
    margin: 10px;
    color: white;
}

.rules h1 {
    padding-bottom: 30px;
    text-align: center;
}

.rules h2 {
    padding: 20px 0 15px 0;
}

.rules p {
    padding-bottom: 10px;
}

.rules ul {
    padding-left: 20px;
}

.header-rules {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px 10px;
    color: white;
}

@media only screen and (max-width: 1605px) {
    .crown-stars{
        top: 47%;
        right: 5%;
    }

}

@media only screen and (max-width: 1100px) {
    .offers-top{
        width: 95%;
        flex-direction: column;
    }

    .offer{
        width: 95%;
        align-self: center;
        margin-bottom: 20px;
    }

    .order1{
        order: 1;
    }

    .order2{
        order: 2;
    }
}

@media only screen and (max-width: 900px) {
    .faq-row{
        flex-direction: column;
    }
    .faq-cell{
        width: 100%;
    }

    footer{
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .logo, .footer-menu{
        margin-bottom: 20px;
    }

    .review-row-top, .review-row-bottom{
        flex-direction: column;
    }

    .row-top-cell-left{
        border-right: none;
        width: 100%;
    }

    .row-top-cell-right{
        width: 100%;
    }

    .row-bottom-cell-left{
        border-right: none;
        border-bottom: 1px solid white;
        width: 100%;
    }

    .row-bottom-cell-right{
        width: 100%;
    }

    .header-content{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navigation-list{
        flex-wrap: wrap;
        justify-content: center;
    }





    .line1{


        width: 1px;
        height: 200px;
        margin-bottom: -2px;
        top: 0;

    }


    .line2{


        height: 350px;
        margin-bottom: -2px;
        top: 0;

    }

    .star1{

        top:130px;
        width: 20px
    }

    .star2{

        top:280px;
        width: 30px;
    }


    @keyframes star1 {
        0% {
            top:0;
        }

        100% {
            top: 130px;
        }
    }

    @keyframes line1 {
        0% {
            top:-130px;
        }

        100% {
            top: 0;
        }
    }


    @keyframes star2 {
        0% {
            top:0;
        }

        100% {
            top: 280px;
        }
    }

    @keyframes line2 {
        0% {
            top:-280px;
        }

        100% {
            top: 0;
        }
    }


    .crown-stars{
        top: 37%;
        right: 5%;
    }

    .hero-bottom{
        display: none;
    }

    .hero-text{
        display: none;
    }

    .hero{
        padding: 50px;
    }

    .faq h1{
        padding: 10px;
        text-align: center;
    }

}

@media only screen and (max-width: 800px) {

    .offers-bottom{
        flex-direction: column;
    }
    .offer-bottom-left{
        font-size: 30px;
        width: 100%;
        text-align: center;
    }

    .offer-bottom-right{
        width: 100%;
    }


}

@media only screen and (max-width: 744px) {

    .crown-stars{
        display: none;
    }

    .offer-middle{
        padding: 20px;
        width: 100%;
    }

    .star1{

        top:130px;
        width: 20px
    }

    .star2{

        top:280px;
        width: 30px;
    }


    @keyframes star1 {
        0% {
            top:0;
        }

        100% {
            top: 130px;
        }
    }

    @keyframes star2 {
        0% {
            top:0;
        }

        100% {
            top: 280px;
        }
    }



    @keyframes line1 {
        0% {
            top:-130px;
        }

        100% {
            top: 0;
        }
    }



    @keyframes line2 {
        0% {
            top:-280px;
        }

        100% {
            top: 0;
        }
    }
}

@media only screen and (max-width: 700px) {
    .rating{
        flex-direction: column;
        align-self: center;
    }

    .offer{
        width: 95%;
    }

    .offers-top{
        width: 95%;
    }

    .hero-content{
        width: 100%;
    }

    .row-top-cell-right{
        flex-direction: column;
        text-align: center;
        p{
            margin-right: 0;
            padding-bottom: 20px;
        }
    }

    .ranking-content{
        flex-direction: column;
    }

    .ranking h1{
        text-align: center;
    }

    .faq-cell{
        flex-direction: column;
    }

    .cell-left{
        margin-bottom: 20px;
    }

    .hero-header{
        font-size: 30px;
    }

    .offer-features{
        display: none;
    }

    .offer-logo{
        max-height: 150px;
        width: 100%;
    }

    .hero{
        padding:20px;
    }
}

@media only screen and (max-width: 504px) {
    .star1{

        top:100px;
        width: 20px
    }

    .star2{

        top:250px;
        width: 30px;
    }


    @keyframes star1 {
        0% {
            top:0;
        }

        100% {
            top: 100px;
        }
    }

    @keyframes star2 {
        0% {
            top:0;
        }

        100% {
            top: 250px;
        }
    }



    @keyframes line1 {
        0% {
            top:-100px;
        }

        100% {
            top: 0;
        }
    }



    @keyframes line2 {
        0% {
            top:-250px;
        }

        100% {
            top: 0;
        }
    }
}

@media only screen and (max-width: 400px) {
    .header-logo-img{
        display: none;
    }
}

