@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Roboto');

.custom-main-btn-rect,
.custom-main-btn-circle{
    position: relative;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #FFFFF0;
    background-color: rgb(185, 0, 0);
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 1px;  
    outline: none;
    cursor: pointer;
    z-index: 100;
}
.custom-main-btn-rect {
    padding: 10px 80px;
    line-height: 30px;
}
.custom-main-btn-rect:before, 
.custom-main-btn-rect:after{
    position: absolute;
    content: '';
    top:0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 240, 0.2);
    transition: width 0.3s;
}
.custom-main-btn-rect:before {
    left: 0;
}
.custom-main-btn-rect:after {
    right: 0;
}
.custom-main-btn-rect:hover:before, 
.custom-main-btn-rect:hover:after{
    width: 50%;
}
.custom-main-btn-circle{
    height: 40px;
    width: 40px;
    border-radius: 100%;
    line-height: 40px;
    transition: box-shadow 0.3s;
}
.custom-main-btn-circle:hover{   
    box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}
.custom-popup{
    position: fixed;
    top: 100%;
    width: 100%;
    height: 100%;
    z-index: 10001;
}
.custom-popup.active{
    top:0;
    background-color: rgba(3, 3, 3, 0.98); 
    transition: background-color .6s ,opacity .6s;
}
.custom-popup .custom-main-btn-rect{
    padding: 10px 100px;
}
.custom-popup .custom-popup-content{
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 568px;
    min-width: 400px;
    margin-top: 150px;
    padding: 25px;
    background-color: #FFFFF0;
    color: #070000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transform: translateX(-50%) translateY(-50%);
    transition: margin .6s;
}
.custom-popup.active .custom-popup-content{
    margin-top: 0px;
}
.custom-popup-content h6{
    display: table;
    font-size: 16px;
    text-align: center;
    margin: 10px auto;
    font-family: 'Roboto',sans-serif;
    text-transform: uppercase;
    font-weight: 100;  
}
.custom-form-group{
    position: relative;
    width: 90%;
    margin: 0px auto;
}
form#custom-send input, form#custom-send textarea{
    position: relative;
    margin-bottom: 32px;
    width: 100%;
    height: 29px;
    font-family: 'RobotoLight', sans-serif;
    text-indent: 20px;
    background-color: transparent;
    outline: 0;
    border: none;
    border-bottom: 1px solid #070000;
    transition: border 0.6s;
}
form#custom-send input:focus,
form#custom-send textarea:focus{
    border-bottom: 1px solid rgb(63, 173, 168); 
}
form#custom-send label{
    position: absolute;
    top: 0;
    line-height: 28px;
    transition: color .5s;
}
form#custom-send input:focus + label,
form#custom-send textarea:focus + label{
    color: rgb(63, 173, 168);
}
form#custom-send .custom-txt{
    line-height: 22px;
    left: 2px;
}
form#custom-send .custom-main-btn-rect {
    position: relative;
    display: block;
    padding: 12px 80px;
    margin: 0px auto;
    font-size: 14px;
}
form#custom-send .custom-main-btn-rect i {
    margin-right: 5px;
}
.custom-popup .custom-fade-out{
    position: absolute;
    top: -20px;
    right: -20px;
    text-align: center;
    font-size: 15px;
}
@media only screen and (max-width: 768px){
    h1 {font-size: 25px;}
    h2 {font-size: 14px;}
    form#custom-send .custom-main-btn-rect {padding: 7px 60px; font-size: 14px;}
}

