*{
    list-style: none;
    padding: 0;
    margin: 0;
}

:root{
    --fm-black: 'Montserrat Black';
    --fm-bold: 'Montserrat Bold';
    --fm-medium: 'Montserrat Medium';
    --fm-regular: 'Montserrat Regular';
    --fm-light: 'Montserrat Light';
    --fm-thin: 'Montserrat Thin';

    --green: #007d2f;
    --grey-1: #787878;
    --grey-2: #bcbcbc; /* footer */
}

body{
    font-family: var(--fm-medium);
}

/* ==================== header ==================== */

header .navbar{
    width: 100%;
    padding: 17px 0 17px;
}

header .navbar .navbar-brand{
    padding: 0;
    margin: 0;
}

header .navbar a{
    font-size: 12px;
    color: black;
    text-transform: uppercase;
}

header .navbar .nav-item.active a{
    color: var(--green) !important;
}

header .container-fluid{
    background: var(--green);
    min-height: 313px;
}

header .container-fluid .row{
    height: 100%;
}

header h1{
    font-size: 30px;
    margin-bottom: 24px;
}

header p{
    font-size: 17px;
    color: white;
}

header .about-html{
    background: #323232;
    color: white;
}

header .about-html h1{
    font-size: 62px;
    margin-bottom: 8px;
}

header .about-html p{
    font-size: 23px;
}

/* ==================== main ==================== */

/* ==================== section-work ==================== */

.sec-work img{
    width: 100%;
    height: 100%;
}

.sec-work p{
    color: white;
    font-size: 21px;
    margin: 42px auto 36px;
}

.sec-work .col-lg-3{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sec-work .col-lg-3::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: 1s;
    background: url(../images/img-hover-home.png);
    background-size: cover;
    opacity: 0;
}

.sec-work .col-lg-3::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-1000px);
    transition: .5s;
    background: rgba(0, 128, 0, 0.3);
}

.sec-work .col-lg-3 .right-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(1000px);
    transition: .5s;
    background: rgba(0, 128, 0, 0.3);
}

.sec-work .col-lg-3:hover .right-hover{
    transform: translateX(0);
}

.sec-work .col-lg-3:hover::before{
    transform: translateX(0);
}

.sec-work .col-lg-3:hover::after{
    opacity: .4;
}

/* ==================== section-contact ==================== */

.sec-contact{
    background: #f5f5f5;
    padding-bottom: 100px;
}

.sec-contact h2{
    font-size: 30px;
    margin: 24px 0 30px;
}

.sec-contact p{
    font-size: 16px;
    font-family: var(--fm-regular);
    color: var(--grey-1);
    line-height: 24px;
    margin-bottom: 38px;
}

.sec-contact form .form-group{
    margin-bottom: 30px;
}

.sec-contact form .form-row .form-group:first-child{
    padding-right: 15px;
}

.sec-contact form .form-row .form-group:last-child{
    padding-left: 15px;
}

.sec-contact input{
    height: 48px;
    border: none;
    border-radius: 0;
}

.sec-contact input,textarea::placeholder{
    font-size: 15px;
    color: var(--grey-1);
}

.sec-contact textarea{
    height: 170px;
    border: none;
    border-radius: 0;
    resize: none;
}

.sec-contact .btn{
    width: 160px;
    height: 54px;
    background: var(--green);
    border: none;
    border-radius: 0;
    color: white;
    font-size: 12px;
    margin: auto;
}

.sec-contact iframe{
    width: 100%;
    height: 470px;
    margin-top: 100px;
}

@media(max-width: 768px){ /* MD */
    .sec-contact form .form-row .form-group:first-child{
        padding-right: 5px;
    }
    .sec-contact form .form-row .form-group:last-child{
        padding-left: 5px;
    }
    .sec-contact iframe{
        height: 370px;
    }
}

/* ==================== section-about ==================== */

.sec-about .container-fluid .numbers{
    background: var(--green);
}

.sec-about .container-fluid .numbers .col-lg-3{
    margin: 75px 0;
    color: white;
    height: 88px;
}

.sec-about .container-fluid .numbers .col-lg-3 .fa{
    font-size: 36px;
}

.sec-about .container-fluid .numbers .col-lg-3 h6{
    margin: 0;
}

.sec-about .container-fluid .numbers .col-lg-3 p{
    margin: 0;
    text-transform: uppercase;
}

.sec-about .container-fluid h2{
    font-size: 30px;
}

.sec-about .container-fluid p{
    font-size: 16px;
    font-family: var(--fm-regular);
    color: var(--grey-1);
}

.sec-about .container-fluid p span{
    font-family: var(--fm-bold);
    color: black
}

.sec-about .container-fluid .row-left img{
    width: 100%;
    height: auto;
}

.sec-about .container-fluid .row-right{
    background: #f5f5f5;
    padding: 7% 8% 0 8%;
}

/* === carousel === */

.carousel-control-prev, .carousel-control-next{
    position: inherit;
    text-transform: uppercase;
    color: white;
    border: none;
    background: transparent;
    width: 160px;
    font-size: 12px;
    height: 100px;
    cursor: pointer;
}

/* ==================== footer ==================== */

footer{
    background: black;
    color: var(--grey-2);
    font-size: 15px;
    font-family: var(--fm-regular);
    padding: 90px 0;
}

footer a{
    color: var(--grey-2);
    font-size: 15px;
}

footer a:hover{
    color: gray;
    text-decoration: none;
}

footer h6{
    font-size: 18px;
    color: white;
    font-family: var(--fm-medium);
    margin-bottom: 20px;
}
