body{
    font-family: "Lato", sans-serif;
    font-size: 18px;
}

.font-ibm-plex{
    font-family: "IBM Plex Sans JP", sans-serif;
}

/*----------------
    BANNER
----------------*/
.banner{
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
}
.chooseBanner{
    background: url(../images/chooseBanner.jpg) no-repeat center center;
    background-size: cover;
}
.aboutBanner{
    background: url(../images/about-banner.jpg) no-repeat center center;
    background-size: cover;
}
.servicesBanner{
    background: url(../images/services-banner.jpg) no-repeat center center;
    background-size: cover;
}
.careerBanner{
    background: url(../images/career-banner.jpg) no-repeat center center;
    background-size: cover;
}
.contactBanner{
    background: url(../images/contact-banner.jpg) no-repeat center center;
    background-size: cover;
}

/*----------------
    HEADER
----------------*/
header nav ul li a{
    position: relative;
}
header nav ul li a:after{
    content: "";
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
header nav ul li a:hover:after, header nav ul li a.active:after{
    background: #75C453;
}

/*----------------
    CUSTOM BUTTON
----------------*/
.customBtn{
    background: #479D7C;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    color: #E1FCF2;
    transition: all;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
    font-weight: bold;
}
.customBtn:after{
    content: "";
    background: #000;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    color: #E1FCF2;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s ease-out;
}
.customBtn:hover:after{
    top: 0;
    transition: all 0.3s ease-out;
}
.customBtn span{
    z-index: 1;
    position: relative;
}
.customBtn:hover span{
    color: #fff;
}
.sendBtn, .sendBtn:after{
    padding: 10px 40px;
}

/*---------------
    CHOOSE US
---------------*/
.services .imageCaption{
    font-size: 14px;
    color: #fff;
    line-height: 20px;
    padding: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition: all 0.5s ease-out;
    background: rgba(48, 26, 54, 0.6);
    transform: translateY(78%);
}
.expertise .imageCaption{
    color: #fff;
    padding: 18px;
    position: absolute;
    background-image: linear-gradient(#789D47, #479D7C);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-out;
}

.services:hover .imageCaption{
    transform: translateY(0);
    transition: all 0.5s ease-in;
	background: rgba(48, 26, 54, 0.8);
    
}
.expertise:hover .imageCaption{
    transform: translateY(0%);
    transition: all 0.5s ease-in;
	
}
.counterBorder{
    position: relative;
}
.counterBorder:after{
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    background: #7EC8AC;
    right: -50px;
}

/*---------------
    ABOUT US
---------------*/
.aboutCard{
  background: linear-gradient( #789D47, #479D7C);
  overflow: hidden;
  position: relative;
  clip-path: polygon(
      0 0,
      calc(100% - 60px) 0,
      100% 60px,
      100% 100%,
      0 100%
  );
}

/*-----------------
    MEDIA QUERY
-----------------*/
@media only screen and (min-width: 320px) and (max-width: 767px){
    .services .imageCaption{
        transform: translate(0);
        line-height: 1.5;
        font-size: 18px;
        font-weight: normal;
    }
    .counterBorder:after{
        width: 100%;
        right: 0;
        left: 0;
        height: 1px;
        bottom: -20px;
        top: auto;
    }
    .mobileMenu.active{
        display: block;
    }
    .mobileMenu{
        display: none;
        flex-direction: row;
        position: absolute;
        left: 0;
        right: 0;
        top: 77px;
    }
    .mobileMenu ul{
        flex-direction: column;
        width: 100%;
        padding: 20px;
        background: rgba(0,0,0,0.9);
    }
    header.active{
        background: rgba(0,0,0,0.9);
    }
    .customBtn{
        padding: 15px 25px;
        font-size: 15px;
    }
    .customBtn:after{
        padding: 15px 25px;
        font-size: 15px;
    } 
    .expertise .imageCaption{
        transform: translate(0);
        background-image: linear-gradient(rgba(120, 157, 71, 1), rgba(71, 157, 124, 1));
    }
}