:root{
    --clr1:#4F3130;
    --clr2:#753742;
    --clr3:#AA5042;
    --clr4:#D8BD8A;
    --clr5:#D8D78F;
}

*{
    margin:0;
    padding: 0;
    box-sizing:border-box;
}

body{
    font-family:'Jost',sans-serif;
    color:#333;
    line-height:1.6;
    overflow-x:hidden;
}

.wrap_container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

.full_width{
    width:100%;
}

.banner_row{
    display:flex;
    flex-wrap:wrap;
    margin-left:-15px;
    margin-right: -15px;
}

.img_column{
    position:relative;
    width:100%;
    padding-left:15px;
    padding-right:15px;
}

.text_column{
    position:relative;
    width:100%;
    padding-left:15px;
    padding-right:15px;
}

@media(min-width:992px){
    .img_column{
        flex:0 0 50%;
        max-width: 50%;
    }
    .text_column{
        flex:0 0 50%;
        max-width: 50%;
    }
}

.no_pad{
    padding-left:0!important;
    padding-right: 0!important;
}

.desc_text{
    padding-top:1rem;
    padding-bottom: 1rem;
}

.centered{
    align-self:center;
}

.top_navigation{
    position:relative;
    left: 0;
    top:0;
    width:100%;
    z-index: 999;
    padding:20px 0px;
    background-color:var(--clr1);
}

.top_navigation .logo_link{
    padding-top:0rem;
    padding-bottom: 0px;
}

.top_navigation .logo_link img{
    max-height: 60px;
    width:auto;
}

.top_navigation .burger_icon i{
    color:#fff;
    font-size: 25px;
}

.top_navigation .nav_wrapper{
    padding: 0px;
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.nav_wrapper{
    display: flex;
    justify-content:space-between;
    width:100%;
}

.top_navigation .menu_list ul{
    list-style: none;
    display:flex;
    margin: 0;
    padding:0;
}

.top_navigation .menu_list ul li{
    margin:0;
}

.top_navigation .menu_list ul li .link_text{
    color: #fff;
    font-size:16px;
    padding: 20px 25px;
    font-family:'Jost',sans-serif;
    text-transform:capitalize;
    line-height: 12px;
    text-decoration:none;
    display: block;
    transition:color 0.3s;
}

.top_navigation .menu_list ul li .link_text:hover{
    color: var(--clr3);
}

@media only screen and (min-width:991px) and (max-width:1200px){
    .top_navigation .menu_list ul li .link_text{
        padding: 35px 20px;
    }
}

.sticky_nav{
    position: sticky;
    z-index:9999!important;
    width: 100%;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.05);
    top:0;
    background-color:var(--clr1);
    height:88px;
}

@media(max-width:991px){
    .sticky_nav{
        height: 83px;
    }

    .top_navigation{
        padding: 20px 0px;
    }
}

@media(max-width:575px){
    .sticky_nav{
        height: 72px;
    }
}

@media only screen and (min-width:576px) and (max-width:767px){
    .sticky_nav{
        height: 84px;
    }
}

.top_banner{
    margin-top: 0;
}

.top_banner .bg_image{
    width: 100%;
    height:640px;
    background-color:#b0b0b0;
    background-image: url("../imgnew/hero-bg.webp");
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}

.top_banner .content_box{
    padding:0 47% 0 5%;
}

.top_banner .content_box h1{
    color:var(--clr1);
    text-transform: uppercase;
    font-family:'Jost',sans-serif;
    font-size: 50px;
    font-weight:700;
    line-height: 1.2;
}

.top_banner .content_box h1 span{
    color: var(--clr3);
}

.top_banner .content_box p{
    color:#555;
    font-family: 'Jost',sans-serif;
    font-weight: 400;
    font-size:17px;
}

.action_button{
    color:var(--clr1);
    font-family:'Jost',sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight:600;
    display:inline-block;
    transition: all .5s;
    text-decoration: none;
    padding:12px 30px;
    background: var(--clr5);
    border-radius:4px;
}

