
:root{
    --main-color:#012093;
    --small: 1.2rem;
    --medium: 1.4rem;
    --large: 1.8rem;
    --xxLarge: 3rem;
}

/* Global loading overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.548); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spinner-overlay.active {
    visibility: visible;
    opacity: 1;
}

.spinner-overlay img {
    max-width: 150px;
    height: auto;
}

.footerSection{
    background-color: #161616;
    padding: 0;
}
.footerSection .footer main{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 25px;
}
.footerSection .footer main .col-lft{
    flex: 1;
}
.footerSection .footer main .col-rgt{
    flex: 1;
    text-align: center;
}
.footerSection .footer p.name{
    color: white;
    font-size: var(--xxLarge);
    font-weight: 400;
    font-family: 'Lilita One', Arial, Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    padding: 10px 0;
}
.footerSection .footer p.slogan{
    color: white;
    font-size: var(--large);
    font-weight: 400;
    font-family: 'Noto serif', Arial, Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    padding: 10px 0 12px 0;
}
.footerSection .footer p.slogan span{
    font-style: italic;
    font-family: 'Noto Sans', serif;
}
.footerSection .footer .socials{
    margin: 7px 0;
}
.footerSection .footer .socials ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    place-self: center;
}

.footerSection .footer .socials ul li i{
    padding: 5px;
    color: var(--main-color);
    font-size: var(--large);
    clip-path: circle();
    background-color: #fff;
}

.footerSection .footer .socials ul li:hover{
    scale: 1.05;
}
.footerSection .footer .footerLinks{
    margin-top: 5px;
}
.footerSection .footer .footerLinks.pages{
    margin-top: 5px;
    padding: 5px 5px;
}
.footerSection .footer .footerLinks ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footerSection .footer .footerLinks ul li{
    border-right: 1px solid #fff;
    padding: 0 8px;
}
.footerSection .footer .footerLinks ul li:last-child{
    border-right: 0;
    padding-right: 0;
}
.footerSection .footer .footerLinks ul li a{
    font-size: var(--medium);
    font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: white;
    text-transform: none;
    text-decoration: none;
}
.footerSection .footer .footerLinks ul li a:hover{
    color: #e9e518;
}
.footerSection .footer main .col-rgt p.hd{
    color: #ffffff;
    font-size: var(--large);
    font-weight: 600;
    font-family: 'Inter', serif;
    text-transform: capitalize;
    text-decoration: none;
}
.footerSection .footer main .col-rgt .list{
    padding: 5px;
}
.footerSection .footer main .col-rgt .list p.sub-hd{
    color: #ffffff;
    font-size: var(--medium);
    font-weight: 600;
    font-family: 'Inter', serif;
    text-transform: capitalize;
    text-decoration: none;
}
.footerSection .footer main .col-rgt .list p.tp{
    color: #dadada;
    font-size: var(--small);
    font-weight: 400;
    font-family: 'Inter', serif;
    text-transform: capitalize;
    text-decoration: none;
    padding: 5px 0 8px 0;
}
.footerSection .footer .copyr{
    padding: 8px;
    margin: 0;
    text-align: center;
    background-color: #000000;
}
.footerSection .footer .copyr p,
.footerSection .footer .copyr p span{
    font-size: var(--small);
    font-weight: 400;
    font-family: 'Noto serif', serif;
    color: white;
    text-transform: none;
    text-decoration: none;
}

@media (max-width: 851px) {

    .footerSection .footer main .col-lft{
        flex: 100%;
        margin-bottom: 15px;
    }
    .footerSection .footer main .col-rgt{
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .spinner-overlay img {
        max-width: 80px;
        height: auto;
    }
}