/* General Styles */
.footer {
    background-color: #066D6D;
    color: #fff;
    padding-top: 75px;
    overflow: hidden;
    padding-bottom: 60px;
}

.footer__trust-logo.next-line-logo {
    height: 85px;
    width: auto;
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 0;
    }
}

/* Logo & Social Column */
.footer__logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    z-index: 3;
}

.footer__social-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    position: relative;
    z-index: 3;
}

.footer__social-bubble {
    height: 42px;
    width: 42px;
    background-color: #e87d1e;
    border-radius: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 400ms ease;
}

.footer__social-bubble:hover {
    background-color: #ffae63;
}

@media (min-width: 1200px) {
    .footer__logo {
        margin-bottom: 42px;
        margin-left: 0;
        margin-right: 0;
        display: inline;
    }

    .footer__social-flex {
        position: absolute;
        bottom: 0;
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

/* Contact & Quick Links Columns */
.footer__txt-grp {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    position: relative;
    z-index: 3;
    text-align: center;
}

div:nth-child(3) .footer__txt-grp {
    margin-top: 35px;
}

.footer__heading {
    color: #EA7F1E;
    font-family: 'DM Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer__contact-flex {
    display: flex;
    align-items: flex-start;
    column-gap: 8px;
    justify-content: center;
}

.footer__contact-flex:hover .footer__contact-icon path,
.footer__contact-flex:hover .footer__contact-txt {
    color: #ffae63;
    fill: #ffae63;
}

.footer__contact-icon-wrapper {
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.footer__contact-icon path {
    transition: all 400ms ease;
}

.footer__contact-txt {
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #fff;
    margin-bottom: 0;
    transition: all 400ms ease;
}

.footer__txt {
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #fff;
}

@media (min-width: 768px) {
    div:nth-child(3) .footer__txt-grp {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .footer__txt-grp {
        text-align: left;
    }

    .footer__contact-flex {
        justify-content: flex-start;
    }
}

/* Trust Logos Column */
.footer__trust-logo-grp {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    margin-top: 35px;
}

.footer__trust-logo-bg-img {
    position: absolute;
    z-index: -1;
    bottom: -10px;
}

@media (min-width: 1200px) {
    .footer__trust-logo-grp {
        margin-top: 0;
    }

    .footer__trust-logo-bg-img {
        position: absolute;
        z-index: -1;
        bottom: initial;
        top: -125px;
    }
}

/* Bottom Bar */
.footer__bttm-bar {
    background-color: #C7E7E7;
    padding: 16px 10px 16px 0;
    border-top-right-radius: 50px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.footer__bttm-bar::before {
    content: '';
    background-color: #C7E7E7;
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
}

.footer__bttm-links-grp {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
    row-gap: 4px;
    max-width: 975px;
    margin-bottom: 4px;
}

.footer__bttm-link {
    color: #066D6D;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.footer__bttm-txt {
    color: #066D6D;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .footer__bttm-links-grp {
        column-gap: 55px;
    }
}

@media (min-width: 1200px) {
    .footer__bttm-bar {
        padding-right: 65px;
        max-width: 85%;
    }

    .footer__bttm-links-grp {
        justify-content: space-between;
        column-gap: 15px;
        row-gap: 10px;
    }
}

/* Sticky Buttons - Mobile */
@media (max-width: 767px) {
    .mobile-sticky-footer {
        display: flex !important;
        position: fixed;
        z-index: 5;
        bottom: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 0 10px rgba(0,0,0,.25);
        border-radius: 8px 8px 0 0;
    }

    .mobile-sticky__btn {
        display: inline-block;
        width: 50%;
        text-align: center;
        padding: 15px 0;
    }

    .mobile-sticky__btn.btn-left {
        background-color: #e87d1e;
        color: #fff;
        border-radius: 8px 0 0 0;
    }

    .mobile-sticky__btn.btn-right {
        background-color: #007a7a;
        color: #fff;
        border-radius: 0 8px 0 0;
    }
}