.popup_banner{
    display:none ;
    height: 100%;
    width: 100%;
    background-color: rgba(214, 214, 214, 0.9);
    position: fixed;
    top: 0px;
    z-index: 10;
}

.banner_content{
    width: 350px;
    margin: 80px auto;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    position: relative;
    overflow: hidden;

}
.popbanner_title{
    padding: 25px;
}
.banner_close_btn{
    position: absolute;
    right: 10px;
    top: 10px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
}
.bannerinputs{
    position: relative;
    height: 300px;
}

.bannerinputs label{
    display: block;
    margin-left: 20px;
    font-size: 13px;
    color: rgb(132, 132, 132);
}
.bannerinputs input{
    border: none;
    border-bottom: 1px solid rgb(224, 224, 224);
    width: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
}
.bannerinputs input:focus{
    outline: none;
    border-bottom: 1px solid rgb(154, 154, 154);
}
.popupSendbtn{
    border: none;
    background-color: white;
    color: #4023f8;
    font-size: 14px;
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-weight: 600;
}


.bannermsg{
    display: none;
    position: relative;
    height: 380px;
    background-color: #009d57;
    color: white;
}
.bannermsg>div:nth-child(1){
    width: 100%;
    height: 50%;
    border-bottom: 1px solid black;
    padding: 60px 0px 0px 50px;
}
.bannermsg h1{
    font-size: 50px;
}
.bannermsg>div:nth-child(2){
    width: 100%;
    height: 50%;
    padding: 20px 0px 0px 50px;
    position: relative;
}
.bannermsg p{
    font-size: 20px;
}

@media screen and (max-width:775px) {
    .banner_content{
        width: 80%;
    }
    .banner_content{
        margin: 130px auto;
    }
    
}