* {
    box-sizing: border-box;
    scroll-margin-top: 70px;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
body{
    font-family: 'Poppins', sans-serif;
}

#mainNav{
    background-color: #471858d9;
}

nav {
    position:sticky;
    top:0px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items:center;
    z-index: 1000;
    padding: 10px;
    backdrop-filter: blur(3px);
    -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    color: #e3dcdc;
    a{
        text-decoration: none;
        padding: 12px;
        font-weight: bold;
        color: #e3dcdc;
    }
    i{
        color: #e3dcdc;
    }
}
#show-menu,
#close-menu{
    display: none;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero {
    margin-top:-70px;
    background: #471858;
    background: linear-gradient(300deg,rgba(71, 24, 88, 1), #8713b9,rgba(59, 17, 82, 1));
    background-size: 180% 180%;
    animation: gradient-animation 18s ease infinite;
    position: relative;
    overflow: hidden;
    .arrow{
        position: absolute;
        bottom: 100px;
        left: 50%;
        border: 5px solid #ffffff;
        z-index: 100;
        background: #f5711063;
        border-radius: 50%;
        padding: 6px;
        animation: pulseArrow linear 3s infinite;
        margin-left: 0;
    }
    .hero__container {
        min-height: 90svh;
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        .col-md-6{
            display: flex;
            flex-direction: column;
            justify-content: center;

            img{
                filter: drop-shadow(0px 0px 50px #8d7211);
            }
        }
        h3{
            font-size:4em
        }
        a{
            text-decoration: none;
            color: white;
            font-weight: bold;
            padding: 12px;
            border: 1px solid white;
            margin: 12px;
            display: inline-block;
            &:hover{
                background-color: white;
                color: #3e1353;
            }
        }
    }
}
.restockDate{
    background-color: #fff;
    .restockDate_container{
        color: #ff6c00;

        padding: 24px;
    }
}
.rewards{
    background-color: #47175a;
    padding: 48px 24px;
    h4{
        color: white;
        margin-bottom: 24px;
        font-size: 2rem;
    }
}
.rewards__container{
    max-width: 1100px;
    margin: 0 auto;
}
.rewards__list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    .reward {
        flex: 0 1 calc(25% - 24px);
        display:flex;
        flex-direction: column;
        border-radius:6px;
        background-color: #fb9a40;
        color: #5f197b;
        &.muted{
            background-color: #e9e9e9;
        }

        img{
            max-height: 150px!important;
            padding: 12px;
        }
        .reward__img {
            position: relative;
            background-color: white;
            border-top-right-radius:6px;
            border-top-left-radius:6px;
        }
        .reward_data{
            padding: 24px;
        }

        .reward__price {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #8d76e6;
            padding: 0px 10px;
            border: 2px solid #3f1cc3;
            color: white;
            font-weight: bold;
            display: flex;
            border-radius: 3px;
            align-items: center;
            justify-content: center;
            transform: rotate(10deg)
        }
    }
}
.muted * {
    color:#b6b6b6!important;
}
.muted img{
    filter:grayscale(1);
}


.getReward{
    padding: 28px;
    background-color: #f57110;
    position: relative;
    .getReward__container{
        z-index: 5;
        position: relative;
        .getReward__reward{
            max-width: 700px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
            -moz-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
            box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
            img{
                max-height: 300px;
            }
            .imgHolder {
                display:flex;
                justify-content: space-evenly;
                flex-direction: column;
                align-content: center;
                flex-wrap: nowrap;
                align-items: center;
            }

            form {
                background-color: #3e1353;
                color: white;
                padding: 36px;
                display:flex;
                flex-direction: column;
                align-items: stretch;

                .InputHolder {
                    display: flex ;
                    align-items: flex-start;
                    flex-direction: column;
                    color: #7353cc;
                    &.checkbox {
                        flex-direction: row;
                        align-items: center;
                        input {
                            flex: 0 1 1;
                            width: auto;
                        }
                        label {
                            flex: 1;
                            margin-left: 12px;
                            text-align: left;
                        }
                    }
                }
                input, button {
                    background-color: #8561eb;
                    border: none;
                    margin: 2px auto;
                    border-radius: 6px;
                    width: 100%;
                    padding: 6px;
                    color: white;
                }
            }
        }
    }
}


@media only screen and (max-width: 800px) {
    #show-menu{
        display: block;
        position: absolute;
        top: 12px;
        right: 49%;
        z-index: 100;
    }
    .sponsors {
        display: none;
    }
    nav{
        display:none;
    }
    nav.show{
        display:flex;
        position:absolute;
        top:0;
        left:0;
        width: 100%;
        flex-direction: column;
        background-color:#edededbb;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        #close-menu{
            display: block;
            margin-bottom: 12px;
        }
    }
    .hero{
        margin-top: 0px;
        padding-top: 40px;
        .col-md-6{
            text-align: center;
        }
    }
}

