

#banner{
    width:100%;
    height:90vh; 
    position: relative;
    display:flex;
    align-items: center;
    justify-content: center;
}

#bannerImg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity: 0.2;
    z-index: -1;
}
#bannerLogo{
    width:100px; 
    height: 100px;
}
#bannerLogoDiv{
    display:flex;
    align-items:center;
    justify-content:center
}
#info1{
    background-color: var(--primary);
   
}
#info1 p{
    color:var(--white);
    text-align:center;
    font-size:1rem;
    padding:20px;
}

#info2 p{
    color:var(--white);
    font-size:1rem;
    padding:20px;
    text-align:center;
}
.content h1{
    color:var(--white);
    font-size:5rem;
}

.content h2{
    color:var(--white);
}

.ourFootprint h2{
    font-size:3rem;
}
.ourfootHead{
    font-size:3rem;
}
.footLogo img{
    width:100%;
    object-fit:scale-down;
}

.footLogo{
    display:flex;
    align-items:center;
    justify-content:center;
}
.ourFootprint{
    padding:20px;
}

#ourFootLogo{
    width:200px;
    height:200px;
    object-fit: contain;
}

#ourFootprintDiv{
    display:flex;
    align-items:center;
    justify-content:center;
}

.positionIndex{
    width:15px;
    height:15px;
}

.container{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.followUs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.icon{
    width: 80px;
    height: 80px;
    background-color: #f1f1f1;
    margin: 10px;
    border-radius: 30%;
    color: var(--primary);
    box-shadow: 0 5px 15px -5px #00000070;
    position: relative;
    overflow: hidden;
}

.icon i{
    line-height: 80px;
    font-size: 25px;
    transition: all 0.2s;
}

.icon:hover i{
transform: scale(1.3);
color: #f1f1f1;
}

.icon:before{
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background-color: var(--primary);
    left: -110%;
    top: 90%;
    transform: rotate(45deg);
}

.icon:hover:before{
    animation: animation 0.7s 1 forwards;
}

.socialHead{
    font-size:3rem;
}

@keyframes animation{
    0%{
        left:-110%;
        top: 90%;
    }
    50%{
        left:15%;
        top:-30%;
    }
    100%{
        left:-10%;
        top: -10%;
    }
}

@media(min-width:768px) {
h1{
    font-size:3rem;
}
h2{
    font-size:2rem;
}
h3{
    font-size: 1.5rem;
}
.icontop{
    width:50px;
    height:50px;
} 
}

@media(min-width:768px){
    .content h1{    
        font-size:8rem;
    }
    #bannerLogo{
        width:200px; 
        height:200px;
    }
    #info1 p{
        font-size:1.4rem;
    }
    
    #info2 p{
        font-size:1.4rem;
    }
}