/* Start custom CSS for html, class: .elementor-element-79a23bb *//* =========================================================
   GERMANLANGUAGE.CO.IN
   PREMIUM FOOTER
   ========================================================= */

:root {
    --gl-orange: #FF9E20;
    --gl-teal: #215E61;
    --gl-dark: #1D2128;
    --gl-light: #F4F2F2;
    --gl-white: #ffffff;
}


/* =========================================================
   FOOTER RESET
   ========================================================= */

.gl-footer,
.gl-footer * {
    box-sizing: border-box;
}

.gl-footer {
    font-family: Arial, Helvetica, sans-serif;
}

.gl-footer a {
    text-decoration: none;
}

.gl-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gl-footer p,
.gl-footer h3 {
    margin-top: 0;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.gl-footer-main {
    background:
        linear-gradient(
            135deg,
            #1D2128 0%,
            #202b30 50%,
            #215E61 100%
        );

    position: relative;

    overflow: hidden;

    color: white;

    padding: 75px 0 65px;
}


/* Decorative orange glow */

.gl-footer-main::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border: 70px solid rgba(255,158,32,0.05);

    border-radius: 50%;

    top: -180px;
    right: -150px;

    pointer-events: none;
}


/* Decorative teal circle */

.gl-footer-main::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 50px solid rgba(255,255,255,0.025);

    border-radius: 50%;

    bottom: -170px;
    left: -120px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.gl-footer-container {
    width: min(1380px, 94%);

    margin: auto;

    display: grid;

    grid-template-columns:
        1.6fr
        0.8fr
        1fr
        1fr
        1.25fr;

    gap: 45px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   BRAND COLUMN
   ========================================================= */

.gl-footer-brand {
    padding-right: 20px;
}


.gl-footer-logo {
    display: inline-block;

    margin-bottom: 20px;

    background: white;

    padding: 8px 13px;

    border-radius: 10px;
}


.gl-footer-logo img {
    display: block;

    width: 190px;

    height: auto;

    max-height: 70px;

    object-fit: contain;
}


.gl-footer-brand p {
    color: rgba(255,255,255,0.68);

    font-size: 13px;

    line-height: 1.8;

    max-width: 330px;

    margin-bottom: 25px;
}


/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */

.gl-footer-social {
    display: flex;

    gap: 10px;
}


.gl-footer-social a {
    width: 39px;
    height: 39px;

    border-radius: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 800;

    color: white;

    border: 1px solid rgba(255,255,255,0.14);

    background: rgba(255,255,255,0.06);

    transition: 0.25s ease;
}


.gl-footer-social a:hover {
    background: var(--gl-orange);

    color: var(--gl-dark);

    transform: translateY(-4px);

    border-color: var(--gl-orange);
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.gl-footer-column h3 {
    color: white;

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 10px;
}


/* Orange line */

.gl-footer-title-line {
    width: 38px;
    height: 3px;

    background: var(--gl-orange);

    border-radius: 20px;

    margin-bottom: 20px;
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.gl-footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.gl-footer-column ul li a {
    color: rgba(255,255,255,0.65);

    font-size: 12px;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: 0.2s ease;
}


.gl-footer-column ul li a span {
    color: var(--gl-orange);

    font-size: 15px;

    transition: 0.2s ease;
}


.gl-footer-column ul li a:hover {
    color: white;

    transform: translateX(4px);
}


.gl-footer-column ul li a:hover span {
    transform: translateX(3px);
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.gl-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

    color: white;
}


.gl-contact-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(255,158,32,0.12);

    color: var(--gl-orange);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 800;

    border: 1px solid rgba(255,158,32,0.15);
}


.gl-contact-item small {
    display: block;

    color: rgba(255,255,255,0.45);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 3px;
}


.gl-contact-item strong {
    display: block;

    color: white;

    font-size: 12px;

    font-weight: 700;
}


.gl-contact-item:hover .gl-contact-icon {
    background: var(--gl-orange);

    color: var(--gl-dark);

    transform: translateY(-2px);
}


/* =========================================================
   ENQUIRE CTA
   ========================================================= */

.gl-footer-cta {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    width: 100%;

    padding: 13px 18px;

    margin-top: 8px;

    border-radius: 9px;

    background: var(--gl-orange);

    color: var(--gl-dark);

    font-size: 13px;

    font-weight: 800;

    transition: 0.25s ease;
}


.gl-footer-cta span {
    font-size: 18px;

    transition: 0.2s ease;
}


.gl-footer-cta:hover {
    background: white;

    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}


.gl-footer-cta:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.gl-footer-bottom {
    background: #14171c;

    border-top: 1px solid rgba(255,255,255,0.07);

    padding: 18px 0;
}


.gl-footer-bottom-inner {
    width: min(1380px, 94%);

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.gl-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.48);

    font-size: 11px;
}


.gl-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 12px;
}


.gl-footer-bottom-links a {
    color: rgba(255,255,255,0.48);

    font-size: 10px;

    transition: 0.2s ease;
}


.gl-footer-bottom-links a:hover {
    color: var(--gl-orange);
}


.gl-footer-bottom-links span {
    color: rgba(255,255,255,0.2);

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .gl-footer-container {
        grid-template-columns:
            1.5fr
            1fr
            1fr
            1fr;

        gap: 35px;
    }


    .gl-footer-brand {
        grid-column: span 4;

        padding-right: 0;

        margin-bottom: 15px;
    }


    .gl-footer-brand p {
        max-width: 600px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 850px) {

    .gl-footer-main {
        padding: 55px 0 45px;
    }


    .gl-footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 25px;
    }


    .gl-footer-brand {
        grid-column: span 2;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .gl-footer-main {
        padding: 45px 0 40px;
    }


    .gl-footer-container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .gl-footer-brand {
        grid-column: span 1;
    }


    .gl-footer-brand p {
        font-size: 12px;

        line-height: 1.7;
    }


    .gl-footer-logo img {
        width: 165px;
    }


    .gl-footer-column h3 {
        font-size: 16px;
    }


    .gl-footer-bottom-inner {
        width: 90%;

        flex-direction: column;

        text-align: center;

        gap: 10px;
    }


    .gl-footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}/* End custom CSS */