footer{
    margin-top: 40px;
    min-height: 400px;
    background-color: #C8D0DD;
    position: relative;
    overflow-y: auto;
}

footer .left{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 250px;
    width: 120px;
    height: auto;
}

footer .content img{
    height: 42px;
    width: auto;
}

footer .right{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 300px;
}

footer .content{
    padding: 80px var(--page-gapping);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

footer .icon-container{
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1.8em;
}

footer svg{
    fill: #1F4C99;
    width: 32px;
    height: 32px;
}

footer h4{
    margin-top: 0;
}

footer a{
    color: rgb(75, 75, 75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6em;
}

footer a:hover{
    color: rgb(2, 2, 2);
    text-decoration: underline;

}

footer .contact a{
    display: flex;
    align-items: center;
    gap: 1em;
}

footer .contact svg{
    width: 24px;
}

footer hr{
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
}

footer>p{
    text-align: center;
}




@media only screen and (max-width: 800px) {

    footer .content{
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    footer .left{
       
        right: 0;
        top: 50px;
        left: unset;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
    
}

@media only screen and (max-width: 700px) {
    
    footer .content {
        grid-template-columns: 100%;
    }
}
