
.popup-btn,
.inside-btn{
    padding:2px 24px;
    background:#e52e06;
    color:#fff;
    border-radius:5px;
    cursor:pointer;
}

.popup-btn:hover,
.inside-btn:hover{
    transform:scale(1.05);
}

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgb(11 11 11 / 92%);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
	z-index:100;
}

.popup-box_review{
    background:#fff;
    width:100%;
    max-width:450px;
    padding:30px;
    border-radius:14px;
    position:relative;
    animation:popup 0.3s ease;
}

@keyframes popup{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:32px;
    cursor:pointer;
    color:#333;
}

.popup-box_review h2{
    margin-bottom:15px;
    color:#0b128e;
}

.popup-box_review p{
    margin-bottom:20px;
    color:#555;
    line-height:1.5;
}

@media(max-width:600px){
    .popup-box_review{
        padding:20px;
    }

    .popup-btn,
    .inside-btn{
        width:100%;
        font-size:15px;
    }
}
