.common-layout .login-section{
    padding-top: 9rem;
}
.header-common{
    background-color: #0F3A49;
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
.header-common .navbar-toggler{
    background-color: #fff;
    margin-right: 2rem;
}
.header-common::before{
    content: '';
    position: absolute;
    display: block;
    background-color: #fff;
    height: 100%;
    width: 12%;
    left: 0;
    top: 0;
}
.header-common .navbar{
    padding: 0;
}
.header-common .navbar-brand {
    padding: 0;
}
.header-common .navbar-brand img{
    height: 6.25rem;
    width: auto;
}
.header-common .nav-link{
    color: #FFF !important;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0 3rem !important;
    position: relative;
}
.header-common .nav-link:hover::before, .header-common .nav-link.active::before{
    content: '';
    position: absolute;
    display: block;
    bottom: -6px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    height: 3px;
    width: 28%;
}
@media (max-width:991px){
    .header-common .navbar-nav{
        position: absolute;
        right: 1rem;
        width: 17.5rem;
        background-color:#fff ;
        border: 1px solid #0F3A49;
        top: 6.4rem;
        border-radius: 8px;
        padding: 0.4rem 0;
    }
    .header-common .nav-link{
        padding: 0.6rem 1rem !important;
        color: #000 !important;
    }
    .header-common .nav-link:hover{
        background-color: #0F3A49;
        color: #fff !important;
    }
    .header-common .navbar-brand img {
        height: 5.25rem;
    }
    .header-common .nav-link:hover::before, .header-common .nav-link.active::before{
        content: none;
    }
}


/* ==============common footer code starts============== */
.common-footer{
    background: var(--Color-1, #ED1C24);
    padding: 3.125rem 0 1rem;
}
.common-footer .logo-img{
    height: 3.75rem;
    width: auto;
    margin-bottom: 0.375rem;
}

.common-footer .light-para{
    color: #FFECEC;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.875rem; /* 187.5% */
    text-transform: capitalize;
    margin-bottom: 0;
}
.common-footer .link-list{
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1.875rem;
    list-style: none;
    justify-content: end;
}
.common-footer .link-list a{
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.common-footer .footer-bottom{
    padding-top: 1.438rem;
    margin-top: 1.875rem;
    border-top: 1px solid #FF6060;
}
.common-footer .copyright-text{
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 0.8rem;
}
.common-footer .social-icons-list{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.938rem;
}
.common-footer .social-icons-list img{
    max-height: 1.875rem;
    width: auto;
}
@media (max-width:576px){
    .common-footer .text-responsive{
        margin-bottom: 1.4rem;
    }
    .common-footer .copyright-text, .common-footer .text-responsive{
        text-align: center;
    }
    .common-footer .social-icons-list, .common-footer .link-list{
        justify-content: center;
    }
}