   .profile-img img{
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    height: 50px;
}
.review img{
    width: 20px;
}
.main-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-container-top{
margin: 30px 10px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;

}
.main-container-top span{
    font-size: 20px;
    color: #080568;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 7px;

}
.main-container-top h2{
    background-color:transparent;
    border: 2px rgb(3, 3, 81) solid;
    border-radius: 20px ;
    color: rgb(5, 4, 81);
    padding: 10px 20px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.container-r{
width: 100%;
display: flex;
/*height: 100vh;*/
align-items: center;
justify-content: center;
flex-wrap: wrap;
align-content: center;


}
.box{
    width: 500px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 20px;
    transition: all ease 0.3s;
    margin: 20px;
}

.box:hover{
    transform: translate(-10px);
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);

}

.box-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile{
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-info{
    margin-left: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.profile-info h2{
    font-size: 22px;
    color: #252525;
    text-transform: capitalize;
    font-weight: 550;

}

.profile-info span{
    font-size: 15px;
    color: #999;
    text-transform: capitalize;
    font-weight: 550;

}

.comment{
    margin-top: 10px;
}

.comment p{
    color: #2e2e2e;
    font-size: 16px;
}
@media (max-width:1080px){
    .box{
        width: 45%;
    }
}

@media (max-width:813px){
    .box{
        width: 100%;
    }
}
@media (max-width:421px){
    .box{
        width: 100%;
    }
    .box-top{
        flex-wrap: wrap;
    }
}

.review-btn{
    padding: 15px 40px;
    border: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;

}
.review-btn::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0d1e8a;
    left: 0;
    top: 0;
    border-radius: 10px;

}
.review-btn::before{
    content: "";
    background: linear-gradient(
        45deg,
        #131bab, #3c5cb9, #666bd5, #b4b5d755,
         #b4b5d755,  #666bd5,#3c5cb9,#131bab
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
     height: calc(100% + 4px);
     filter: blur(8px);
    animation: glowing 20s linear infinite;
     transition:opacity .3s ease-in-out;
     border-radius: 10px;
     opacity: 1;


}

@keyframes glowing{
    0%{background-position: 0 0;}
    50%{background-position: 400% 0;}
    100%{background-position: 0 0;}
}

.review-btn:hover::before{
    opacity: 1;
}
.review-btn:active:after{
    background: transparent;
}
.review-btn:active{
    color: #202020;
    font-weight: bold;
}


