/*
* ----------------------------------------------------------------------------------------
* 01.BASE INDEX.
* ----------------------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

body {
    font-family: "Source Sans 3", serif;
    font-size: 15px;
    font-weight: 400;
    height: auto;
    color: #282b2d;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background: var(--two);
}

a {
    text-decoration: none;
}

a.one-style {
    padding: 10px 30px;
    background: #3d7554;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.title-section span {
    position: relative;
    color: #3d7554;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-section span:after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #3d7554;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}


.title-section span.centered {
    position: relative;
    color: #3d7554;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-section span.centered:after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #3d7554;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.title-section span.centered:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #3d7554;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}


.title-section span.centered.style-w:after {
  
    background-color: #fff;
    
}

.title-section span.centered.style-w:before {
    
    background-color: #fff;
    
}
.title-section h3 {
    font-size: 70px;
}

.title-section h5 {
    font-size: 40px;
    font-weight: 600;
}

.title-section p {
    font-size: 17px;
    line-height: 1.7;
}

.footer-title span {
    position: relative;
    color: #d0f62c;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-title span:after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #d0f62c;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.footer-title p {
    font-size: 17px;
    line-height: 1.7;
}

.col-w {
    color: #fff !important;
}

.col-g {
    color: #575a7b;
}

.col-d {
    color: #282b2d;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.fixi {
    background: #fff;
}

/* media query */
@media (max-width: 999px) {
    .title-section h3 {
        font-size: 50px;
    }

}

/*
* ----------------------------------------------------------------------------------------
* 02.HEADER MAIN.
* ----------------------------------------------------------------------------------------
*/

#header-main {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
}

.navbar-brand {
    display: inline-block;
    width: 150px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav li {
    position: relative;
    font-size: 17px;
    margin: 0 15px 0 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar-nav li:nth-last-child(1) {
    margin: 0 0 0 0;
}

.navbar-nav li a.nav-link {
    text-decoration: none;
    color: #282b2d !important;
}

.navbar-nav li a.nav-link i {
    font-size: 13px;
}

.navbar-nav li a.nav-link.active {
    color: var(--five) !important;
}

.navbar-nav li a.nav-link:hover {
    color: #282b2d !important;
}

.navbar-nav .sub-menu li a {
    color: var(--tre);
    font-weight: 500;
    line-height: 38px;
    padding: 0 20px;
    width: 100%;
    text-decoration: none;
}

.navbar-nav .sub-menu li a.active {
    color: var(--five);
}

.navbar-nav .sub-menu li a:hover {
    color: var(--five);
}

.offcanvas-end {
    width: 80% !important;
}

/* media query */
@media screen and (min-width: 999px) {
    .navbar-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 230px;
        font-size: 16px;
        background: #fff;
        padding: 18px 0;
        transition: all 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
        margin: 20px 0 0;
        box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
    }

    .navbar-nav .sub-menu li {
        padding: 5px 0;
    }

    .navbar-nav .nav-item:hover>.sub-menu {
        margin-top: 0;
        visibility: visible;
        opacity: 1;
    }

    .offcanvas-backdrop.show {
        opacity: 0;
    }
}

@media (max-width: 999px) {
    .offcanvas-end.show {
        background: #fff;
    }

    .sub-menu {
        display: none;
    }

    .sub-menu.showdrop {
        display: block;
        position: relative;
        visibility: visible;
        opacity: 1;
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HERO SECTION.
* ----------------------------------------------------------------------------------------
*/

#hero-section .owl-carousel .owl-item {
    height: auto;
    padding: 100px 0 50px;

}

#hero-section .owl-nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
}

#hero-section .owl-nav .owl-prev {
    font-size: 50px;
    position: absolute;
    top: 1px;
    left: 30px;
    background: #fff;
    width: 50px;
    transition: all .3s;
}

#hero-section .owl-nav .owl-next {
    font-size: 50px;
    position: absolute;
    top: 1px;
    right: 30px;
    background: #fff;
    width: 50px;
}

#hero-section .owl-prev,
.owl-next {
    opacity: 0 !important;
}

#hero-section .owl-carousel:hover .owl-prev {
    opacity: 1 !important;
}

#hero-section .owl-carousel:hover .owl-next {
    opacity: 1 !important;
}


.slide-hero {
    height: 100%;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.slide-hero:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: -1;
}

/* mediua query */

@media (max-width: 999px) {
    #hero-section .owl-carousel:hover .owl-prev {
        opacity: 0 !important;
    }

    #hero-section .owl-carousel:hover .owl-next {
        opacity: 0 !important;
    }

}


/*
* ----------------------------------------------------------------------------------------
* 04.GAP OVERLAP SECTION.
* ----------------------------------------------------------------------------------------
*/

.wrap-gapoverlap {
    background: #fff;
    position: relative;
    margin-top: -120px;
    z-index: 1;
}

