/* =========================================================
   FOOTER
========================================================= */

.footer {

    background: linear-gradient(
        90deg,
        #07194b 0%,
        #0d2a78 100%
    );

    padding: 45px 80px;

    overflow: hidden;

}

/* =========================================================
   CONTAINER
========================================================= */

.footer__container {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 60px;

    align-items: flex-start;

}

/* =========================================================
   BRAND
========================================================= */

.footer__brand {

    max-width: 320px;

}

/* =========================================================
   LOGO
========================================================= */

.footer__logo {

    display: inline-flex;

    margin-bottom: 20px;

}

.footer__logo img {

    width: 210px;

    height: auto;

    display: block;

}

/* =========================================================
   TEXT
========================================================= */

.footer__text {

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   COLUMN
========================================================= */

.footer__column {

    display: flex;
    flex-direction: column;

}

/* =========================================================
   TITLE
========================================================= */

.footer__title {

    font-size: 16px;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 18px;

}

/* =========================================================
   NAV
========================================================= */

.footer__nav {

    display: flex;
    flex-direction: column;

    gap: 10px;

}

/* =========================================================
   LINKS
========================================================= */

.footer__nav a {

    color: rgba(255,255,255,0.82);

    font-size: 14px;

    text-decoration: none;

    transition: var(--transition-fast);

}

.footer__nav a:hover {

    color: #ffffff;

    transform: translateX(3px);

}

/* =========================================================
   SOCIAL
========================================================= */

.footer__social {

    display: flex;
    flex-direction: column;

}

/* =========================================================
   SOCIALS
========================================================= */

.footer__socials {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

}

/* =========================================================
   SOCIAL LINK
========================================================= */

.footer__socials a {

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;

    border-radius: 50%;

    transition: var(--transition-fast);

}

.footer__socials a:hover {

    background: var(--color-secondary);

    transform: translateY(-3px);

}

/* =========================================================
   SOCIAL ICON
========================================================= */

.footer__socials svg {

    width: 18px;
    height: 18px;

    stroke: #ffffff;

    stroke-width: 2;

}

/* =========================================================
   COPYRIGHT
========================================================= */

.footer__copyright {

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.78);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .footer {

        padding: 50px 30px;

    }

    .footer__container {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px;

    }

}

@media (max-width: 768px) {

    .footer {

        padding: 45px 25px;

    }

    .footer__container {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer__brand {

        max-width: 100%;

    }

    .footer__logo img {

        width: 180px;

    }

}



/* =========================================================
   SUBFOOTER
========================================================= */

.subfooter {

    background: #041133;

    border-top: 1px solid rgba(255,255,255,0.06);

    padding: 18px 80px;

}

/* =========================================================
   CONTAINER
========================================================= */

.subfooter__container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    flex-wrap: wrap;

}

/* =========================================================
   LEFT / CENTER / RIGHT
========================================================= */

.subfooter__left,
.subfooter__center,
.subfooter__right {

    font-size: 13px;

    color: rgba(255,255,255,0.72);

    line-height: 1.7;

}

/* =========================================================
   CENTER
========================================================= */

.subfooter__center {

    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}

/* =========================================================
   LINKS
========================================================= */

.subfooter a {

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    transition: var(--transition-fast);

}

.subfooter a:hover {

    color: #ffffff;

}

/* =========================================================
   STRONG
========================================================= */

.subfooter__right strong {

    color: #ffffff;

    font-weight: 600;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .subfooter {

        padding: 18px 30px;

    }

    .subfooter__container {

        flex-direction: column;

        text-align: center;

    }

}

@media (max-width: 768px) {

    .footer{
        text-align: center;
    }

    .footer__social{
        text-align: center;
    }

    .subfooter {

        padding: 20px 25px;

    }

    .footer__socials {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    text-align: center;
    width: 37%;
    margin: auto;
}
.footer__contact-text {
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.8;
    width: 260px;
    text-align: center;
    margin: auto;
    margin-top: 2rem;
}
    .subfooter__center {

        justify-content: center;

    }

}


.footer__contact-text{
    margin-top:18px;
    color:rgba(255,255,255,.7);
    font-size:13px;
    line-height:1.8;
    max-width:260px;
}