* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.clearfix:after {
    content: '';
    clear: both;
    display: table;
}
.mycontainer {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    height:100%;
}
.form_section{
    background: #eeeeee;
    padding: 80px 0;
    height: 100vh;
}
.form_block{ 
    width: 100%;
    border-radius: 10px;
    position: relative;
    
}
.form_block:after{
    content: url(img/1.png);
    position: absolute;
    width: 111px;
    height: 68px;
    bottom: -54px;
    left: 50%;
    position: absolute;
    margin-left: -55px;
    display: none;
}
.cnt{
     min-height: 240px;
     background: rgba(255,255,255,1);
     border-radius:10px; 
}
.left_fb , .right_fb{
    float: left;
    width: 100%;
    height:100%;
    padding: 10px 15px;
    color: #333333;
}
.left_fb{
    padding-top: 20px;
}
.right_fb form{
    width: 100%;
    text-align: center;
}
.right_fb form label{
    display: block;
    text-align: left;
    margin-bottom: 10px;
    line-height: 150%;
    font-family: Helvetica;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}
.right_fb form input{
    width: 100%;
    padding: 7px 10px;
    display: block;
    font-size:18px;
    border-radius: 3px;
    border: 2px solid #d0d0d0 !important;
}
.right_fb form input:focus{
    outline: transparent;
    border-color: #5d5d5d !important;
}
.right_fb form input[type="submit"]{
    height: 40px;
    background: #d00f1f;
    width: 100%!important;
    border-radius: 3px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 19px;
    line-height: 32px;
    text-shadow: 1px 0 2px #d00f1f;
    border: 5px solid #d00f1f !important;
    margin: 20px auto;
    cursor: pointer;
    opacity: 0.9;
    padding: 0 22px;
}

.right_fb form input[type="submit"]:hover{
    border-bottom: 5px solid #d00f1a !important;
    margin-top: 20px;
    opacity: 1;
}
.mycontainer h1{
    font-size: 34px;
    margin-bottom:30px;
}
.left_fb p{
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;
}
.left_fb i{
    display: block;
    margin-top: 30px;
    cursor: pointer;
    width: 100px;
    display: none;
}
@media only screen and (max-width: 1367px){
    .form_section{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 1024px){
    .form_section{
        padding: 80px 0;
    }
}
@media only screen and (max-width: 640px){
    .left_fb , .right_fb{
        width: 100%;
        padding: 10px 10px;
    }
    .form_block{
        
    }
    .form_block:after{
        display: none;
    }
    .right_fb form input[type="submit"]{
        font-size: 24px;
    }
    .form_section{
        padding: 25px 0;
    }
    .mycontainer{
        padding: 0 5px;
    }
}


#modal_form {
    width: 60%; 
    min-height: 300px;
    position: fixed;
    top: 25%; 
    left: 20%; 
    margin-top: -150px;
    display: none; 
    opacity: 0;
    z-index: 5;
    padding: 20px 10px;
}
#modal_form #modal_close {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 20px;
    right: 10px;
    cursor: pointer;
    display: block;
    color:#000;
    font-weight: 800;
}
#overlay {
    z-index: 3; 
    position: fixed;
    background-color: #000;
    opacity: 0.8; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    cursor: pointer;
    display: none; 
}

.form_plus{
    background: #fff;
    border:1px solid #000;
    padding: 10px;
    border-radius:10px; 
}