@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700;800;900&display=swap');


fonts {
    font-family: 'Roboto', sans-serif;
    font-family: 'Merriweather', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Pacifico', cursive;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #056832;
    --s_backgound-color: #f1f5fa;
    --secondary-color: #ffffff;
    --text-color: #252525;
    --highlight-color: #C9501B;
}


/* nav bar  */


#header {
    position: sticky !important;
    width: 100%;
    top: 0;
    z-index: 999 !important;
    text-transform: uppercase;
}

.nav_top {
    top: 0 !important;
    transition: all 1s;
}

.navbar {
    margin: 0 !important;
    border: none;
    border-radius: 0;
    width: 100%;
    background: #ffffff;
    margin: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .15);
}

.navbar-brand {
    margin: 0 !important;
    padding: 0 !important;
    color: #000000 !important;
    padding: 2px 0 !important;
}

#logo {
    width: 100px;
}

.navbar .navbar-nav>li>a {
    padding: 10px 15px !important;
    color: var(--text-color) !important;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    margin: 24px 5px;
    transition: all 0.5s;
    /* font-family: 'Poppins', sans-serif; */
}

.navbar .navbar-nav>li>a:hover {
    transition: all 0.5s;
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    /* border-bottom: 2px solid var(--primary-color); */
}

.nav_background {
    background: #ffffff !important;
    margin: 0 !important;
    transition: all 0.5s;
}

.nav_color {
    color: #000000 !important;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    /* border-bottom: 2px solid var(--primary_color); */
}

.dropdown li a {
    font-size: 14px !important;
    padding: 0px 30px;
    line-height: 45px;
    color: var(--text-color);
    font-weight: 550;
    font-family: 'Montserrat', sans-serif;
}

.dropdown li a:hover {
    color: var(--secondary-color) !important;
    background: var(--highlight-color) !important;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active {
    color: var(--secondary-color);
    background: var(--highlight-color);
}

.dropdown-menu {
    padding: 0 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-default .navbar-nav>.open>a {
    background: var(--highlight-color) !important;
    color: var(--secondary-color);
}

/* slider  */

.carousel-control.left {
    background-image: none !important;
}

.carousel-control.right {
    background-image: none !important;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    color: #ffffff;
    opacity: 1;
    background: rgba(5, 104, 50, 0.9);
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding-top: 15px;
    border-radius: 50%;
    /* box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, .4); */
    margin: 0 30px;
}

.carousel-control {
    opacity: 1;
    width: 0%;
}

#main_slider {
    width: 100%;
    height: 100%;
    position: absolute;
    /* background: rgba(0, 0, 0, 0.2); */
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    text-align: center;
}

#box {
    position: relative;
    transition: all 1s;
    animation-name: box_animation;
    animation-iteration-count: 1;
    animation-duration: 1.5s;
    transition: all 1s;
    transform: scale(1);
    text-align: center;
    margin: auto;
}

@-webkit-keyframes box_animation {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    30% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.slider_h {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    line-height: 75px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.color_b {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #00fee0;
}

.slider_btn {
    background: var(--primary-color);
    font-family: 'poppins', sans-serif;
    border: 2px solid #ffffff;
    padding: 8px 30px;
    font-size: 15px;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-top: 20px !important;
    transition: all 0.3s ease-in;
}

.slider_btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease-in;
}

/* slider  */

#about {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: #ffffff;
}

.abt_h {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 700;
    text-align: center;
    padding: 15px !important;
    letter-spacing: 1px;
}

#abt_img {
    margin-top: 20px;
    box-shadow: 0 0px 15px 0 rgb(12 21 41 / 10%);
}

.c_g {
    color: var(--primary-color);
}

.abt_sh {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 20px !important;
}

.abt_p {
    font-family: 'poppins', sans-serif;
    line-height: 28px;
    letter-spacing: 0.3px;
    padding-top: 12px !important;
    font-size: 14px;
}

#products {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: var(--s_backgound-color);
}

#products_inner {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background: var(--s_backgound-color);
}

.product_box {
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 5px;
    margin-top: 40px;
    /* box-shadow: 0 0px 15px 0 rgb(12 21 41 / 10%); */
    /* background: #ffffff; */
}

.table {
    margin-top: 20px;
    margin-bottom: 15px;
}

.table-bordered>tbody>tr>td {
    border-color: var(--primary-color);
}
.table-bordered>tbody>tr>th {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.pro_p {
    font-family: 'poppins', sans-serif;
    line-height: 28px;
    letter-spacing: 0.3px;
    /* padding-top: px !important; */
    font-size: 14px;
}



#testimonials {
    width: 100%;
    height: auto;
    padding: 65px 0;
    background: url(../../images/back.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testi_box {
    width: 100%;
    height: auto;
    padding: 25px;
    border: 1px solid var(--primary-color);
    text-align: center;
}

.testi_p {
    font-family: 'Montserrat';
    color: #333333;
    letter-spacing: 0.3px;
    line-height: 28px;
}

#p_img {
    width: 85px;
    border-radius: 50%;
}

.gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
}

