/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    background: #F2F2F2;
}

a {
    color: #76BD38;
    text-decoration: none !important;
}

a:hover {
    color: #76BD38;
    text-decoration: none;
}
p{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;

}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #76BD38;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #70e50a;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 75px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: #f2f2f2;
}

#header.header-scrolled {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #576971;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 65px;
}


/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/

.header-social-links {
    margin: 0 0 0 30px;
}

@media (max-width: 768px) {
    .header-social-links {
        margin: 0 15px 0 0;
    }
}

.header-social-links a {
    color: #7b909a;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 10px;
}

.header-social-links a:hover {
    color: #59a716;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 14px;
    color: #7b909a;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #59a716;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #003651;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #59a716;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/* Mobile Navigation  */

.mobile-nav-toggle {
    color: #364146;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 601px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    .slide {
        padding: 10px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(32, 38, 41, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #364146;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #59a716;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #59a716;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    margin-top: 70px;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    color: #364146;
}

#hero h2 {
    color: #576971;
    font-size: 24px;
}

.btn-get-started {
    font-weight: 600;
    font-size: 13px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 6px;
    transition: 0.5s;
    color: #fff;
    background: #76BD38;
}

.btn-get-started:hover {
    background: #59a716;
    color: white;
}

#hero .hero-img {
    text-align: center;
}

#hero .hero-img img {
    width: 70%;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-padding {
    padding: 50px 0;
    overflow: hidden;
}

section {
    overflow: hidden;
    width: 100%;
}

.section-bg {
    background-color: #f7f8f9;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #fff;
    font-size: 14px;
    background: url("/assets/img/footerBg.png");
    background-size: cover;
}

#footer .footer-top {
    /* background: #0e220d; */
    padding: 60px 0 30px 0;
    border-top: 2px solid #d6e4ca;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-info img {
    max-width: 130px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #59a716;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #FFFDFD;
}

#footer .footer-top .social-links a {
    font-size: 24px;
    display: inline-block;
    color: #59a716;
    line-height: 1;
    padding: 8px 0;
    text-align: center;
    transition: 0.3s;
    margin: auto;
}

#footer .footer-top .social-links a:hover {
    background: #59a716;
    color: #FFFDFD;
    text-decoration: none;
}

.round-circle {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 2px solid #59a716;
}

.social-txt {
    background: none !important;
    font-size: 16px !important;
    color: #fff !important;
}

.social-txt:hover {
    font-size: 16px !important;
    color: #59a716 !important;
}

#footer #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFDFD;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #59a716;
    font-size: 18px;
    line-height: 1;
    margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #FFFDFD;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #59a716;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
    border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #59a716;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #59a716;
}
/* Slider Gallery Styles */

.slide {
    display: none;
    height: 100%;
    width: 100%;
}

a.next:hover {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
}

.next {
    right: 20px;
}

.prev {
    left: 20px;
}

.show {
    animation: fade 0.5s ease-out;
}

@keyframes fade {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}


/* Slider Gallery Styles */


/* Styles New */

p.para {
    font-family: "Open Sans", sans-serif;
    text-align: justify;
    font-size: 14px;
}

.paragraph {
    text-align: justify;
}

.line-ht {
    line-height: 2;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
    .title-big {
        font-size: 65px;
        font-weight: 700;
        color: #59a716;
        line-height: 70px;
    }
    .title-small {
        font-size: 34px;
        font-weight: 600;
        color: #fff;
    }
    .pad40 {
        padding: 40px;
    }
    .colored-border {
        border-left: 2px solid #76BD38;
        border-right: 2px solid #76BD38;
    }
    .vLine {
        height: 50px;
        width: 2px;
        background: #44B6CE;
        margin: auto;
    }
    .pt30 {
        padding-top: 30px;
    }
    #slider-div .caption {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        padding: 8px 16px;
        border-radius: 4px;
        text-align: center;
    }
    #slider-div img {
        height: 100%;
        width: 100%;
        filter: contrast(90%);
        object-fit: cover;
    }
    a.prev,
    a.next {
        position: absolute;
        top: 50%;
        font-size: 30px;
        cursor: pointer;
        user-select: none;
        color: #ffffff;
        padding: 12px;
        transition: 0.2s;
    }
    .slider {
        height: 80vh;
        width: 100%;
        position: relative;
        margin: auto;
    }
    .footer-info {
        text-align: left;
    }
    .aboutImgR {
        padding-left: 30px !important;
        padding-bottom: 20px;
    }
    .aboutImgL {
        padding-right: 30px !important;
        padding-bottom: 20px;
    }
    .float-right {
        float: right!important
    }
    .float-left {
        float: left!important
    }
    .vertHeight100{
        height: 100vh;
    }
    .pos-top-desktop{
        position: absolute;
        top: 80px;
    }
    .pos-top-mobile{
        display: none;
    }
    .boxGreen{
        background-color: #76BD38;
        padding: 15px;
        width: 180px;
        height: 170px;
        margin-left: 10px;
    } 
    .boxWhite{
        background-color: #FFF;
        padding: 10px;
        z-index: 1;
        width: 430px;
        height: 170px;
    }
    .mainParagraph{
        padding-top: 180px;
    }
    .paddingRight{
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    #hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    #hero h2 {
        font-size: 20px;
    }
    .title-big {
        font-size: 35px;
        font-weight: 700;
        color: #59a716;
        line-height: 45px;
    }
    .title-small {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }
    .pad20 {
        padding: 20px;
    }
    .colored-border {
        border-top: 2px solid #76BD38;
        border-bottom: 2px solid #76BD38;
    }
    .footer-center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    #slider-div .caption {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #343434;
        padding: 8px 16px;
        border-radius: 4px;
        text-align: center;
        width: fit-content;
    }
    #slider-div img {
        height: auto;
        width: 100%;
        filter: contrast(90%);
        object-fit: cover;
        padding: 10px;
    }
    a.prev,
    a.next {
        display: none;
    }
    .slider {
        height: 45vh;
        width: 100%;
        position: relative;
        margin: auto;
    }
    .aboutImgR,
    .aboutImgL {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 10px;
        width: 100%;
    }
    .pos-top-desktop{
        display: none;
    }
    .pos-top-mobile{    
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        top: 47% !important;
        left: 10px !important;
        right: 10px !important;
        z-index: 1;
    }
    .boxGreen{
        background-color: #76BD38;
        padding: 10px;
    } 
    .boxWhite{
        background-color: #FFF;
        padding: 10px;
        padding-right: 20px;
    }
    .ptoponly{
        padding-top: 30px;
    }
}