.wave-area {
    height: 5%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 1
}

.wave {
    background: url("assets/wave.svg") repeat-x;
    position: absolute;
    top: -100px;
    width: 6400px;
    height: 100px;
    animation: wave 35s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0)
}

.wave:nth-of-type(2) {
    top: -56px;
    animation: wave 15s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 13s ease -1.25s infinite;
    opacity: 1
}

@keyframes wave {
    0% {
        margin-left: 0
    }
    100% {
        margin-left: -1600px
    }
}
@keyframes swell {
    0%,
    100% {
        transform: translate3d(0, -45px, 0)
    }
    50% {
        transform: translate3d(0, 5px, 0)
    }
}




.bubbles-animate .bubble {
    position: absolute;
    border-radius: 50%;
    z-index: 4;
}

.bubbles-animate .bubble.b_one, .bubbles-animate .bubble.b_four {
    width: 10px;
    height: 10px;
}

.bubbles-animate .bubble.b_two, .bubbles-animate .bubble.b_five {
    width: 30px;
    height: 30px;
}

.bubbles-animate .bubble.b_three, .bubbles-animate .bubble.b_six {
    width: 14px;
    height: 14px;
}

.bubbles-animate .bubble.b_one {
    background: #00c99c;
    top: 40%;
    left: 85px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.bubbles-animate .bubble.b_two {
    background: #fca249;
    top: 50%;
    left: 155px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin1 2s infinite alternate;
    animation: spin1 2s infinite alternate;
}

.bubbles-animate .bubble.b_three {
    background: #7898a3;
    top: 85%;
    left: 255px;
    -webkit-animation: spin1 1s infinite alternate;
    animation: spin1 1s infinite alternate;
}

.bubbles-animate .bubble.b_four {
    background: #d27dfa;
    top: 40%;
    right: 85px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin1 2s infinite alternate;
    animation: spin1 2s infinite alternate;
}

.bubbles-animate .bubble.b_five {
    background: #ff9398;
    top: 50%;
    right: 155px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: spin1 3s infinite alternate;
    animation: spin1 3s infinite alternate;
}

.bubbles-animate .bubble.b_six {
    background: #f1d53b;
    top: 70%;
    right: 55px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

.bubbles-animate .triangle {
    position: absolute;
}

.bubbles-animate .triangle.b_seven {
    left: 25%;
    top: 400px;
}

.bubbles-animate .triangle.b_eight {
    left: -100px;
    bottom: -45px;
}

.bubbles-animate .triangle.b_nine {
    right: 28%;
    bottom: 250px;
    -webkit-animation: spin2 2s infinite alternate;
    animation: spin2 2s infinite alternate;
}

/*============ keyframes animation  =============*/
@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: translateX(-10px) scale(0.9);
        transform: translateX(-10px) scale(0.9);
    }
    100% {
        -webkit-transform: translateX(30px) scale(1.3) translateY(10px);
        transform: translateX(30px) scale(1.3) translateY(10px);
    }
}

@-webkit-keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes spin1 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
}

@-webkit-keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}

@keyframes spin3 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    25% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
}
@-webkit-keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}

@keyframes pulsate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(4);
        transform: translate(-50%, -50%) scale(4);
    }
}

.cta__nagroda{
    background-color: #f57110;
    &:hover{
        color: #f57110!important;
    }
}



