/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background: url("../img/contact-bg.png") left center no-repeat;
    position: relative;
    direction:rtl;
    text-align:right;
    margin-top:50px;
    margin-bottom:50px;
}

    .contact:before {
        content: "";
        background: rgba(255, 255, 255, 0.7);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    .contact .container {
        position: relative;
    }

    .contact .info {
        width: 100%;
    }

        .contact .info i {
            font-size: 20px;
            /*background: #0880e8;*/
            color: #081c63;
            /*float: left;*/
            width: 44px;
            height: 44px;
            /* display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;*/
            transition: all 0.3s ease-in-out;
        }

        .contact .info h4 {
            padding: 0 0 0 60px;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #081c63;
        }

        .contact .info p {
            padding: 0 0 0 60px;
            margin-bottom: 0;
            font-size: 14px;
            color: #444444;
        }

        .contact .info .email, .contact .info .phone {
            margin-top: 40px;
        }

    .contact .php-email-form {
        width: 100%;
        background: #fff;
    }

        .contact .php-email-form .form-group {
            padding-bottom: 8px;
        }

        .contact .php-email-form .error-message {
            display: none;
            color: #fff;
            background: #ed3c0d;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }

            .contact .php-email-form .error-message br + br {
                margin-top: 25px;
            }

        .contact .php-email-form .sent-message {
            display: none;
            color: #fff;
            background: #18d26e;
            text-align: center;
            padding: 15px;
            font-weight: 600;
        }

        .contact .php-email-form .loading {
            display: none;
            background: #fff;
            text-align: center;
            padding: 15px;
        }

            .contact .php-email-form .loading:before {
                content: "";
                display: inline-block;
                border-radius: 50%;
                width: 24px;
                height: 24px;
                margin: 0 10px -6px 0;
                border: 3px solid #18d26e;
                border-top-color: #eee;
                -webkit-animation: animate-loading 1s linear infinite;
                animation: animate-loading 1s linear infinite;
            }

        .contact .php-email-form input, .contact .php-email-form textarea {
            border-radius: 4px;
            box-shadow: none;
            font-size: 14px;
        }

        .contact .php-email-form input {
            height: 44px;
        }

        .contact .php-email-form textarea {
            padding: 10px 12px;
        }

        /*.contact .php-email-form button[type=submit] {
            border: 0;
            padding: 10px 32px;
            color: #0880e8;
            transition: 0.4s;
            border-radius: 50px;
            border: 2px solid #0880e8;
            background: #fff;
        }

            .contact .php-email-form button[type=submit]:hover {
                background: #0880e8;
                color: #fff;
            }*/

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-contact {
    border-radius: 8px;
    color: white;
    padding: 10px 32px;
    background-color: #c08a11;
    transition: 0.5s ease;
    font-size:14px;
}
    .btn-contact:hover {
        border: 1px solid #c08a11;
        color: #c08a11;
        background-color:white;
    }
.card-title {
    font-size: 16px;
    color: #c08a11;
}

    .card-title img {
        width: 20px;
        height: 20px;
    }

.card-text {
    font-size: 14px;
    color: black;
}