#footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #112a53;
    gap: 2rem;
    padding: 2rem 0;
}

#footer a {
    text-decoration: none;
    transition: none;
}

#footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

#footer .footer-top .social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#footer .footer-top .social .img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f36f2e;
    border: 1px solid #f36f2e;
}

#footer .footer-top .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .logo .logo-img {
    width: 170px;
}

#footer .footer-top .social-mobile {
    display: none;
}

#footer .footer-top .contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#footer .footer-top .contact .img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f36f2e;
    border: 1px solid #f36f2e;
}

#footer .footer-top .contact .phone {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    gap: 0.5rem;
}

#footer .footer-top .contact .mail {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    gap: 0.5rem;
}

#footer .footer-items {
    display: flex;
    justify-content: space-between;
    width: 90%;
}

#footer .footer-items .footer-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer .footer-items .footer-item .item-head {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f36f2e;
    width: fit-content;
}

#footer .footer-items .footer-item .item-head::after {
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #f36f2e;
    bottom: 0;
    left: 0;
    content: "";
    transition: width 0.5s;
}

#footer .footer-items .footer-item .item-head:hover::after {
    width: 100%;
}

#footer .footer-items .footer-item .item {
    position: relative;
    font-size: 0.875rem;
    color: #fafafa;
    width: fit-content;
}

#footer .footer-items .footer-item .item::after {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #fafafa;
    bottom: 0;
    left: 0;
    content: "";
    transition: width 0.5s;
}

#footer .footer-items .footer-item .item:hover::after {
    width: 100%;
}

#footer .footer-items-mobile {
    display: none;
}

#footer .divider {
    width: 90%;
    height: 1px;
    background-color: #405475;
}

#footer .footer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    gap: 1rem;
}

#footer .footer-foot .foot-detail {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #fafafa;
    white-space: nowrap;
}

#footer .footer-foot .foot-detail .highlight {
    color: #f36f2e;
    padding: 0 0.5rem;
}

#footer .footer-foot .terms {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #ffffff;
    gap: 1rem;
}

#footer .footer-foot .terms .sep_line {
    font-size: 1.5rem;
}

#footer .footer-foot .terms a {
    color: inherit;
    position: relative;
}

#footer .footer-foot .terms a::after {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    content: "";
    transition: width 0.5s;
}

#footer .footer-foot .terms a:hover::after {
    width: 100%;
}

#footer .heading {
    font-size: 1.5rem;
    font-family: Poppins;
    font-weight: 600;
    color: #000000;
}

#footer .sub-heading {
    font-size: 1.25rem;
    font-family: Poppins;
    font-weight: 500;
    color: #000000;
}

#footer .content {
    font-size: 1rem;
    font-family: Roboto;
    font-weight: 400;
    color: #000000;
}

@media screen and (max-width: 1300px) {
    #footer .footer-top .social .img-icon {
        font-size: 1.25rem;
        width: 35px;
        height: 35px;
    }

    #footer .footer-top .contact .img-icon {
        font-size: 1.25rem;
        width: 35px;
        height: 35px;
    }

    #footer .footer-items .footer-item .item-head {
        font-size: 1.125rem;
    }

    #footer .footer-items .footer-item .item {
        font-size: 0.75rem;
    }

    #footer .footer-foot .terms .sep_line {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 1000px) {
    #footer .footer-top .social .img-icon {
        font-size: 1.125rem;
        width: 30px;
        height: 30px;
    }

    #footer .footer-top .logo .logo-img {
        width: 130px;
    }

    #footer .footer-top .contact .img-icon {
        font-size: 1.125rem;
        width: 30px;
        height: 30px;
    }

    #footer .footer-top .contact .phone {
        font-size: 0.8125rem;
    }

    #footer .footer-top .contact .mail {
        font-size: 0.8125rem;
    }

    #footer .footer-items {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 1rem;
    }

    #footer .footer-items .footer-item {
        flex-basis: calc(25% - 0.77rem);
    }

    #footer .footer-items .footer-item .item-head {
        font-size: 1rem;
    }

    #footer .footer-foot .foot-detail {
        font-size: 0.8125rem;
    }

    #footer .footer-foot .terms {
        font-size: 0.8125rem;
    }

    #footer .footer-foot .terms .sep_line {
        font-size: 1rem;
    }
}

@media screen and (max-width: 750px) {
    #footer .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    #footer .footer-top .social {
        display: none;
    }

    #footer .footer-top .logo .logo-img {
        width: 160px;
    }

    #footer .footer-top .social-mobile {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    #footer .footer-top .social-mobile .img-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
        border-radius: 50%;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        background: #f36f2e;
        border: 1px solid #f36f2e;
    }

    #footer .footer-top .social-mobile .img-icon:last-of-type {
        margin: 0;
    }

    #footer .footer-top .contact .phone {
        font-weight: 700;
    }

    #footer .footer-top .contact .mail {
        font-weight: 700;
    }

    #footer .footer-items {
        display: none;
    }

    #footer .footer-items-mobile {
        display: flex;
        justify-content: space-between;
        width: 90%;
    }

    #footer .footer-items-mobile .footer-item-container {
        display: flex;
        flex-direction: column;
        width: 48%;
        gap: 1rem;
    }

    #footer .footer-items-mobile .footer-item-container .footer-item {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    #footer .footer-items-mobile .footer-item-container .footer-item .item-head {
        font-weight: 500;
        color: #f36f2e;
        font-size: 1rem;
    }

    #footer .footer-items-mobile .footer-item-container .footer-item .item-head:hover {
        text-decoration: underline;
    }

    #footer .footer-items-mobile .footer-item-container .footer-item .item:hover {
        text-decoration: underline;
    }

    #footer .footer-items-mobile .footer-item-container .footer-item .item {
        font-size: 0.75rem;
        color: #fafafa;
    }

    #footer .divider {
        width: 100%;
    }

    #footer .footer-foot {
        flex-direction: column;
    }

    #footer .footer-foot .terms {
        flex-direction: column;
    }

    #footer .footer-foot .terms .sep_line {
        display: none;
        font-size: 1.5rem;
        font-weight: 100;
    }
}