.gtco-testimonials .owl-nav {
    display: none;
}

.gtco-testimonials .owl-dots {
    text-align: center;
}

.gtco-testimonials .owl-dots span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: none;
    border: 2px solid var(--secondary-color);
    margin: 0 5px;
}

.gtco-testimonials .owl-dots span.active {
    background: var(--secondary-color) !important;
}

.gtco-testimonials .owl-dots .active span {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
    height: 12px;
    width: 12px;
    margin-bottom: -1px;
}

.gtco-testimonials .card {
    /* background: #fff; */
    /* box-shadow: 0 8px 30px -7px #c9dff0; */
    background: rgba(255, 255, 255, 0.85);
    margin: 0 20px;
    padding: 20px;
    border-radius: 20px;
    border: 0;
}

.gtco-testimonials .card .card-img-top {
    border-radius: 50%;
    margin: 15px auto 0;
    width: 85px;
    border: 5px solid var(--secondary-color);
}

.gtco-testimonials .card h5 {
    color: var(--primary-color);
    font-size: 21px;
    letter-spacing: 0.7px;
    font-family: 'Montserrat';
    padding-top: 15px !important;
    padding-bottom: 10px !important;
    font-weight: 700;
}

.gtco-testimonials .card p {
    font-family: 'Poppins';
    color: #333333;
    letter-spacing: 0.3px;
    line-height: 28px;
    font-weight: 500;
}

.gtco-testimonials .active {
    opacity: 0.7;
    transition: all 0.3s;
}

.gtco-testimonials .center {
    opacity: 1;
    /* background: rgba(255, 255, 255, 0.85); */
    transition: all 0.3s;
    border-radius: 10px;
}

.gtco-testimonials .center h5 {
    font-size: 24px;
    color: var(--primary-color);
}

.gtco-testimonials .center h5 span {
    color: var(--secondary-color);
}

.gtco-testimonials .center p {
    color: var(--text-color);
}

.gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
}

@media (max-width: 767px) {
    .gtco-testimonials {
        margin-top: 20px;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    outline: 0;
}

.owl-carousel button.owl-dot {
    outline: 0;
    opacity: 1 !important;
}


#contact {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 30px;
}

.contact_top {
    width: 100%;
    height: auto;
    padding: 50px;
    border: 1.5px solid var(--primary-color);
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact_h {
    padding-bottom: 15px !important;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
}

.contact_h1 {
    padding-bottom: 15px !important;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    padding-top:10px;
}

.contact_p {
    font-family: 'poppins', sans-serif;
    line-height: 29px;
    letter-spacing: 0.1px;
    font-weight: 400;
    color: #2b2b2b;
}

.line {
    width: 2px;
    height: 100px;
    background: var(--primary-color);
    margin: auto;
    margin-top: 15px;
    transform: skew(-20deg);
}

.contact_input {
    padding: 11px;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    margin-bottom: 25px;
    font-family: 'poppins', sans-serif;
    letter-spacing: 0.5px;
}

.form-control {
    height: auto;
}

::placeholder {
    color: #383838 !important;
}

.contact_btn {
    width: 25%;
    padding: 10px;
    color: #ffffff;
    background: var(--primary-color);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    letter-spacing: 0.5px;
    display: block;
    margin: auto;
    font-weight: 500;
    transition: all 0.3s ease-in;
}

.contact_btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease-in;
}

.c_icon {
    color: var(--text-color);
    width: 25px;
    height: 25px;
}

#copyights {
    width: 100%;
    height: auto;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
}

#ogf {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: #e0f0e5;
    background: url(../../images/ogf_back.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

.ogf_box {
    margin-top: 20px;
    margin-bottom: 10px;
}

#ogf_img {
    border-radius: 50%;
    box-shadow: 0 0px 15px 0 rgb(5 104 50 / 45%);
    width: 120px;
    margin: auto;
}

.ogf_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 650;
    font-size: 20px;
    padding-top: 20px !important;
    line-height: 32px;
    letter-spacing: 0.5px;
    position: absolute;
    top: 0;
    left: 110px;
    top: 10px;
}

#og_img {
    width: 75px;
    border-radius: 50%;
    box-shadow: 0 0px 15px 0 rgb(5 104 50 / 30%);
}

#pro_img{
    box-shadow: 0 0px 15px 0 rgb(12 21 41 / 10%);
}
.pro_box{
    margin-top: 30px;
}

.product-li{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    padding-top: 15px;
    letter-spacing: 0.3px;
}
.product-li li{
    letter-spacing: 0.3px;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
}