footer{
    background: linear-gradient(to right, rgba(144, 30, 193, 1) 0%, rgb(107, 73, 238) 51%, rgba(144, 30, 193, 1) 100%);
    background-size:  200% auto;
    position: relative;
    padding-top: 75px;
    text-align: center;
    .footer__content{
        margin: 0 auto;
        max-width: 1000px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding: 24px;
        color: white;
        font-size: 12px;
    }
    .shape-top{
        background-image: url("assets/price-shape.svg");
        background-size: 100% 40px;
        top: 0;
        height: 40px;
        z-index: 1;
        margin-top: -1px;
        position: absolute;
        width: 100%;
        pointer-events: none;
        transform: rotate(180deg);
    }
}


.news__main{
    margin-top: 36px;
}

.news__container{
    max-width: 1100px;
    margin:0 auto;
}
.news {
    display: block;
    background-color: #7458e0ba;
    padding: 12px;
    border-radius: 12px;
    text-align:left;
    margin-bottom: 24px;
    .news__header{
        display:flex;
        border-bottom: 1px solid #c1b1ff;
        .news__title{
            flex:1;
            font-size: 20px;
            font-weight:bold;
        }
    }
    .news__content{
        padding: 12px;
    }
}

@media only screen and (max-width: 800px) {
    .rewards__list{
        .reward{
            flex: 0 1 calc(50% - 24px);
        }
    }
}



.simplePanel{
    margin-top: 48px;
    min-height: 70vh;
    .simplePanel__container{
        margin:0 auto;
        width: 90%;
        max-width: 900px;
    }
    .simplePanel__summary,
    .simplePanel__refLinkContainer{
        padding: 24px;
        border: 1px solid #623a7136;
        border-radius: 24px;
        background: #ffffff;
        -webkit-box-shadow: 0px 0px 12px rgb(98 58 113 / 39%);
        box-shadow: 0px 0px 12px rgb(98 58 113 / 39%);
    }
    .simplePanel__refLinkContainer {
        display:flex;
        justify-content: center;
        flex-direction: column;
    }
    .input{
        padding: 12px 6px;
        border: 1px solid #dedede;
        border-radius: 12px;
        background: #7143e8;
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 12px;
        display: flex;
        span.link{
            flex:1;
        }
        svg.copied {
            stroke: #00058c;
            transition: stroke 0.2s ease;
        }
    }
}

.services-5 {
    p {
        margin-bottom: 0;
        color: #2c2c2c;
        font-size: .75rem;
        font-weight: bold;
    }

    h4 {
        font-size: 24px;
        margin-left: 0;
    }

    .content {
        max-width: 1200px;


    }

    .col-md-4 {
        padding: 12px;
        margin-top: 30px;

    }

    .wrapper {
        background-color: #f5f5f5;
        flex-direction: row;
        align-items: center;
        height: 100%;
        position: relative;
        border-radius: 12px;
        padding-bottom: 25px !important;

        h5 {
            font-size: 18px;
        }

        >i {
            width: 50px;
            height: 80px;
            position: absolute;
            background-color: #f57110;
            display: flex;
            align-items: center;
            justify-content: center;
            top: -20px;
            left: 25px;
            border-radius: 6px;
            border-top-right-radius: 0;
            color: rgb(255, 255, 255);
            font-size: 20px;
            -webkit-box-shadow: 0px 8px 10px 2px rgba(204, 204, 204, 1);
            -moz-box-shadow: 0px 8px 10px 2px rgba(204, 204, 204, 1);
            box-shadow: 0px 8px 10px 2px rgba(204, 204, 204, 1);

            &::after {
                position: absolute;
                top: 0;
                right: -20px;
                content: "";
                width: 20px;
                height: 20px;
                background-color: #9b730f;
                clip-path: polygon(0 0, 0% 100%, 62% 100%);
            }
        }

        >div {
            margin-left: 80px;
            flex: 1;

        }

        a {
            position: absolute;
            bottom: 0;
            right: 0;
            padding: 8px 18px;
            text-decoration: none;
            background-color: #2269ef;
            color: white;
            font-weight: bold;
            font-size: 14px;
            border-radius: 12px;
            border-bottom-left-radius: 0;
            border-top-right-radius: 0;
        }
    }
}

@keyframes pulseArrow {
    0% {
        transform:scale(1);
    }
    50% {
        transform:scale(1.1);
    }
    100% {
        transform:scale(1);
    }
}