.verify-btn-container{
    display: flex;
    justify-content: center;

}


.verify-btn {
    position: relative;
    animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 12px 8px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}
.mob{
    display: none;
}
.hero-content-container strong{
    font-size: 17px;
}
.hero-content p strong{
    font-size: 17px;
}
.hero-content p{
    margin-bottom: 50px;

}
.text{
    margin-top: 50px;
}
.hero{
    padding-top: 170px;
}

@media only screen and (max-width: 767px) {
    .hero{
        padding-top: 88px;
    }
    
    .hero-content{
        flex-direction: column;
    }
    .desk{
        display: none;
    }
    .mob{
        display: block;
    }
    .h1{
        margin-top: 0
        
    }
    .hero-img{
        left: 0px;
        margin-bottom: 0;
    }
    .hero-content p{
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .hero-content p strong{
        font-size: 17px;
    }
    .hero-content-container{
        margin-top: -20px;
    }
}
.hero-content{
    flex-direction: column;
}
.verify-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.verify-popup.show {
    opacity: 1;
    pointer-events: auto;
}
.verify-popup-content {
    background: #111;
    padding: 32px 28px;
    border-radius: 14px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    animation: scaleIn .35s ease forwards;
    border: 1px solid #ffcb0d;

}
@keyframes scaleIn {
    from { transform: scale(.8); opacity:0; }
    to   { transform: scale(1); opacity:1; }
}
.verify-popup-content h2 {
    font-size: 20px;
    margin-bottom: 8px;

}
.verify-popup-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}
.verify-btn{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.verify-btn span{
    font-size: 12px;
    margin-top: 2px;
}