footer{
    background-color: var(--grey-color);
    font-weight: 400;
    color: #fff;
    border-radius: 40px 40px 0 0 ;
    margin-top: 100px;
    font-size: 14px;
    padding-top: 80px;
    position: relative;
}

footer .main-logo,
footer .custom-logo-link{
    display: block;
    width: 100%;
    max-width: 120px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    /* opacity: 0; */
}

footer .custom-logo-link img{
    width: 100%;
    height: auto;
}

footer .footer-heading{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin: 30px auto 20px;
}

footer .footer-contact-info p{
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 15px;
    margin-bottom: 20px;
}

footer .footer-contact-info p i{
    font-size: 18px;
    line-height: 16px;
    margin-top: 5px;
}

footer .f-menu{
    margin: 0 auto 35px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

footer a:hover{
    text-decoration: underline !important;
}

footer .copyrights{
    text-align: center;
    line-height: 1.5;
    padding: 20px 0;
    margin-top: 70px;
    border-top: 2px solid #fff;
}

footer  a{
    color: #fff;
}

@media only screen and (max-width: 1200px){
    footer  .f-menu{
        margin: 25px auto !important;
        row-gap: 10px;
    }
}

@media only screen and (max-width: 991px){
    footer .col-lg-4 .footer-heading{
        margin-top: 0;
    }
    footer .inner-row{
        margin-top: 30px;
    }
    footer .copyrights{
        margin-top: 50px;
    }
}