.action_button:hover{
    color: #fff;
    background:var(--clr3);
}

.action_button:hover span:before{
    margin-left: 14px;
    color:#fff;
}

.action_button span:before{
    font-size:14px;
    margin-left: 10px;
    transition:.2s;
}

@media(max-width:991.98px){
    .top_banner .content_box{
        padding: 0 5%;
    }

    .top_banner .bg_image{
        height: 500px;
    }

    .top_banner .content_box h1{
        font-size:38px;
    }
}

@media(max-width:767.98px){
    .top_banner .content_box{
        padding:50px 5%;
    }

    .top_banner .bg_image{
        height:350px;
    }

    .top_banner .content_box h1{
        font-size: 32px;
    }

    .top_banner .content_box p{
        font-size: 15px;
    }
}

@media(max-width:575.98px){
    .top_banner .bg_image{
        height: 300px;
    }

    .top_banner .content_box h1{
        font-size:26px;
    }

    .action_button{
        font-size:12px;
        padding: 10px 20px;
    }
}

.bottom_info{
    padding: 40px;
    background:#f8f9fa;
    border-top:1px solid #e9ecef;
    margin-top: 60px;
}

.info_heading{
    font-size:24px;
    font-family:'Jost',sans-serif;
    font-weight: 500;
    color:var(--clr1);
    margin-bottom:30px;
    border: none;
    cursor: default;
    border-bottom:1px solid #eeeeee;
    position:relative;
    padding-bottom: 10px;
}

.info_heading:after{
    content: "";
    position:absolute;
    left: 0;
    bottom:-1px;
    height:1px;
    width: 74px;
    background:var(--clr3);
}

.links_wrapper ul{
    list-style: none;
    margin:0;
    padding: 0;
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap:15px;
}

.links_wrapper ul li{
    margin-bottom: 10px;
}

.links_wrapper ul li a{
    line-height: 25px;
    font-size:16px;
    font-family: 'Jost',sans-serif;
    font-weight:400;
    color: #7b838a;
    text-decoration: none;
    transition:all 0.3s ease-in-out;
}

.links_wrapper ul li a:hover{
    color:var(--clr3);
}

.regulators_box{
    margin-top:40px;
    padding-top: 30px;
    border-top:1px solid #e9ecef;
    text-align: center;
}

.regulators_title{
    font-size:20px;
    font-family:'Jost',sans-serif;
    font-weight:600;
    color:var(--clr1);
    margin-bottom: 20px;
}

.regulator_logos{
    display:flex;
    justify-content: center;
    align-items:center;
    gap:30px;
    flex-wrap: wrap;
}

.regulator_logos a{
    display: block;
    transition:opacity 0.3s;
}

.regulator_logos a:hover{
    opacity:0.7;
}

.regulator_logos img{
    max-height:60px;
    width: auto;
    max-width: 150px;
}

.warning_gambling{
    margin-top: 35px;
    padding:25px;
    background:#fff3cd;
    border-radius: 8px;
}

.warning_title{
    font-size: 22px;
    font-family:'Jost',sans-serif;
    font-weight: 700;
    color:#d9534f;
    margin-bottom:15px;
    text-align: center;
}

.warning_text{
    font-size:15px;
    color:#333;
    line-height: 1.7;
    margin:0;
    text-align: center;
}

.warning_text strong{
    color:#d9534f;
    font-weight: 700;
}

.policy_container{
    padding: 80px 0;
    min-height:60vh;
}

.policy_container h1{
    font-size:42px;
    color: var(--clr1);
    font-weight: 700;
    margin-bottom:20px;
    font-family:'Jost',sans-serif;
}

.policy_container h2{
    font-size: 28px;
    color:var(--clr2);
    font-weight:600;
    margin-top:35px;
    margin-bottom: 18px;
    font-family:'Jost',sans-serif;
}

