*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    background: url("images/body_bg.png") no-repeat;
    background-size: cover;
}
header{
    background: #000;
    box-shadow: 0 6px 6.3px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
}
.header_wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 100px;
}
.header_wrap a img{
    width: 63px;
    height: 65px;
}
@media screen and (max-width: 767px){
    .header_wrap{
        padding: 8px 50px;
    }
    .header_wrap nav{
        display: none;
    }
}
.header_wrap nav ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
}
.header_wrap nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 20px;
}
.header_wrap nav ul li a:hover{
    text-decoration: underline;
}

.main_wrap{
    width: 100%;
    max-width: 1300px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 25px;
}
footer{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1120px;
    margin: 50px auto 0 auto;
}
.footer_wrap {
    padding: 30px 36px;
    backdrop-filter: blur(2px);
    border-radius: 36px 36px 0 0;
    box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 0.5px solid rgb(255,255,255, .3);
}
@supports not (backdrop-filter: blur(0)) {
    .footer_wrap {
        background: rgba(40, 40, 40, 0.6);
    }
}
.footer_wrap::before {
    content: '';
    position: absolute;
    top: -70%;
    left: -70%;
    width: 240%;
    height: 240%;
    /*background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 60%);*/
    animation: liquidFlow 8s ease-in-out infinite;
    z-index: -1;
}
@keyframes liquidFlow {
    0% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
    100% { transform: translate(0, 0); }
}
@media screen and (min-width: 1150px) {
    .footer_wrap {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 34px;
    }
    .footer_cont .warn_details{
        width: 487px;
    }
    .footer_cont .warn_details.small_details{
        width: 387px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1149px){
    .footer_wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 758px;
        width: 100%;
        margin: 30px auto 30px auto;
    }
}
@media screen and (max-width: 767px){
    .footer_wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 350px;
        width: 100%;
        margin: 30px auto 30px auto;
    }
    .footer_cont .warn_details{
        width: 320px;
    }
    .footer_cont .warn_details.small_details{
        width: 320px;
    }
}
.footer_warning{
    display: flex;
    flex-direction: column;
}
.footer_warning a img{
    width: 110px;
    height: 43px;
    border-radius: 10px;
}
.footer_warning div{
    color: #FFF;
    text-align: right;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}
.footer_cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}
.footer_cont .warn_title{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}
.footer_cont .warn_details{
    color: #FFF;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

/*cards*/
.card_wrap{
    width: 350px;
    height: 353px;
    border-radius: 10px;
    background: #FFEBE2;
    position: relative;
}
.card_wrap .card_top{
    background: url("images/card_bg1.png") no-repeat;
    background-size: cover;
    padding: 51px 20px 4px 82px;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.card_wrap .card_top .card_logo{
    width: 55px;
    height: 55px;
    border-radius: 15px;
    border: 5px solid #FFEBE2;
    position: absolute;
    bottom: -14px;
    left: 20px;
}
.card_wrap .card_top .card_title{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}
.card_wrap .card_top .card_title .card_title_name{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.card_wrap .card_top .card_title .card_title_verif{
    width: 21px;
    height: 20px;
}
.card_wrap .card_top .card_top_bonus{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
}
.card_wrap .card_top .card_top_bonus div{
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 5px 8px;
    border-radius: 3px;
    border: 1px solid #FFF;
    text-transform: uppercase;
}
.card_wrap .card_mid{
    padding: 36px 0 10px 10px;

}
.card_wrap .card_mid .promo_wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 18px;
}
.card_wrap .card_mid .promo_wrap .promo{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    border: 2px dashed #412754;
    background: #C69F8D;
    width: 156px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card_wrap .card_mid .promo_wrap button.copy_promo{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    background: #C9ACE0;
    width: 156px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 1s;
    position: relative;
    overflow: hidden;
}
.card_wrap .card_mid .promo_wrap button.copy_promo:hover{
    background: #f0d1ff;
}
.card_wrap .card_mid .promo_wrap button.copy_promo:active{
    background: #f0d1ff;
}
.card_wrap .card_mid .promo_wrap button.copy_promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80px;
    height: 100%;
    background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.3) 50%,
            transparent
    );
    transform: skewX(-20deg);
    animation: shine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}
.card_wrap .card_mid .no_promo{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    width: 330px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #C69F8D;
}
.card_wrap .card_mid .bonus_p{
    color: #5E2E83;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 22px;
}
.card_wrap .card_mid .bonus_r{
    color: #FF4F00;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 12px;
}
.card_wrap .card_mid .bonus_details{
    color: #946DB3;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 12px;
}
.card_wrap .card_bottom{
    margin: 0 25px 14px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    column-gap: 15px;
}
.card_wrap .card_bottom .like-button{
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;
}
.card_wrap .card_bottom .like-button div{
    color: #946DB3;
    font-weight: 600;
}
.card_wrap .card_bottom .like-button .like-count-wrapper {
    color: #946DB3;
    font-weight: 600;
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    min-width: 2em;
    text-align: center;
    height: 1.2em;
}
.like-count {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-out;
    transform: translateY(0);
    opacity: 1;
    font-size: 16px;
}
.like-count.rolling-out {
    transform: translateY(-100%);
    opacity: 0;
}
.like-count.rolling-in {
    transform: translateY(0);
    opacity: 1;
}
.like-count.start-in {
    transform: translateY(100%);
    opacity: 0;
}
.liked {
    pointer-events: none;
    opacity: 0.6;
}
.like-button img {
    width: 35px;
    height: 35px;
}
.card_wrap .card_bottom .share{
    cursor: pointer;
}
.b-marquee {
    white-space: nowrap;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: #B89ECC;
    background: linear-gradient(90deg, rgba(184, 158, 204, 1) 0%, rgba(148, 109, 179, 1) 13%, rgba(126, 83, 159, 1) 31%, rgba(111, 73, 140, 1) 55%, rgba(87, 57, 110, 1) 100%);    color: #fff;
    padding: 3px;
    position: absolute;
    top: -25px;
    margin-bottom: 10px;
    height: 41px;
    width: 100%;
    z-index: 0;
    display: flex;
    align-items: flex-start;
}
.b-marquee__text {
    display: inline-block;
    animation: animMarqueeRtl 15s linear infinite;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 20px;
}
@keyframes animMarqueeRtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}