.section-title {
    font-weight: 600 !important;
    font-size: 36px;
    color: #343434;
    text-align: center;
    padding: 0;
}
.section-title-md {
    font-weight: 600 !important;
    font-size: 24px;
    color: #343434;
    text-align: center;
    padding: 0;
}

.h-line {
    width: 40px;
    height: 3px;
    background: #76BD38;
    margin: 0 10px;
}

.section-bg {
    background: linear-gradient(180deg, rgba(121, 190, 63, 0) 3.59%, rgba(111, 174, 58, 0.24) 42.01%, rgba(121, 190, 63, 0) 100%);
}

.benefit-item {
    background: #fff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 20px;
    height: 100%;
}

.mb30 {
    margin-bottom: 30px;
}

.p10 {
    margin: 20px;
}

.div-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-name {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.benefit-name {
    font-size: 14px;
}

#readMore1,
#readMore2,
#readMore3,
#readMore4 {
    display: none;
}


/* Read More Animated show */

.read-more-state {
    display: none;
}

.read-more-target {
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .12s ease;
}

.read-more-state:checked~.read-more-wrap .read-more-target {
    opacity: 1;
    font-size: 14px;
    max-height: 999em;
}

.read-more-state~.read-more-trigger:before {
    content: 'Read more';
}

.read-more-state:checked~.read-more-trigger:before {
    content: 'Read less';
}

/* Read More Animated show end*/

/* auto Slide Start*/
.mySlides1, .mySlides2, .mySlides3 {
    display: none;
}

  .dot1,  .dot2,  .dot3 {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: transparent;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  /* .dot1.active {
    background-color: #76BD38;
  }
  .dot2.active {
    background-color: #76BD38;
  }
  .dot3.active {
    background-color: #76BD38;
  } */
  .text {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    width: 100%;
    text-align: center;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 4s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }
/* auto Slide End*/

/* mission vision values Start*/

  .services .icon-box {
    padding: 15px;
    position: relative;
    overflow: hidden;
    margin: 0 0 20px 0;
    background: #F2F2F2;
    box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 2px solid #F2F2F2;
  }
  .services .icon {
    margin: 0 auto 15px auto;
    padding-top: 8px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 75px;
    height: 75px;
  }
  .services .icon i {
    font-size: 60px;
    line-height: 1;
  }
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .services .title a {
    color: #111;
  }
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .services .icon-box-pink .icon {
    background: #fceef3;
  }
  .services .icon-box-pink .icon i {
    color: #ff689b;
  }
  .services .icon-box-pink:hover {
    border-color: #ff689b;
    transform: scale(1.04);
    background-color: #ece1e4;
  }
  .services .icon-box-cyan .icon {
    background: #e6fdfc;
  }
  .services .icon-box-cyan .icon i {
    color: #3fcdc7;
  }
  .services .icon-box-cyan:hover {
    border-color: #3fcdc7;
    transform: scale(1.04);
    background-color: #e1ecec;
  }
  .services .icon-box-green .icon {
    background: #eafde7;
  }
  .services .icon-box-green .icon i {
    color: #41cf2e;
  }
  .services .icon-box-green:hover {
    border-color: #41cf2e;
    transform: scale(1.04);
    background-color: #e6ece1;
  }
/* mission vision values End*/
/* Scrolled Bg */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.253)), url("/assets/img/green-boat-bg.jpg") center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
}

.cta h3 {
    color: #76BD38;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #FFF;
}
.cta1 {
    background: linear-gradient(rgba(0, 0, 0, 0.336), rgba(0, 0, 0, 0.253)), url("/assets/img/green-green-bg.jpg") center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
}

.cta1 h3 {
    color: #76BD38;
    font-size: 28px;
    font-weight: 700;
}

.cta1 p {
    color: #FFF;
}
/* Scrolled Bg */
.solarIcon{
    font-size: 44px;
    font-weight: 700;
    color: #76BD38;
}

.footerLogo{
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    width: 50%;
}