footer{
    margin-top: 40px;
    background:#d2eeff ;
    width: 100%;
}
footer a{
    color: #063957;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

 footer .container a p{
    position: relative;
}

footer .wrapper{
    padding: 40px 7%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}


footer .container img{
    width: auto;
    height: 4.6rem;
    margin-bottom: 20px;
}

footer .container p{
    color: #063957;
    line-height: 1.4;
    margin-bottom: 20px;
}

footer .container .header{
    font-size: 1.3em;
    font-weight: bold;
    margin: 30px 0px 45px;
    color: #063957;
}

footer .info{
    display: flex;
    color: #063957;
}
footer .info i{
    font-size: 16px;
    margin-right: 10px;
}

footer .info p{
    color: #063957;
    transition: 0.3S ease;
}
footer .container p:after,
.info p:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: #063957;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
footer .container p:hover  p:after,
footer a:hover p:after {
    width: 100%;
    left: 0;
} 

footer .social-medias{
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

footer .container .partnershead{
    margin: 30px 0px 25px;
}

footer .container .partners{
    height: 3rem;
    width: auto;
}
footer .social-medias i{
    color: #063957;
    font-size: 18px;
}

footer .social-medias a{
    transition: 0.4s ease;
}

footer .social-medias a:hover{
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    footer{
        display: block;
    }

    footer .wrapper{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    footer .container .header{
        font-size: 1.3em;
        font-weight: bold;
        margin: 30px 0px 15px;
        color: #063957;
    }
}