/********** Template CSS **********/
:root {
    --default-font: "Inter", sans-serif;
    --heading-font: "Lato", sans-serif;
    --nav-font: "Lato", sans-serif;
    --primary: #348E38;
    --secondary: #525368;
    --light: #EAEDEA;
    --dark: #2D4F2B;
    --yellow: #FFB823;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.img-item {
    border-radius: 15px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--dark);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.button-primary {
    border: 2px solid var(--yellow);
    padding: 10px 30px;
    border-radius: 50px;
    margin: 5px;
    background-color: rgba(255, 255, 255, 0);
}

section {
    padding: 100px 0;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    background: linear-gradient(90.99deg, #2D4F2B 31.07%, #8AA624 116.21%);
}


.navbar .navbar-brand,
.navbar a.btn {
    height: 80px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    color: var(--light);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    padding: 5px 15px;
    border-radius: 20px;
    border: 3px solid transparent;
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
    background-color: #FFB823;
    border-radius: 20px;
    border: 3px solid #E6A620
}



.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0 10px 10px;
        margin-bottom: 10px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    position: absolute;
    right: 0px;
    bottom: 70px;
    left: auto;
    text-align: right;
    background: rgba(15, 66, 41, .6);
    border-radius: 15px 0 0 15px;
    padding: 15px 20px;
    width: 50%;
    max-width: 90%;
    margin: 0;
}

@media (max-width: 992px) {
    .carousel-caption {
        bottom: 120px;
        width: 70%;
        margin: 0;
    }
}


.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

#header-carousel .carousel-item img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(45, 79, 43, 0.6)), url(../img/slider-2.jpg) center center no-repeat;


    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** About ***/
.visi-item {
    background: linear-gradient(180deg, #2D4F2B 0%, #1F371E 100%);
    border: 2px solid rgba(255, 184, 35, 1);
    border-radius: 15px;
}

.visi-item p {
    color: var(--light);
}

.visi-item h2,
.misi-item h2 {
    color: var(--yellow);
}

.misi-card {
    background: linear-gradient(180deg, #2D4F2B 0%, #1F371E 100%);
    color: #fff;
    border: 2px solid #f9a825;
    border-radius: 19px;
    padding: 30px 10px;
    margin-top: 30px;
}

.misi-number {
    background-color: #f9a825;
    color: #000;
    font-weight: 800;
    padding: 5px 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-size: 20px;
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: linear-gradient(105.32deg, rgba(45, 79, 43, 0.9) 34%, rgba(138, 166, 36, 0.9) 135.22%);
}

.sustainable h1,
.sustainable a {
    color: #F3F3F3;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

.contact-title {
    margin-bottom: 0px;
}