* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    margin-top: 10px;
    background-color: #002766;


}

footer .footer-container {
    display: flex;
    align-items: center;
    height: 640px;
    justify-content: space-evenly;

    margin: 0px 20px;
}

li a img {
    display: inline-block;
}

li a {
    display: flex;
    align-items: center;
    gap: 6px;
    /* spacing between icon and text */
    text-decoration: none;
    color: #000;
    /* or your desired text color */
}

.footer-logo img {
    width: 250px;
    height: 70px;
}

.footer-company-details {
    margin-top: 80px;
}

.footer-company-info p {
    width: 384px;
    margin: 12px 0px;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    font-family: "Open Sans", sans-serif;
    line-height: 25px;
}

.footer-contact-details {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-icon {
    background-color: #E2E7E7;
    border-radius: 20px;
    width: 37px;
    height: 37px;
    margin: 6px 0px;
    padding: 6px;
}

.footer-links {
    margin-top: -60px;
}

.footer-links-2 {
    margin-top: -170px;
}

.footer-links-3 {
    margin-top: -170px;
}

.links-title h4 {
    font-size: 20px;
    color: #fff;
}

.ul-footer-links {
    margin-top: 33px;
    line-height: 27px;
}

.ul-footer-links li {
    list-style: none;
}

.ul-footer-links a {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    font-family: "Open Sans", sans-serif;
}

.ul-footer-links li a {
    display: inline-flex;
}

.ul-footer-links a:hover {
    color: #ff7300;
    transition: 1s all ease-in;
}

.email-footer p {
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    font-family: "Open Sans", sans-serif;
    margin-top: 16px;
}

.footer-social-links-container {
    display: flex;
    gap: 14px;
}
.footer-social-links-container a{
    color: black;
}
.twitter,
.linkedIn,
.facebook,
.instagram {
    background-color: #E2E7E7;
    border-radius: 20px;
    width: 42px;
    height: 42px;
    margin: 6px 0px;
    padding: 12px;
    cursor: pointer;
}

.heading-social-media-links p {
    font-size: 18px;
    color: #fff;
    font-weight: 650;
    font-family: "Open Sans", sans-serif;
    padding-top: 20px;
    margin: 13px 0px;
}

.instagram:hover {
    background-color: #ff7300;
    color: white;
    transition: 1s all ease-in-out;
}

.twitter:hover {
    background-color: #ff7300;
    color: white;
    transition: 1s all ease-in-out;
}

.facebook:hover {
    background-color: #ff7300;
    color: white;
    transition: 1s all ease-in-out;
}

.linkedIn:hover {
    background-color: #ff7300;
    color: white;
    transition: 1s all ease-in-out;
}
.copyright-container p{
    text-align: center;
    color: white;
    font-size: 18px;
    opacity: 0.8;
   padding-top: 15px;
}
.footer-hr{
    background-color: white;
    width: 100%;
}
.copyright-container{
    height: 50px;
}
@media(max-width:768px) {
    footer .footer-container {
        display: block;
        height: 100%;
    }

    .footer-company-info p {
        width: 100%;
        padding: 6px;
    }

    .footer-links {
        margin-top: 30px;
    }

    .footer-links-2 {
        margin-top: 30px;
    }

    .footer-links-3 {
        margin-top: 40px;
    }

    .ul-footer-links {
        margin: none;
    }

    .ul-footer-links li a {
        text-align: center;
    }
    .copyright-container{
        margin-top: 20px;
    }
    .copyright-container p{
        padding-top: 5px;
    }
}