.policy_container p{
    font-size: 16px;
    line-height:1.8;
    color: #555;
    margin-bottom:20px;
    font-family:'Jost',sans-serif;
}

.contact_wrapper{
    padding:80px 0;
    background: #f9fafb;
}

.contact_grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}

.contact_info h1{
    font-size:42px;
    color:var(--clr1);
    font-weight: 700;
    margin-bottom: 25px;
    font-family:'Jost',sans-serif;
}

.contact_info p{
    font-size:16px;
    line-height: 1.8;
    color:#555;
    margin-bottom:18px;
    font-family:'Jost',sans-serif;
}

.contact_details{
    margin-top:35px;
    background:#fff;
    padding: 25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.detail_item{
    display:flex;
    align-items: center;
    margin-bottom:18px;
}

.detail_item:last-child{
    margin-bottom: 0;
}

.detail_item i{
    font-size:18px;
    color: var(--clr3);
    margin-right:15px;
    min-width: 20px;
}

.detail_item span{
    font-size: 15px;
    color:#333;
}

.contact_form_box{
    background:#fff;
    padding:40px;
    border-radius: 12px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.contact_form_box h2{
    font-size:28px;
    color: var(--clr1);
    font-weight:600;
    margin-bottom: 25px;
    font-family:'Jost',sans-serif;
}

.form_field{
    margin-bottom: 20px;
}

.form_field label{
    display:block;
    font-size: 15px;
    color:#333;
    font-weight: 500;
    margin-bottom:8px;
    font-family:'Jost',sans-serif;
}

.form_field input,
.form_field textarea{
    width:100%;
    padding: 12px 15px;
    border:1px solid #ddd;
    border-radius: 6px;
    font-size:15px;
    font-family:'Jost',sans-serif;
    transition:border-color 0.3s;
}

.form_field input:focus,
.form_field textarea:focus{
    outline: none;
    border-color:var(--clr3);
}

.form_field textarea{
    resize: vertical;
}

.submit_btn{
    width:100%;
    background: var(--clr3);
    color:#fff;
    border: none;
    padding:14px 30px;
    font-size:16px;
    font-weight: 600;
    border-radius:6px;
    cursor:pointer;
    transition:all 0.3s;
    font-family:'Jost',sans-serif;
    text-transform: uppercase;
}

.submit_btn:hover{
    background:var(--clr2);
    transform: translateY(-2px);
}

@media(max-width:767px){
    .policy_container{
        padding:50px 0;
    }

    .policy_container h1{
        font-size: 32px;
    }

    .policy_container h2{
        font-size:22px;
        margin-top: 25px;
    }

    .policy_container p{
        font-size:15px;
    }

    .contact_wrapper{
        padding: 50px 0;
    }

    .contact_grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .contact_info h1{
        font-size:32px;
    }

    .contact_form_box{
        padding:25px 20px;
    }

    .contact_form_box h2{
        font-size: 24px;
    }
}

@media(max-width:991px){
    .bottom_info{
        padding:30px 20px;
    }

    .info_heading{
        font-size: 20px;
    }

    .links_wrapper ul{
        grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
        gap: 10px;
    }
}

@media(max-width:575px){
    .info_heading{
        font-size:18px;
    }

    .links_wrapper ul{
        grid-template-columns: 1fr;
    }

    .links_wrapper ul li a{
        font-size: 14px;
    }

    .regulators_title{
        font-size: 18px;
    }

    .regulator_logos{
        gap: 20px;
    }

    .regulator_logos img{
        max-height:50px;
    }

    .warning_title{
        font-size:19px;
    }

    .warning_text{
        font-size: 14px;
    }

    .warning_gambling{
        padding: 20px 15px;
    }
}

.promo_display{
    padding:80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.cards_layout{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
    margin-bottom: 40px;
}

.platform_box{
    background: var(--clr5);
    border-radius:12px;
    padding: 35px 25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    position:relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;

    display: flex;
    flex-direction: column;
}

.platform_box:hover{
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.platform_box.featured{
    border-color: var(--clr3);
    background: linear-gradient(to bottom, #fff 0%, #fffef8 100%);
}

.box_decorline{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 4px;
    background:linear-gradient(90deg,var(--clr1) 0%,var(--clr3) 50%,var(--clr5) 100%);
    border-radius: 12px 12px 0 0;
}

.corner_accent{
    position:absolute;
    bottom: 15px;
    right:15px;
    width:40px;
    height: 40px;
    border-right:3px solid var(--clr4);
    border-bottom: 3px solid var(--clr4);
    opacity:0.3;
}

.best_badge{
    position: absolute;
    top:-12px;
    right: 20px;
    background:var(--clr3);
    color:#fff;
    padding:6px 18px;
    border-radius: 20px;
    font-size:13px;
    font-weight: 600;
    box-shadow:0 3px 10px rgba(170,80,66,0.3);
}

.brand_logo{
    text-align: center;
    margin-bottom:20px;
}

.brand_logo img{
    max-width:140px;
    height: auto;
    max-height:60px;
}

.brand_name{
    text-align:center;
    font-size: 24px;
    font-weight:600;
    color: var(--clr1);
    margin-bottom:12px;
    font-family:'Jost',sans-serif;
}

.stars_rating{
    text-align: center;
    margin-bottom: 18px;
}

.star_icon{
    color:#FFD700;
    font-size:20px;
    margin: 0 2px;
}

.star_icon.half{
    background: linear-gradient(90deg, #FFD700 50%, #ddd 50%);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus_text{
    background:#f8f9fa;
    padding:15px;
    border-radius: 8px;
    text-align:center;
    margin-bottom: 15px;
    border:1px solid var(--clr2);
}

.bonus_text.highlighted{
    background: var(--clr5);
    border-left-color:var(--clr3);
}

.bonus_text strong{
    color:var(--clr1);
    font-size: 16px;
    display: block;
    line-height:1.4;
}

.platform_desc{
    font-size:14px;
    color: #666;
    line-height:1.6;
    margin-bottom:20px;
    text-align: center;
    min-height: 70px;
}

.claim_link{
    display:block;
    text-align: center;
    background: var(--clr2);
    color:#fff;
    padding:14px 25px;
    border-radius:6px;
    text-decoration: none;
    font-weight:600;
    font-size: 15px;
    transition:all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    margin: auto 0 0 0;
}

.claim_link:hover{
    background:var(--clr1);
    transform: scale(1.02);
}

.claim_link.primary{
    background:var(--clr3);
}

.claim_link.primary:hover{
    background: var(--clr2);
}

.info_banner{
    background:#fff;
    padding: 20px 25px;
    border-radius:8px;
    display:flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.banner_icon{
    font-size:28px;
    color:var(--clr3);
    margin-right: 15px;
    font-weight: bold;
}

.info_banner p{
    margin:0;
    color:#555;
    font-size: 14px;
    line-height:1.6;
}

@media(max-width:991px){
    .cards_layout{
        grid-template-columns: repeat(2,1fr);
        gap: 25px;
    }

    .platform_box:last-child{
        grid-column: span 2;
        max-width:500px;
        margin:0 auto;
        width: 100%;
    }
}

@media(max-width:767px){
    .cards_layout{
        grid-template-columns:1fr;
        gap:20px;
    }

    .platform_box:last-child{
        grid-column: span 1;
        max-width: 100%;
    }

    .promo_display{
        padding: 50px 0;
    }

    .brand_logo img{
        max-width: 120px;
    }

    .bonus_text strong{
        font-size:14px;
    }

    .platform_desc{
        font-size: 13px;
        min-height:auto;
    }
}


.testimonial_area{
    padding:7em 0;
    position: relative;
    background: #f9fafb;
}

@media(max-width:767.98px){
    .testimonial_area{
        padding: 6em 0;
    }
}

.heading_row{
    display: flex;
    justify-content:center;
    margin-bottom:5rem;
    padding-bottom: 3rem;
}

.heading_wrapper{
    max-width:700px;
    text-align: center;
}

.top_label{
    font-size:16px;
    display:block;
    margin-bottom: 5px;
    font-weight:700;
    color: var(--clr3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading_wrapper h2{
    font-size: 30px;
    font-weight:700;
    color: var(--clr1);
    margin-bottom:15px;
    font-family:'Jost',sans-serif;
}

@media(max-width:767.98px){
    .heading_wrapper h2{
        font-size:28px;
    }
}

.heading_wrapper p{
    margin-top:0;
    margin-bottom: 1rem;
    line-height:1.8;
    color:gray;
    font-size: 16px;
}

.reviews_grid{
    display: grid;
    grid-template-columns:repeat(2,1fr);
    gap: 30px;
}

.review_item{
    background:#fff;
    padding:35px 30px;
    border-radius: 10px;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
    position:relative;
    border: 4px solid var(--clr4);
    transition:transform 0.3s ease;
}

.review_item:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.quote_mark{
    font-size:60px;
    color: var(--clr5);
    line-height: 1;
    margin-bottom:10px;
    font-family: Georgia,serif;
    opacity:0.6;
}

.stars_display{
    margin-bottom:20px;
}

.stars_display span{
    color:#FFD700;
    font-size: 18px;
    margin-right:3px;
}

.review_content{
    font-size: 15px;
    line-height:1.7;
    color:#555;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer_info{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding-top:15px;
    border-top: 1px solid #eee;
}

.reviewer_name{
    font-weight: 600;
    color:var(--clr1);
    font-size:15px;
}

.review_date{
    font-size:13px;
    color: #888;
}

@media(max-width:991px){
    .reviews_grid{
        grid-template-columns: 1fr;
        gap:25px;
    }

    .heading_row{
        margin-bottom: 3rem;
        padding-bottom:2rem;
    }
}

@media(max-width:575px){
    .review_item{
        padding: 25px 20px;
    }

    .quote_mark{
        font-size: 45px;
    }

    .review_content{
        font-size:14px;
    }

    .reviewer_info{
        flex-direction: column;
        align-items:flex-start;
        gap: 5px;
    }
}

.info_presentation{
    padding:100px 0 90px;
}

.presentation_row{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
}

.text_half{
    width: 50%;
    padding-right: 30px;
}

.image_half{
    width:50%;
}

.text_wrapper{
    padding-right:30px;
}

.main_heading{
    font-size: 36px;
    color:var(--clr1);
    font-weight:400;
    font-family:'Jost',sans-serif;
    text-transform: uppercase;
    margin-bottom:15px;
}

.sub_heading{
    font-size:24px;
    color: var(--clr1);
    font-weight: 400;
    font-family:'Jost',sans-serif;
    margin-bottom: 20px;
}

.main_desc{
    font-size:15px;
    font-family:'Jost',sans-serif;
    color:#444444;
    font-weight: 400;
    line-height:26px;
    margin-bottom:20px;
}

.benefits_list{
    margin-left: 20px;
    margin-bottom:30px;
}

.benefits_list li{
    list-style:none;
    font-size: 15px;
    color:#444444;
    line-height: 30px;
    position:relative;
    padding-left:20px;
}

.benefits_list li:before{
    position: absolute;
    left:0;
    top: 13px;
    height:3px;
    width: 3px;
    background:#444444;
    content:"";
}

.action_cta{
    display: inline-block;
    font-size:14px;
    padding:8px 25px 6px;
    color: #111111;
    text-transform:uppercase;
    font-weight: 700;
    border:1px solid var(--clr3);
    text-decoration:none;
    transition:all 0.3s;
}

.action_cta:hover{
    background:var(--clr3);
    color:#ffffff;
}

.image_container{
    margin-right:-10px;
}

.main_picture{
    margin-bottom:10px;
}

.main_picture img{
    min-width:100%;
    width: 100%;
    border-radius: 8px;
}

.grid_images{
    display: flex;
    flex-wrap:wrap;
}

.grid_box{
    width:calc(50% - 10px);
    float: left;
    margin-right:10px;
    margin-bottom: 10px;
}

.grid_box img{
    min-width: 100%;
    width:100%;
    border-radius:6px;
}

@media(max-width:991px){
    .text_half{
        width:100%;
        padding-right: 0;
        margin-bottom:40px;
    }

    .image_half{
        width: 100%;
    }

    .text_wrapper{
        padding-right: 0;
    }

    .main_heading{
        font-size:30px;
    }

    .sub_heading{
        font-size: 20px;
    }
}

@media(max-width:767px){
    .info_presentation{
        padding:60px 0;
    }

    .main_heading{
        font-size: 26px;
    }

    .sub_heading{
        font-size:18px;
    }

    .main_desc{
        font-size: 14px;
    }

    .benefits_list li{
        font-size:14px;
    }
}

.age_overlay{
    position: fixed;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    display:flex;
    align-items:center;
    justify-content: center;
}

.age_overlay.hidden{
    display: none;
}

.verify_box{
    background:#fff;
    padding: 45px 35px;
    border-radius:15px;
    text-align: center;
    max-width:450px;
    width: 90%;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn{
    from{
        transform:translateY(-50px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity:1;
    }
}

.verify_icon{
    font-size: 60px;
    margin-bottom:20px;
}

.verify_title{
    font-size:28px;
    color: var(--clr1);
    font-weight: 700;
    margin-bottom:15px;
    font-family:'Jost',sans-serif;
}

.verify_text{
    font-size:16px;
    color:#555;
    margin-bottom: 30px;
    line-height:1.5;
}

.confirm_age{
    background: var(--clr3);
    color:#fff;
    border: none;
    padding:16px 40px;
    font-size:17px;
    font-weight: 600;
    border-radius:8px;
    cursor: pointer;
    transition:all 0.3s;
    font-family:'Jost',sans-serif;
    width: 100%;
    max-width:280px;
}

.confirm_age:hover{
    background:var(--clr2);
    transform: scale(1.05);
}

.legal_note{
    font-size: 12px;
    color:#888;
    margin-top:20px;
    margin-bottom: 0;
}


.thankyou_popup{
    position:fixed;
    top: 0;
    left:0;
    width: 100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    margin: auto;
    display: none;
    align-items: center;
    justify-content:center;
    z-index: 99999;

    padding: 10vh 0;
}

.popup_content{
    background: #fff;
    padding:40px 35px;
    border-radius: 15px;
    text-align:center;
    max-width: 450px;
    width:90%;
    margin: 0 auto;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
    animation:popupSlide 0.4s ease;
}

@keyframes popupSlide{
    from{
        transform: translateY(-50px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity: 1;
    }
}

.popup_icon{
    font-size: 70px;
    color:var(--clr3);
    margin-bottom: 20px;
    width:80px;
    height: 80px;
    line-height:80px;
    background: var(--clr5);
    border-radius:50%;
    margin: 0 auto 20px;
}

.popup_content h3{
    font-size:28px;
    color: var(--clr1);
    font-weight: 700;
    margin-bottom:15px;
    font-family:'Jost',sans-serif;
}

.popup_content p{
    font-size: 16px;
    color:#555;
    margin-bottom:25px;
    line-height: 1.6;
}

.popup_close{
    background:var(--clr3);
    color: #fff;
    border:none;
    padding: 12px 35px;
    font-size:16px;
    font-weight:600;
    border-radius: 8px;
    cursor:pointer;
    transition: all 0.3s;
    font-family:'Jost',sans-serif;
}

.popup_close:hover{
    background: var(--clr2);
    transform:scale(1.05);
}