/* =========================================================
   WEBLINKUS
   ENGLISH FOOTER
========================================================= */

.en-footer {
    width: 100%;

    background: #03142d;

    color: #ffffff;

    direction: ltr;

    text-align: left;
}


/* =========================================================
   CONTAINER
========================================================= */

.en-footer-container {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 65px 0 55px;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr
        1.2fr;

    gap: 45px;
}


/* =========================================================
   COLUMNS
========================================================= */

.en-footer-column {
    min-width: 0;
}

.en-footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   LOGO
========================================================= */

.en-footer-logo {
    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

    text-decoration: none;
}

.en-footer-logo:hover {
    color: #ffffff;
}


/* =========================================================
   ABOUT
========================================================= */

.en-footer-about p {
    max-width: 330px;

    margin: 0;

    color: #b8c5d6;

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   LIST
========================================================= */

.en-footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.en-footer-column li {
    margin: 0 0 11px;

    padding: 0;
}

.en-footer-column li:last-child {
    margin-bottom: 0;
}

.en-footer-column li a {
    color: #b8c5d6;

    font-size: 14px;

    text-decoration: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.en-footer-column li a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* =========================================================
   CONTACT
========================================================= */

.en-footer-contact p {
    margin: 0 0 18px;

    color: #b8c5d6;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PHONE
========================================================= */

.en-footer-phone {
    display: block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;
}

.en-footer-phone:hover {
    color: #ffffff;
}


/* =========================================================
   BUTTON
========================================================= */

.en-footer-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 22px;

    background: #155eef;

    color: #ffffff !important;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none !important;

    transition:
        background .25s ease,
        transform .25s ease;
}

.en-footer-button:hover {
    background: #0b4dcc;

    transform: translateY(-2px);
}


/* =========================================================
   BOTTOM
========================================================= */

.en-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.en-footer-bottom-container {
    width: min(1200px, 92%);

    margin: 0 auto;

    padding: 20px 0;
}

.en-footer-bottom p {
    margin: 0;

    color: #8796aa;

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .en-footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .en-footer-container {
        width: 92%;

        padding: 45px 0 40px;

        grid-template-columns: 1fr;

        gap: 32px;
    }

    .en-footer-about p {
        max-width: 100%;
    }

    .en-footer-column h3 {
        margin-bottom: 15px;
    }

    .en-footer-bottom-container {
        width: 92%;
    }

    .en-footer-bottom p {
        line-height: 1.7;
    }

}