:root{
    --primary-color: #FF6501;
    --white-color: #fff;
    --light-color: #F0F2F5;
    --black-color: #000000;
}

.btn-theme-primary{
    text-decoration: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 35px;
    display: inline-block;
}

.heading-2{
    font-size: 40px;
    font-weight: 700;
}

.heading-4{
    font-size: 28px;
    font-weight: 500;
}

#why-us{
    background: var(--light-color);
}

#why-us .card{
    text-align: center;
    height: 260px;

}

#why-us .card svg{
    height: 100px;
}

.img-box{
    background: var(--light-color);
    border: 1px solid #000000;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.img-box h4{
    padding: 10px;
    font-size: 20px;
}

.img-box .body{
    padding: 10px;
}
.img-box h5{
    font-size: 20px;
}

#footer{
    background: #333;
    color: var(--white-color);
}

#copyright{
    background: var(--black-color);
    padding-top: 20px;
    color: var(--white-color);
}


html {
    scroll-behavior: smooth !important;
  }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: lato;
}

#navbar{
    background: var(--light-color);
}

#hero-img{
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('../images/hero-img.jpg');
    height: 80vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* animation: scaleImg 10s linear infinite; */
    overflow: hidden;
    transition: 0.3s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    flex-direction: column;
}

.popup{
    background: var(--linear-gradient);
    padding: 30px;
    width: 380px;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0 30px 0 30px;
    color: #fff;
    box-shadow: 10px 10px 40px rgba(0,0,0,0.3);
    z-index: 99;
    transition: 0.5s linear;
}

.active.popup{
    top: 50%;
}

.close{
    background: var(--white-color);
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--black-color);
}

/* #hero-img h2{    
    font-size: 10vw;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

#hero-img h4{
    font-size: 2vw;
    margin-top: 20px;
    color: transparent;
    -webkit-text-stroke: 0.5px white;
} */

#about img{
    border: 10px solid var(--primary-color);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);

}

#services{
    background: var(--light-color);
    padding: 80px 0;
}

.service-box{
    position: relative;
    cursor: pointer;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
}

.service-box img{
    width: 100%;
    filter: grayscale(100%);
    transition: 0.3s linear;
}

.service-box:hover img{
    filter: grayscale(0);
}

.service-box h4{
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 5px 30px;
}

#facts{
    padding: 80px 0;
}

.divider{
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    height: 5px;
    width: 100px;
    display: block;
    position: relative;
}


#sectors{
    background: var(--light-color);
    padding: 80px 0;
}

.img-box{
    /* width: 280px;
    height: 280px; */
    position: relative;
    cursor: pointer;
}

.img-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.img-box .hidden{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(0);
    transition: 0.4s linear all;
}

.img-box:hover .hidden{
    transform: scale(1);
}


.img-box .img-box-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: 400;
    color: var(--light-color);
    transition: 0.4s linear all;
    text-align: center;
}

.img-box:hover .img-box-heading{
    transform: scale(0);
}

.img-box h6{
    font-size: 26px;
    font-weight: 400;
    color: var(--light-color);
}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.btn-outline-warning, .btn-outline-light, .btn-outline-primary{
    padding: 10px 30px !important;
    border-radius: 0 !important;
}


.employee-card{
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-card .wrapper{
    background: var(--primary-color);
    width: 400px;
    height: 100%;
    margin: 40px 20px;
    box-shadow: 0 10px 10px 10px rgba(0,0,0,0.2);
    border-radius: 10px;overflow: hidden;
}

.employee-card .employee-img{
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 100px; */
    background: var(--white-color);
    clip-path: polygon(0 0, 100% 0%, 100% 81%, 0% 100%);
    /* border-radius: ; */
}

.employee-card .employee-details{
    text-align: center;
}

.employee-card .employee-img .img-fluid{
    height: 120px;
}

.payout{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 20px;
}

.today{
    background: var(--primary-color);
    color: #fff;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.total{
    background: var(--secondary-color);
    color: #fff;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.menu{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.messages{
    transform: scale(0);
    transition: 0.2s linear;
}

.active.messages{
    transform: scale(1);
}
@media only screen and (max-width: 600px) {
    .col-sm-4, .col-sm-3{
        margin: 20px 0;
    }
    
    .menu{
        grid-template-columns: repeat(2,1fr)
    }
}