/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700;800;900&family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.UF-footer {
    width: 100%;
    background: linear-gradient(90deg,
            #192E9D 23.96%,
            #5273FF 100%);

    padding: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* =========================
   TOP AREA
========================= */

.UF-top {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px;
    box-sizing: border-box;
}

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

.UF-follow,
.UF-about,
.UF-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =========================
   TITLES
========================= */

.UF-title {
    color: rgba(215, 215, 215, 1);
    font-family: "Noto Serif";
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* =========================
   SOCIALS
========================= */

.UF-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.UF-social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s ease;
}

.UF-social-icon:hover {
    transform: scale(1.08);
}

/* =========================
   LINKS
========================= */

.UF-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.UF-links a {
    color: rgba(215, 215, 215, 1);
    font-family: Overpass;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s ease;
}

.UF-links a:hover {
    opacity: 0.7;
}

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

.UF-btn {
    padding: 18px 40px;
    border: none;
    background: #FFB601;
    border-radius: 4px;
    color: #1B1B1B;
    font-family: Overpass;
    font-size: 22px;
    cursor: pointer;
    transition: 0.5s ease;
}

.UF-btn:hover {
    background: #1436DB;
    color: #fff;
}

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

.UF-logo-wrapper {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.UF-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    cursor: pointer;
}

.UF-logo img {
    width: 150px;
    object-fit: contain;
    display: block;
}

.UF-logo-text {
    font-family: Overpass;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #1436DB;
    margin-top: 10px;
    text-align: center;
}

.blueDivider {
    /* height: 40px; */
    background-color: #192E9D;
}

.whiteDivider {
    height: 40px;
    background-color: #fff;
}

@media (max-width: 768px) {

    .UF-footer {
        padding: 60px 20px;
        overflow: hidden;

        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* =========================
       TOP AREA
    ========================= */

    .UF-top {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 10px;

        padding: 40px 0 0 0;

        position: relative;
        margin-top: 40px;
    }

    /* HIDE ABOUT */

    .UF-about {
        display: none;
    }

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

    .UF-logo-wrapper {
        order: -1;

        width: 100%;

        background: transparent;

        display: flex;

        justify-content: center;
    }

    .UF-logo {
        flex-direction: row;

        align-items: center;

        justify-content: center;

        gap: 18px;

        background: transparent;

        padding: 0;
    }

    .UF-logo img {
        width: 110px;
    }

    .UF-logo-text {
        color: rgba(255, 255, 255, 1);

        font-size: 30px;

        line-height: 1.1;

        margin-top: 0;

        text-align: left;

        max-width: 220px;
    }

    /* =========================
       CURVE
    ========================= */

    .UF-top::after {
        content: "";

        position: absolute;

        width: 160%;

        height: 220px;

        border-top: 2px solid rgba(255, 255, 255, 1);

        border-left: none;
        border-right: none;
        border-bottom: none;

        border-radius: 50%;

        left: 50%;

        transform: translateX(-50%);

        top: -20px;

        pointer-events: none;
    }

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

    .UF-contact {
        order: 2;

        align-items: center;

        gap: 0;
    }

    .UF-contact .UF-title {
        display: none;
    }

    .UF-btn {
        width: 260px;

        height: 65px;

        border: 2px solid #fff;

        background: transparent;

        color: #fff;

        border-radius: 8px;

        font-size: 22px;

        padding: 0;
    }

    /* =========================
       SOCIALS
    ========================= */

    .UF-follow {
        order: 3;

        align-items: center;

        gap: 0;
    }

    .UF-follow .UF-title {
        display: none;
    }

    .UF-socials {
        gap: 28px;
    }

    .UF-social-icon svg {
        width: 40px;
        height: 40px;
    }

    .UF-btn {
        font-size: 0;
    }

    .UF-btn::after {
        content: "Contact Us";

        font-size: 22px;

        font-family: Overpass;
    }

    /* =========================
       72 DRAGONS
    ========================= */

    .UF-footer::after {
        content: "© 72 Dragons";

        color: #fff;

        font-family: Overpass;

        font-size: 18px;

        text-align: center;

        display: block;
    }

    .UF-btn:hover {
        background: #FFB601;
        color: #1B1B1B;
        border-color: #FFB601;
    }

    .bottomDivider {
        display: none;
    }

    .blueDivider {
        display: none;
    }

    .whiteDivider {
        display: none;
    }

}

@media (max-width: 500px) {
    .UF-footer {
        padding: 40px 20px;
    }

    .UF-logo {
        justify-content: center;
        align-items: center;
    }

    .UF-logo-text {
        font-size: 20px;

        text-align: center;

        max-width: 160px;
    }

    .UF-logo img {
        width: 73.02px;
        height: 47.48px;
    }

    .UF-btn {
        width: 200px;
    }

    .UF-btn::after {
        font-size: 18px;
    }


}