/* footer-css-start */
footer{
    /* padding:40px 0 0; */
    background: #0b1016;
    /* border-top: 1px solid #222f40; */
}
.footer_grid_wrapper{
    padding: 40px 0;
}
.upper_footer{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.menu_wrapper_footer,.social_icon_wrapper_footer{
    display: flex;
    column-gap: 40px;
}
.social_icon_wrapper_footer{
    column-gap:20px;
}
.footer_wrapper ul{
    list-style:none;
}
.footer_wrapper ul li a{
    text-decoration:none;
    font-size: 14px;
    color: #aeaeae;
    text-transform: uppercase;
}
.footer_details{
    display: flex;
    margin-top: 50px;
    column-gap: 40px;
    margin-right: auto;
}
.company_details p{
    text-align: left;
}
.company_details{
    width: 30%;
}
.footer_nav_links h4{
    font-weight:600 !important;
    text-transform: uppercase;
}
.footer_nav_links h4, .footer_nav_links ul li, .footer_nav_links ul li a, .sub_footer_wrap a{
    font-size: 15px;
    line-height: 28px;
    color: #aeaeae;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.sub_footer_wrap p{
    font-size: 17px;
    line-height: 29px;
    color: #aeaeae;
}
.footer_nav_links ul li a,  .sub_footer_wrap a{
    text-decoration:none;
}
.footer_nav_links ul{
    list-style: none;
}
/* footer-css-end */
.sub_footer_sec{
    background: #151d28;
    padding: 20px 0;
}
.sub_footer_wrap p{
    text-align: center;
}
.company_details p {
    font-size: 15px;
}
section.teamwork {
    background: #151e2a36;
}

section.teamwork h6 {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}



section.teamwork ul li {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    border-right: 1px solid #3b4450;
    padding-right: 15px;
    font-size: 13px;
}

section.teamwork ul li strong {
    margin-right: 10px;
}
@media screen and (max-width: 767px){
    .footer_grid_wrapper{
        display: grid;
        gap: 40px;
    }
    .footer_wrapper{
        order: 2;
    }
    .footer_details{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 0;
    }
    .company_details{
        width: 100%;
        grid-column: span 2;
    }
    .sub_footer_wrap p{
        font-size: 14px;
    }
    .upper_footer, .footer_wrapper ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}