
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #000;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact .info-box svg {
    font-size: 28px;
    color: #0079c9 ;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fef5f4;
}
.contact .info-box .title {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0;
}
.contact .info-box a {
    padding: 0;
    line-height: 20px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}
.contact .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .email-form .error-message br + br {
    margin-top: 25px;
}
.contact .email-form .sent-message {
    display: none;
    color: #fff;
    background: #0079c9 ;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
.contact .email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #0079c9 ;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
.contact .email-form input, .contact .email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}
.contact .email-form input:focus, .contact .email-form textarea:focus {
    border-color: #300fc9 ;
}
.contact .email-form input {
    padding: 10px 15px;
}
.contact .email-form textarea {
    padding: 12px 15px;
}
.contact .email-form button[type=submit] {
    background: #0079c9 ;
    border: 0;
    border-radius: 50px;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}
.contact .email-form button[type=submit]:hover {
    background: #300fc9 ;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

