/* =============================================================================
#12. Contact SubPage
============================================================================= */

/*12.1 Contact Form*/

.contact-form{
    position: relative;
}
input, textarea {
    outline: none !important;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    transition: all .5s ease;
}
#add-review input, #add-review textarea {
    border: 1px solid #dbdbdb;
    margin-bottom: 20px;
    padding-left: 15px;
    border-radius: 30px;
}
#add-review textarea {
    padding-top: 10px;
}
#add-review .bt-submit{
    margin-top: 0;
}
input{
    height: 50px;
}
input:hover,
textarea:hover,
input:focus,
textarea:focus{
    text-indent: 15px;
    outline: none !important;
    border: 0;
    border-bottom: 1px solid #11d6f0;
}
textarea{
    resize: none;
}
#show_contact_msg div{
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-weight: 500;
}
#show_contact_msg i{
    margin-right: 5px;
}
#show_contact_msg .loading{
    background-color:#2bcf32;
}
#show_contact_msg .gen {
    background-color: #45dff3;

}
#show_contact_msg .err{
    background-color: #f44336;
}

/* 12.2 Contact Info*/

.contact-info.d-flex {
    justify-content: center;
    align-items: center;
}
.w-25 {
    width: 25% !important;
}
.contact-icon i {
    font-size: 28px;
    width: 60px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background: #11d6f0;
    border-radius: 100%;
    box-shadow: 2px 2px 20px rgba(0,0,0,.05);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.w-75 {
    width: 75% !important;
    border-right: 1px solid #dedede
}
.contact-info.d-flex:last-child .w-75{
    border: none;
}
.contact-text h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}
.contact-text.w-75 p {
    margin-bottom: 0;
    color: #999;
}
.contact-info.d-flex:hover .contact-icon i{
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    -moz-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    -o-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    box-shadow: 0 12px 17px rgba(0,0,0,.12);
}
/*12.3 Social Media*/

.social-media-block {
    background-color: #f7f9fc;
    padding: 30px 20px;
    position: relative;
}
.social-media-block::before, .social-media-block::after {
    border-style: solid;
    border-width: 2px;
    content: "";
    display: block;
    height: 50px;
    position: absolute;
    width: 50px;
}
.social-media-block::after {
    border-color: rgba(0, 0, 0, 0) #11d6f0 #11d6f0 rgba(0, 0, 0, 0);
    bottom: 0;
    right: 0;
}
.social-media-block::before {
    border-color: #11d6f0 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #11d6f0;
    left: 0;
    top: 0;
}
.social-media-block h4, .social-media-block ul{
    display: inline-block;
    margin-bottom: 0;
}
.social-media-block h4{
    margin-right: 15px;
}
.social-media-links li, .social-media-links a{
    display: inline-block;
}
.social-media-block a{
    font-size: 16px;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #11d6f0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 100%;
    margin-right: 15px;
    box-shadow: 2px 2px 20px rgba(0,0,0,.05);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.social-media-block a:hover{
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    -moz-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    -o-box-shadow: 0 12px 17px rgba(0,0,0,.12);
    box-shadow: 0 12px 17px rgba(0,0,0,.12);
    color: #fff;
    background: #11d6f0;
}
@media (max-width: 767px) {
    .contact-form {
        padding-top: 20px;
    }
    .left-background {
        display: none;
    }
    .contact-info.d-flex {
        margin-bottom: 20px;
    }
    .sidebar-textbox{
        padding-bottom: 0;
    }
    .social-media-block h4 {
        margin-bottom: 20px;
    }
    .social-media-block a{
        margin-bottom: 7px;
    }
}
