/* ===============================================
   Footer V2 Premium
===============================================*/

.footer-v2 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, #c8ddf5 0%, transparent 35%),
        radial-gradient(circle at bottom left, #d6e6fa 0%, transparent 40%),
        linear-gradient(180deg, #edf3fb, #e4ecf7);
    border-top: 4px solid #345a8b;
    font-family: 'Open Sans', sans-serif;
    color: #4b5563;
    height: 100% !important;
    /* margin-top: 40px; */
}

/* Decorative background */

.footer-v2::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #345a8b10;
    border-radius: 50%;
    top: -170px;
    right: -120px;
}

.footer-v2::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: #7ba6df12;
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

.footer-v2__inner {

    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 28px;

    padding: 70px 35px;
}

/******************************************
Brand
******************************************/

.footer-v2__logo {

    max-height: 48px;
    margin-bottom: 20px;
}

.footer-v2__desc {

    max-width: 420px;

    color: #667085;

    line-height: 1.8;
}

/******************************************
Cards
******************************************/

.footer-v2__col {

    background: rgba(255, 255, 255, .72);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 18px;

    padding: 24px;

    transition: .35s;
}

.footer-v2__col:hover {

    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(52, 90, 139, .12);
}

/******************************************
Heading
******************************************/

.footer-v2__heading {

    position: relative;

    margin: 0 0 18px;

    font-size: 16px;

    font-weight: 700;

    color: #23395b;
}

.footer-v2__heading:after {

    content: "";

    display: block;

    width: 45px;

    height: 4px;

    border-radius: 30px;

    margin-top: 10px;

    background: linear-gradient(90deg, #345a8b, #69a3ff);
}

/******************************************
Links
******************************************/

.footer-v2__links {

    list-style: none;

    margin: 0;

    padding: 0;
    cursor: pointer;
}

.footer-v2__links li {

    margin-bottom: 14px;
}

.footer-v2__links a {

    display: inline-flex;

    align-items: center;

    color: #5b6575;

    text-decoration: none;

    transition: .25s;

    font-size: 15px;
}

.footer-v2__links a::before {

    content: "›";

    color: #345a8b;

    margin-right: 8px;

    font-size: 18px;

    transition: .25s;
}

.footer-v2__links a:hover {

    color: #345a8b;

    transform: translateX(6px);
}

.footer-v2__links a:hover::before {

    margin-right: 12px;
}

/******************************************
Facebook
******************************************/

.footer-v2__social {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px;

    border-radius: 12px;

    background: linear-gradient(135deg, #1877F2, #125ac8);

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

    box-shadow:
        0 10px 25px rgba(24, 119, 242, .28);
}

.footer-v2__social:hover {

    transform: translateY(-4px);

    color: white;

    text-decoration: none;

    box-shadow:
        0 18px 35px rgba(24, 119, 242, .35);
}

.footer-v2__social i {

    font-size: 20px;
}

/******************************************
Bottom Bar
******************************************/

.footer-v2__bar {

    position: relative;

    z-index: 2;

    border-top: 1px solid #dde6f2;

    background: rgba(255, 255, 255, .6);

    backdrop-filter: blur(10px);
}

.footer-v2__bar-inner {

    max-width: 1200px;

    margin: auto;

    padding: 22px 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    font-size: 13px;

    color: #8a94a5;
}

.footer-v2__bar-inner a {

    color: #345a8b;

    font-weight: 600;
}

.footer-v2__bar-inner a:hover {

    text-decoration: underline;
}

/******************************************
Tablet
******************************************/

@media(max-width:991px) {

    .footer-v2__inner {

        grid-template-columns: 1fr 1fr;

        padding: 50px 25px;
    }

    .footer-v2__brand {

        grid-column: 1/-1;
    }
}

/******************************************
Mobile
******************************************/

@media(max-width:640px) {

    .footer-v2__inner {

        grid-template-columns: 1fr;

        padding: 40px 18px;

        gap: 22px;
    }

    .footer-v2__col {

        padding: 20px;
    }

    .footer-v2__bar-inner {

        flex-direction: column;

        gap: 6px;
    }

    .footer-v2__desc {

        max-width: 100%;
    }
}