
.footer .container .row1{
    display: flex;
    justify-content: space-between;
}

.footer .container .row1 .footer-info{
    margin-bottom: 15px;
    background: #010246;
    color: #fff;
    border-top: 4px solid #80d244;
    text-align: center;
    padding: 30px 20px;
}

.footer .container .row1 .footer-info .col1{
    min-width: 250px;
    color: hsl(0, 0%, 100%);
    padding: 0 2rem;
    text-transform: capitalize;
}

.footer .container .row1 .footer-info .col1 h3::after{
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 46px;
    transition: 0.3s ease;
    text-align: center;
}

.footer .container .row1 .col1{
    min-width: 250px;
    color: hsl(0, 0%, 100%);
    padding: 1rem 2rem;
    text-transform: capitalize;
}

.footer .container .row1 .col1 img{
    width: 100%;
    margin-bottom: 25px;
}

.footer .container .row1 .col1 h3{
    color: hsl(0, 0%, 100%);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

.footer .container .row1 .col1 p{
    line-height: 1.5;
}

.footer .container .row1 .col1 h3::after{
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

.footer .container .row1 .col1 h3:hover::after{
    width: 100px;
}

.footer .container .row1 .col1 .social a i{
    color: hsl(0, 0%, 100%);
    margin-top: 2rem;
    margin-right: 5px;
    border-radius: 15%;
    transition: 0.5s ease;
    padding: 5px;
}

.footer .container .row1 .col1 .social a i:hover{
    background-color: hsl(229, 38%, 61%);
    border-radius: 50%;
    transform: scale(1.5);
}

.footer .container .row1 .col1 .links a{
    display: block;
    text-decoration: none;
    color: #f2f2f2;
    margin-bottom: 10px;
    position: relative;
    transition: 0.3s ease;
}

.footer .container .row1 .col1 .links a::after{
    content: '';
    height: 3px;
    width: 0px;
    background-color: hsl(229, 38%, 61%);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

.footer .container .row1 .col1 .links a:hover::after{
    width: 35px;
}

.footer .container .row1 .col1 .links a:before{
    content: '';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: hsl(229, 38%, 61%);
    transition: 0.5s ease;
    opacity: 0;
}

.footer .container .row1 .col1 .links a:hover::before{
    opacity: 1;
}

.footer .container .row1 .col1 .links a:hover{
    transform: translateX(10px);
    color: hsl(229, 38%, 61%);
}

.footer .container .row1 .col1 .contact-details{
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 991px){
    .footer .container .row1{
        flex-direction: column;
    }

    .footer .container .col1{
        width: 100%;
        text-align: left;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px){
    .footer .container .row1{
        flex-direction: column;
    }

    .footer .container .col1{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}


/*=============== FEATURES HERO SECTION (Job.html) ===============*/

.features .fe-box{
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 2rem;
    border: 4px solid hsl(230, 50%, 19%);
    border-radius: 20px;
}

.features .fe-box img{
    width: 50px;
    margin-top: 3rem;
}

.features .fe-box i{
    font-size: 1.5rem;
    margin-top: 3rem;
}

.features .fe-box div{
    width: 200px;
}

.features .fe-box h3{
    font-size: 1.1rem;
}




h3{
    font-size: 1.2rem;
    padding-bottom: 1rem;
    font-weight: 500;
}

@media (max-width: 990px){
    .features .fe-box{
        margin: 2rem 2rem;
    }
}

@media (max-width: 699px){
    .features .fe-box{
        margin: 2rem 2rem;
    }

    .features .fe-box div{
        width: 40%;
    }
}
