/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    background: #fafbff;
    padding: 30px;
}

.contact .info-box i {
    font-size: 38px;
    line-height: 0;
    color: #4154f1;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    background: #fafbff;
    padding: 30px;
    height: 100%;
}

.contact .php-email-form .form_title {
    display: flex;
    color: #012970;
    text-align: center;
    justify-content: center;
}

.contact .php-email-form .form_title h4 {
    font-size: 2rem;
    font-weight: 600;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #4154f1;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}


/*Conact button */

.contact .explore {
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
    background: #27367e60;
    border-radius: 5px;
    color: white;
    position: relative;
    margin-top: 20px;
    outline: none;
    border: none;
    height: 50px;
    width: 190px;
    font-size: 14px;
    z-index: 2;
    transition: 0.01s 0.23s ease-out all;
    overflow: hidden;
}

.contact .explore:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background: #012970;
    z-index: -1;
    transition: 0.3s ease-in all;
}

.contact .explore:after {
    content: "";
    position: absolute;
    left: -5%;
    top: 5%;
    height: 90%;
    width: 5%;
    background: rgb(255, 255, 255);
    z-index: -1;
    transition: 0.4s 0.02s ease-in all;
}

.contact .explore:hover {
    cursor: pointer;
    color: transparent;
}

.contact .explore:hover:before {
    left: 100%;
    width: 25%;
}

.contact .explore:hover:after {
    left: 100%;
    width: 70%;
}

.contact .explore:hover .icon-right.after:after {
    left: -80px;
    color: #ffffff;
    transition: 0.2s 0.2s ease all;
}

.contact .explore:hover .icon-right.after:before {
    left: -104px;
    top: 14px;
    opacity: 0.2;
    color: white;
}

.contact .explore .icon-right {
    position: absolute;
    top: 0;
    right: 0;
}

.contact .explore .icon-right:after {
    font-family: "FontAwesome";
    content: "→";
    font-size: 24px;
    display: inline-block;
    position: relative;
    top: 26px;
    transform: translate3D(0, -50%, 0);
}

.contact .explore .icon-right.after:before {
    content: "Send";
    position: absolute;
    left: -230px;
    top: 14px;
    opacity: 0;
    transition: 0.2s ease-in all;
}

.success {
    color: green;
    font-weight: 700;
    padding: 5px;
    text-align: center;
}

.failed {
    color: red;
    font-weight: 700;
    padding: 5px;
    text-align: center;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}