.footerLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 10px;
}

.footerDescription {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #000;
    width: 200px;
    text-align: center;
}

    .footerDescription span {
        font-weight: 600;
    }

.footerTopMenu {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.footerTopMenuTitle {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #4F4F4F;
    position: relative;
    width: max-content;
}

    .footerTopMenuTitle::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 2px;
        border: 1px solid #272f6a;
        border-radius: 50%;
    }

    

.footerTopMenuList ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    row-gap: 12px;
}

    .footerTopMenuList ul li a {
        font-family: Poppins;
        font-size: 15px;
        font-weight: 400;
        line-height: 23px;
        text-decoration: none;
        color: #4F4F4F!important;
        display: flex;
        align-items: center;
        column-gap: 12px;
    }

        .footerTopMenuList ul li a i, .footerTopMenuList ul li a svg {
            font-size: 20px;
        }

        .footerContactMenuList ul li a {
            align-items: start !important;
        }

            .footerContactMenuList ul li a svg {
                min-width: 20px;
                min-height: 20px;
                max-width: 20px;
                display: block;
                max-height: 20px;
            }

.footerTop {
    padding-top: 85px;
    padding-bottom: 85px;
}



.footerBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 20px;
    border-top: 1px solid #EBEBEB;
}

.footerBottomCopyright {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6A6E74;
}

@media only screen and (max-width: 991px)
{
    .footerLogo {
        align-items: start;
    }

    .footerDescription {
        text-align: start;
    }
}

@media only screen and (max-width: 767px)
{

    .footerTop {
        padding: 24px;
    }
}

@media only screen and (max-width: 575px)
{

    .custom-col-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .footerSocialMedia ul li a {
        justify-content: start;
    }

    .footerContactMenuList ul li a {
        justify-content: start;
    }


    .footerBottom {
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        row-gap: 10px;
    }

    .footerBottomCopyright {
        text-align: center;
    }
}


@media only screen and (max-width: 475px)
{
    .custom-col-6
    {
        width: 100%;
    }

}