.icon-gap {
    font-size: 60px;
}

.card-info {
    padding: 50px 30px;
}


.card-info .icon-gap {
    color: #3d7554;

}

.card-info h4 {
    font-size: 18px;
    font-weight: 600;
}

.card-info p {
    color: #575a7b;
}

.col-border {
    position: relative;


}

.col-border:first-child:after {
    border-right: none;
}

.col-border:after {
    border-right: 1px solid #f6f7f3;
    content: "";
    display: block;
    height: 170px;

    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 1px;
}

/* mediua query */

@media (max-width: 999px) {
    .col-border:after {
        border-right: none;
    }

    .col-border .card-info {
        border-top: 1px solid #f6f7f3;

    }

}


/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT SECTION.
* ----------------------------------------------------------------------------------------
*/
#about-section {
    padding: 100px 0;
    background: #f6f7f3;
}

.about-imgwrap img {
    width: 100%;
}

.about-item .icon span {
    font-size: 50px;
}

.about-item a {
    color: #3d7554;
}

.inner-about {
    padding: 20px 0;
    border-top: 1px solid #e0e0dd;
    border-bottom: 1px solid #e0e0dd;

}


/*
* ----------------------------------------------------------------------------------------
* 04.TEAM SECTION.
* ----------------------------------------------------------------------------------------
*/
#team-section {
    padding: 0 0 0;
    background: #f6f7f3;
}

.team-left-box {
    display: table;
    height: 100%;
}

.team-left {
    padding: 50px 60px;
    background: #d0f62c;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.team-left h2 {
    color: #3d7554;
    font-size: 40px;
    font-weight: 600;
}

.team-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #3d7554;
}
/*
* ----------------------------------------------------------------------------------------
* 00.FUNFACT SECTION.
* ----------------------------------------------------------------------------------------
*/
#funfact-section {
    padding: 100px 0;
    background: #f6f7f3;
}
.counter-item {
    display: block;
    padding: 20px 30px;
    text-align: center;
}
.counter-item .wrap-odo p {
    font-size: 20px;
    color: #3d7554;
}
.odometer {
    font-size: 60px;
    font-weight: 600;

}
.unit {
    font-size: 30px;
    font-weight: 500;
}
/*
* ----------------------------------------------------------------------------------------
* 00.BLOG SECTION.
* ----------------------------------------------------------------------------------------
*/
#blog-section {
    padding: 100px 0;
}
.list-inline li {
    font-size: 15px;
    color: #282b2d;
}
.single-blog-card {
    position: relative;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.single-blog-card img {
    width: 100%;
}
.single-blog-card > .category {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: #3d7554;
    color: #fff;
}
.card-body {
    padding: 30px 30px 20px;
}
.card-body .card-text {
    color: #282b2d;
}
.card-body .card-title {
    font-size: 20px;
    color: #3d7554;
}
.card-body .card-title a{ 
    color: #3d7554;
}
 /*
* ----------------------------------------------------------------------------------------
* 00.TESTIMONIAL  SECTION.
* ----------------------------------------------------------------------------------------
*/

#testimonial-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

#testimonial-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #282b2d;
    opacity: .8;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/*
* ----------------------------------------------------------------------------------------
* 00.CLIENT SECTION.
* ----------------------------------------------------------------------------------------
*/
#client-section {
    padding: 50px 0;
    background: #fff;
}
.slide-itemclient {
    padding: 20px 50px;
    width: 250px;
}

/*
* ----------------------------------------------------------------------------------------
* 00.FOOTER SECTION.
* ----------------------------------------------------------------------------------------
*/
 
.post-title a {
    color: #fff;
}

.post-date {
    color: #e0e0dd;
    font-size: 15px;
    opacity: .5;
}

.logo-footer img {
    width: 200px;
}

.footer-left {
    padding: 100px 0 50px;
}

.wrap-footright {
    background: #3d7554;
}

.footer-right {
    padding: 100px 0 50px;
}

.footer-link {
    padding: 0;
}

.footer-link li {
    list-style: none;
    position: relative;
    margin-bottom: 8px;
}

.footer-link li a {
    color: #fff;
    font-size: 17px;
}

.footer-link li .icon-foot {
    color: #fff;
    font-size: 16px;
}

.footer-link li .text-footer {
    font-size: 17px;
    width: 80%;
}

.subform {
    position: relative;
}

.submit-inner {
    position: absolute;
    right: 6px;
    top: 6px;
    width: auto;
}

#email-sub {
    height: 50px;
    padding: 10px 50px 10px 20px;
}

.btn-sub i {
    font-size: 20px;
    line-height: 1;
    color: #3d7554;
}
.sosmed-footer li {
    margin: 0 20px;
}
.sosmed-footer li a {
    color: #3d7554;
    font-size: 18px;
}