
.Footer {
    position: fixed;
    bottom: 0%;
    width: 100vw;
    height: 450px;
    background-color: saddlebrown;
    display: flex;
    justify-content: center;
    z-index: -10;
}

.inner-footer {
    height: 50%;
    padding-top: 8%;
    width: 85%;
    display: flex;
    flex-direction: row;
    gap: 10%;
    align-items: flex-start;
}

.insight {
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 5%;
    height: 100%;
}

.first-insight,
.second-insight,
.third-insight {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
}

.first-insight>p,
.second-insight>p,
.third-insight>p {
    font-size: 20px;
    color: beige;
    padding-bottom: 20px;
}

.first-insight>.inner-first-insight,
.second-insight>.inner-second-insight,
.third-insight>.inner-third-insight {
    height: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    padding-top: 0%;
}


.first-insight>.inner-first-insight>span>a,
.second-insight>.inner-second-insight>span>a,
.third-insight>.inner-third-insight>span>a {
    font-size: 16px;
    text-decoration: none;
    color: beige;
    transition: all .3s ease-in-out;
}

.first-insight>.inner-first-insight>span>a:hover,
.second-insight>.inner-second-insight>span>a:hover,
.third-insight>.inner-third-insight>span>a:hover {
    color: #f6c763 !important;
    font-size: 17px;
}

.social-handles {
    width: 25%;
    display: flex;
    justify-content: space-evenly;
}

.social-handles span a .fa-brands{
    color: white;
    font-size: 36px;
    margin-left: 15px;
    transition: all .3s ease-in-out;
}

.social-handles span a .fa-brands:hover {
    color: #f6c763 !important;
}



@media screen  and (min-width:767px)  and (max-width:1200px){
    .inner-footer {
        width: 90%;
        gap: 5%;
    }
    .Footer .big-logo{
        width: 80%;
    }
    .Footer{
        z-index: -100 !important;
        display: static !important;
    }
}




@media screen  and (max-width:767px){
    .Footer {
        position: static;
        height: 1250px;
        min-width: 90vw !important;
        padding: 0%;
    }

    .inner-footer {
        height: 70%;
        width: 100%;
        flex-direction: column;
        gap: 5%;
        align-items: center;
    }
    
    .insight {
        width: fit-content;
        flex-direction: column;
        gap: 10%;
        height: 100%;
        align-items: center;
    }
    
    .first-insight,
    .second-insight,
    .third-insight {
        flex-direction: column;
        width: 100%;
        gap: 0%;

    }

    .first-insight>p,
    .second-insight>p,
    .third-insight>p {
        font-size: 25px;
    }
    
    .first-insight>.inner-first-insight>span>a,
    .second-insight>.inner-second-insight>span>a,
    .third-insight>.inner-third-insight>span>a {
        font-size: 20px;
    }
    
    .first-insight>.inner-first-insight,
    .second-insight>.inner-second-insight,
    .third-insight>.inner-third-insight {
        height: 150px;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 17%;
        padding-top: 5%;
    }
    
    .social-handles {
        width: 70%;
    }
}
