.popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.contentBox{
    position: relative;
    width: 600px;
    height: 400px;
    background: white;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1) ;
}

.contentBox .imgBx{
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.contentBox .imgBx::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgb(226, 230, 38);
    border-radius: 50%;
}
.contentBox .imgBx img {
    position: relative;
    max-width: 250px;
    z-index: 1;
}

.contentBox .content{
    /* text-align: justify; */
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentBox .content h2{
    font-size: 3em;
    color: #ff4d54;
    line-height: 1em;
}

.contentBox .content p{
    font-weight: 400;
}

.close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
}


.modal .imgBx::before{
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgb(226, 230, 38);
    border-radius: 50%;
}

.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
 }
 


 /* .tm_bg:hover{
    font-size: 20px;
    transition: 0.3s;
 } */

  .tm_bg {
    font-size: 15px;
    letter-spacing: 1px;
    background-color: rgb(185, 0, 0);
 }