#footer-placeholder{
    padding-top: 10vh;
    background: black;
  position: relative;
  z-index: 1;
    
}

.footer-section1{
    display: flex;
    justify-content: space-between;
    padding-bottom: 7vh;
}

.section-heading{
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 60px;
    font-feature-settings: "ss03" on;
    color: white;
}

.section-subheading{
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 28px;
    padding-top: 31px;
    color: white;
}

.footer-section1-left-container{
    width: 50%;
}

.footer-section1-right-container{
    display: flex    ;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-end;
}

.footer-section1-right-container button{
    padding: 15px 42px;
    cursor: pointer;
    background-color:transparent;
    border: 3px solid white;
   position: relative;
   width: fit-content;
}

.footer-section1-right-container button span{
    position: relative;
    color: white;
    z-index: 1;
    font-weight: 500;
    font-size: 21px;
display: flex;
align-items: center;
gap: 10px;
    img{
        height: 25px;
        filter: invert();
        transition: all 0.5s ease;
    }
}

.footer-section1-right-container button::after{
    content: "";
    height: 100%;
    width: 0%;
    background-color: white;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    color: black;
    transition: all 0.5s ease;
}


.footer-section1-right-container button:hover::after{
   width: 100%;
   
}

.footer-section1-right-container button:hover span{
 color: black;

 img{
    filter: invert(0);
 }
 }



 .frc-heading{
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 26px;
    margin: 20px 0px;
    color: white;
    margin-bottom: 0;
 }

 .frc-subheading{
   
    font-weight: 500;
        font-size: 23px;
        line-height: 26px;
        color: white;

 }

 .footer-section2{
    padding-top: 20vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: url(/img/world_map_new.webp) no-repeat center center/contain;
    background-size: 90%;
    background-position: top
 }

 hr{
    height: 3px;
    background: gray;
    border: none;
 }

 .h1{
    font-size: 3rem;
    font-weight: 500;
    color: white;
 }

 .footer-section2 ul{
    list-style: none;
    display: flex;
    gap: 2rem;
    font-size: 25px;
    color: white;
 }

 .countries-names{
    cursor: pointer;
    position: relative;
 }
 .countries-names::after{
    content: "";
    width: 0%; /* Initially 0% */
    height: 3px; /* Height of the underline */
    bottom: 0;
    left: 0;
    position: absolute;
    background-color: rgb(255, 255, 255);
    /* Transition for the underline */
   
 }

 .location-details-div{
   
display: flex;
gap: 10px;
 }

 .location-details-content{
    height: fit-content;
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
 }

 .location-details-content h2{
    color: white;
 }

 .location-details-div img{
    height: 16rem;
    object-fit: cover;
 }

 .location-details-div p{
    font-size: 20px;
    width: 80%;
    color: gray;
 }
 .footer-section3{
    padding: 10vh 0;
 }
 

 .footer-section3-content{
    display: flex;
        flex-direction: column;
        gap: 0.5rem;
       

        img{
            width: 16rem;
            margin-bottom: 1rem;
        }

        p{
            color: gray;

            
        }
        :nth-child(2){
color: white;
font-size: 20px;
        }
 }


 .footer-copyright-div{
     background: linear-gradient(to left, rgb(0, 0, 0) 10%, rgb(1, 4, 214) 250%);
     padding: 3vh 0;

    .copyright-content{
     display: flex;
     justify-content: space-between;

    p{
        color: gray;
    }
    
    .footer-links{
        list-style: none;
        display: flex;
       gap: 15px;

       
    }

    .footer-links li a{
        text-decoration: none;
        color: gray;
    }

    .footer-links li a:hover{
        color: rgb(255, 255, 255);
    }
}
 }

.footer-active{
    position: relative;
}

.countries-names.footer-active::after{ 
    width: 100%;
    transition: width 0.5s ease;
 }

 .display-none{
    display: none;
 }