footer {
    margin-top: 50px;
    padding: 4% 5%;
    background: url('../images/a2.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
    margin-top: 100px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(3, 89, 115, 0.88), rgba(3, 89, 115, 0.88)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66));
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    /* gap: 5%; */
}

.footer {
    width: 30%;

    color: #fff;
}

.footer:nth-child(1) {
    width: 30%;
}

.footer:nth-child(2) {
    width: 20%;
}

.footer:nth-child(3) {
    width: 20%;
}
.footer:nth-child(4) {
    width: 30%;
}

.footer h4 {
    color: var(--main-clr);
    margin-bottom: 20px;
}

.footer i {
    color: var(--main-clr);
}

.footer a {
    color: #fff;
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-contact div {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact div i {
    margin-right: 10px;
}

.footer1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer1 p {
    font-size: 14px;
}

.footer1 h4 {
    margin-top: 20px;
}

.footer-logo {
    width: 70px;
}

.footer-logo img {
    width: 100%;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.social-media a i {
    font-size: 30px;
}

.social-media a:nth-child(1) i{
    color: #E40000;
}

.social-media a:nth-child(2) i{
   background:  linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
   color: #fff;
   border-radius: 5px;
   font-size: 22px;
}

.social-media a:nth-child(3) i{
    color: #0866FF;
}

.mt-0{
    margin-top: 50px;
}

@media (width <=700px) {
    footer{
        margin-top: 120px;
    }
    .footer-content{
        flex-direction: column;
        gap: 10%;
    }
    .footer{
        width: 100%!important;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer1{
        margin-top: 30px;
    }
    .footer-logo{
        width: 100px;
    }
    
}