/*
** footer styles
*/
footer {
    background: var(--background-dark);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

footer .footer-brand img {
    max-width: 200px;
}

footer .column {
    padding: 1rem;
}

footer .column .title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light);
}

footer .footer-brand {
    color: var(--primary) !important;
    text-decoration: none;
}

footer .contacts {
    padding-top: 2rem;
}

footer .contacts .info {
    direction: ltr !important;
    color: var(--text-light);
}

footer .email .title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-light);
}

footer .email .input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 8px;
    background: var(--text-light);
    width: 100%;
    max-width: 400px;
}

footer .email .input-group .form-control {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    direction: rtl;
}

footer .email .input-group .form-control:active, footer .email .input-group .form-control:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

footer .email .input-group .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 8px !important;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    cursor: pointer;
}

footer .email .input-group .btn:hover {
    background: var(--primary);
}

footer .social {
    display: flex;
    padding-top: 1rem;
}

footer .social .box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 50%;
    margin-left: 1rem;
}

footer .separator {
    width: 100%;
    min-height: 0.1rem;
    background: var(--gray);
    margin: 1rem 0;
}

footer .foot .copy {
    text-align: center;
    color: var(--text-light);
}

footer .foot .copy .link {
    color: white;
    text-decoration: none;
}

/*
** media styles
*/
@media (max-width: 991.98px) {
    footer {
        padding: 1.5rem 1rem;
    }

    footer .footer-brand img {
        max-width: 180px;
    }

    footer .foot {
        padding: 0.5rem 0;
        text-align: center;
    }
}
