/* Companies Logo */
.comp_logos_container {
    width: 100%;
    height: 15vh;
    max-height: 250px;
    min-height: 150px;
    background-color: rgb(244, 249, 255);
    padding: 30px 10px;
    overflow: hidden;
}

.logos__marquee {
    width: 100%;
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logos__marquee li img {
    max-height: 80px;
    margin: 0 20px;
}

/* --------------------------------------- */

/* Footer Section  */
.footer {
    border-top: 2px solid white;
    background: url(/assets_web/images/slide3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-size: cover;
    /* height: 600px; */
}

.footer__x {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px;
}

.footer_div {
    /* height: 100%; */
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.footer_div h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer_div a {
    color: #fff;
    text-decoration: none;
}

.footer_div .about {
    margin-top: 20px;
    max-width: 250px;
}

.footer_div .about img {
    height: 100px;
    /* background-color: #fff; */
    border-radius: 50%;
    position: relative;
    right: 10px;
}

.about p {
    color: #fff;
    font-size: 14px;
}

.imp_links_div {
    display: grid;
}

.imp_links_div a {
    height: 40px;
}

.imp_links_div a:hover {
    text-decoration: underline;
}

.imp_links_div a i {
    margin-right: 10px;
}

.contact_info_footer i {
    margin-right: 10px;
}

.contact_info_footer div {
    height: 35px;
}

.social_links {
    justify-content: space-around;
    margin-top: 20px;
    height: fit-content !important;
}

.social_links a i {
    font-size: 35px;
}


.copyright_div {
    width: 100%;
    height: auto;
    background-color: rgb(39, 51, 68);
    justify-content: space-between !important;
    padding: 15px 30px;
}

.copyright_div p {
    text-align: center;
    color: #fff;
}

.copyright_div a {
    color: #fff;
    /* text-decoration: none; */
}

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

    .footer_div {
        display: grid;
    }

    .footer_div > div {
        margin-top: 30px;
    }
}

@media screen and (max-width:650px) {
    .copyright_div {
        flex-direction: column;
        height: auto;
    }

    .copyright_div p {
        margin-top: 10px;
    }
}

@media screen and (max-width:500px) {
    .logos_div img {
        height: 60px;
        margin: 20px auto;
    }

    .logos__marquee {
        animation: marquee 10s linear infinite;
    }

    .logos__marquee li img {
        max-height: 50px;
        margin: 0 20px;
    }

    .copyright_div p {
        font-size: 14px;
    }
}