footer {
    position: relative;
    width: 100%;
    overflow: hidden;
}


 .moving-vehicle-gif {
  position: fixed;
  bottom: 0;
  left: -40px;
  width: 160px;
  z-index: 20;
  animation: movingLeftRight 16s infinite ease-in-out;
}
 .moving-vehicle-gif img {
  width: 100%;
  height: 100%;
}

@keyframes movingLeftRight {
  0% {
    left: -160px;
  }

  100% {
    left: 100%;
  }
}

footer .scroll-top-btn a {
    position: fixed;
    bottom: 100%;
    right: 20px;
    z-index: 999;
    display: inline-block;
    opacity: 0;
    transition: all 0.4s;
}

footer .scroll-top-btn a.scroll {
    bottom: 20px;
    opacity: 1;
}

footer .scroll-top-btn a svg {
    width: 24px;
    height: 24px;
    padding: 14px;
    border-radius: 50%;
    border: 3px solid #01203f;
    color: #01203f;
    background-color: #fff;
    transition: all 0.4s;
}

footer .scroll-top-btn a svg:hover {
    transform: scale(1.1);
}


footer .top-footer {
    padding: 30px 0;
    background-color: #00274e;
}

footer .top-footer p {
    margin: 0;
    color: #fff;
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: 500;
}

footer .top-footer .social {
    text-align: end;
}

footer .top-footer .social a svg {
    display: inline-block;
    width: 25px;
    height: 25px;
    padding: 15px;
    background-color: #fff;
    color: #01203f;
}

footer .main-footer {
    padding: 60px 0 0;
    position: relative;
}


footer .main-footer .img-box img {
    width: 200px;
    margin-bottom: 20px;
}

footer .main-footer p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 17px;
}

footer .main-footer h6 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    color: #01203f;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer .main-footer h6::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background-color: #01203f;
}

footer .main-footer .link-col li a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #01203f;
    font-weight: 500;
    transition: all 0.4s;
}

footer .main-footer .link-col li a:hover {
    color: #e7191f;
}

footer .main-footer .contact-col li a {
    display: block;
    margin-bottom: 10px;
    color: #01203f;
    font-weight: 500;
    transition: all 0.4s;
}

footer .main-footer .contact-col li a svg {
    color: #e7191f;
    margin-right: 6px;
}
footer .copyright {
    background-color: #01203f;
}
footer .copyright p {
    text-align: center;
    margin: 0;
    padding: 15px 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

footer .copyright p span{
    color: #ffcd00;
    text-transform: capitalize;
    font-weight: 800;
}


@media (max-width:768px) {
    footer .top-footer p {
        font-size: 26px;
    }


    footer .top-footer .social a svg {
        display: inline-block;
        width: 20px;
        height: 20px;
        padding: 8px;
        background-color: #fff;
        color: #01203f;
    }
}

@media (max-width:568px) {
    footer .top-footer p {
        font-size: 26px;
        text-align: center;
        margin-bottom: 10px;
    }


    footer .top-footer .social {
        text-align: center;
    }

}