@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500&display=swap');
body {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.538;
    font-weight: 400;
}

a, a:hover, a:focus, a:active {text-decoration: none !important; outline: none;}

img {max-width: 100%;}

.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #333;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}
p {text-align: justify;}
section {width: 100%; display: block; position: relative; padding: 90px 0;}

:root {
    --color-yellow:#f1cf69;
    --color-yellow-rgba:241 207 105;
    --color-light-black:#282828;
    --color-green:#4A8B71;
    --color-green-rgba:74 139 113;
    --font-poppins: 'Poppins', sans-serif;
}

.wrapper {
    float: left;
    width: 100%;
}

.slider-section {
    text-align: center;
}
.slider-section img {width: 100%;}
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before, .slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {display: block; }
.slick-slide.slick-loading img {display: none; }
.slick-slide.dragging img {pointer-events: none; }
.slick-initialized .slick-slide {display: block; }
.slick-loading .slick-slide {visibility: hidden; }
.slick-vertical .slick-slide {display: block; height: auto; }
.slick-arrow.slick-hidden {display: none; }
.header-slider { padding: 0; }
.header-slider img {width: 100%; margin: 0;}
.header-slider .slick-slide {padding: 0;}
.header-slider .slick-arrow  { 
    position:absolute; 
    top: 50%; 
    margin-top: -25px;
    border: none; 
    background: var(--color-yellow); 
    z-index: 1; 
    text-indent: 36px;
    overflow: hidden;
    width: 30px;
    height: 50px;
    border-radius: 3px; 
    cursor: pointer;
}
.header-slider .slick-arrow:focus {border: none !important; box-shadow: none !important;}
.header-slider .slick-arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: 'FontAwesome';
    color: #000;
    text-indent: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-slider .slick-prev { left: 30px; }
.header-slider .slick-next {right: 30px;}
.header-slider .slick-prev:before { content: "\f104"; }
.header-slider .slick-next:before { content: "\f105";  }

.mainheader {
    grid-gap: 10px;
    justify-content: space-between;
}

.mainheader .logo {position: relative; background: #FFF; padding: 5px;}
.mainheader .logo a img {max-height: 70px;}
.mainheader .logo a img:nth-child(2) {display: none; }
.mainheader .nav-part ul {list-style: none; margin: 0; padding:0;}
.mainheader .nav-part ul li {display: inline-block; margin-left: 20px; position: relative;}
.mainheader .nav-part ul li:first-child {margin-left: 0;}
.mainheader .nav-part ul li a {
    color: var(--color-light-black); 
    font-size: 13px; 
    font-weight: 600; 
    position: relative;
    transition: all 0.4s ease-in-out; 
    font-family: var(--font-poppins); 
    text-transform: uppercase;
}

.mainheader .nav-part ul li.active a, .mainheader .nav-part ul li a:hover {
    color:var(--color-yellow);
}

.mainheader .nav-part ul li a:before {
    content: '';
    width: 0px;
    height: 2px;
    background: var(--color-yellow);
    position: absolute;
    bottom: 0;
    left:0;
    transition: all 0.5s ease-in-out;
}

.mainheader .nav-part ul li.active a:before, .mainheader .nav-part ul li:hover a:before {
    width: 20px;
}

.nav-dropdown {
    position: absolute;
    top: auto;
    left: 0;
    width: 244px;
    padding-top: 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}
.nav-dropdown li.active a {    
    color: var(--color-yellow) !important;
}
.nav-dropdown li.active a:before {    
    width: 20px !important;
}

.mainheader .nav-part ul li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.mainheader .nav-part .nav-dropdown ul {
    background:var(--color-light-black); 
    padding: 30px;
}

.nav-dropdown li {width: 100%; margin-left: 0 !important;}
.nav-dropdown li a {color: #FFF !important; }
.nav-dropdown li a:hover {color:var(--color-yellow) !important; }
.nav-dropdown li a:before {width: 0px !important; }
.nav-dropdown li a:hover:before {width: 20px !important; }
.level-three {    
    left: 100%;
    margin-left: 30px;
    margin-top: -50px;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(15px) !important;
}
.nav-dropdown li:hover > a {color:var(--color-yellow) !important;}
.nav-dropdown li:hover > a:before {width: 20px !important;}
.nav-dropdown li:hover .level-three {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0px) !important;
}

.nav-dropdown.level-three li a {color: #FFF !important;}
.nav-dropdown.level-three li a:before {width:0 !important;}
.nav-dropdown.level-three li.active a,
.nav-dropdown.level-three li:hover a {color:var(--color-yellow) !important;}
.nav-dropdown.level-three li.active a:before,
.nav-dropdown.level-three li:hover a:before {
    width:20px !important;
}

.mobile-login {display: none !important;}
.nav-bar:before {
    content:''; 
    position: fixed; 
    width: 100%; 
    height: 100%; 
    top: 0; left: 0; 
    background: rgba(0,0,0,0.8); opacity: 0; visibility: hidden;
    transition: all 0.5s ease;
}
.nav-bar.shown:before { opacity: 1; visibility: visible; }
.header-main-section.fixed .mainheader .logo a img:nth-child(1) {display: none;}
.header-main-section.fixed .mainheader .logo a img:nth-child(2) {display: block;}
.header-main-section {position: fixed; top: 0; left:0; width: 100%; padding: 10px 0; z-index: 2;
    transition: all 0.5s ease-in-out;
}

.header-main-section.fixed {
    top: 0;
    background:#FFF;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
    transition: all 0.8s ease-in-out;
}

.header-main-section.fixed .mainheader .nav-part ul li a {color: #000;}
.header-main-section.fixed .mainheader .nav-part ul li.active a,
.header-main-section.fixed .mainheader .nav-part ul > li:hover a {color:var(--color-yellow); }
.header-main-section .get-touch {display: flex; grid-gap: 8px;}
.header-main-section .get-touch a {min-width: fit-content; padding: 12px 20px; min-height: 40px;}

.nav-bar {float: right; display: none;}
.nav-bar span {
    font-size: 24px;
    background: var(--color-yellow);
    padding: 5px 8px;
    color: var(--color-light-black);
    border-radius: 3px;
}
.drop-icon {display: none;}
.drop-icon.rotation i:before {
    content: "\f0d7";
}
.btn-outline, .btn-fill {
    min-height: 46px;
    min-width: 135px;
    padding: 15px 10px;
    border:3px solid #f1cf69; 
    position: relative;
    display: inline-block;
    line-height: 1;
    font-family: var(--font-poppins);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
    transition: background-color .3s ease-in-out,border-color .3s ease-in-out,color .3s ease-in-out;
}
.btn-outline {
    background-color: transparent;
    color: #000;
}
.btn-fill {
    background-color: var(--color-yellow);
    color: #FFF;
}

.btn-outline:hover {
    background:var(--color-yellow);
    color: #FFF;
}
.btn-fill:hover {
    background-color:transparent;
    color:var(--color-light-black);
}
.btn-outline.small, .btn-fill.small {
    padding: 11px 15px;
    min-width: 100px;
    min-height: 42px;
}

.farm-ecology h2 {color:#333; font-size: 35px;}
.farm-ecology h4 {margin-bottom: 20px;}
.farm-ecology h4, .farm-ecology span {font-size: 16px; color:#333; font-weight:600;}
.farm-ecology span {text-align: center; display: block; line-height: 20px;}
.agriculture-products-box-wrapper img {
    height: 77px;
    margin-bottom: 10px;
}
.agriculture-products-box-wrapper > div {    
    width: 100%;
    flex: auto;
    max-width: 100%;
    text-align: center;
    margin-top: 30px;
}

.awesome-section { overflow: hidden; padding-bottom: 50px; margin-bottom: 100px;}

.awesome-section h3 {    
    font-size: 96px;
    font-weight: 700;
    line-height: 90px;
    letter-spacing: 0.3px;
    -webkit-text-stroke: 2px;
}

.awesome-section:after {
    content: 'Dummy';
    font-size: 230px;
    text-transform: uppercase;
    color: var(--color-light-black);
    opacity: 0.03;
    position: absolute;
    right: -15px;
    bottom: -28px;
    -webkit-text-stroke: 16px;
    line-height: 1;
}

.awesome-section h3 span {display: block;}
.awesome-section h3 span:nth-child(1) {color:var(--color-light-black);}
.awesome-section h3 span:nth-child(2) {color:var(--color-green);}
.awesome-section h3 span:nth-child(3) {color:var(--color-yellow);}
.h2, h2 { font-size: 35px;}
.h4, h4 { font-size: 16px;}
.crop-ever h2 {margin-bottom: 20px; }
.crop-ever h4 {margin-bottom: 30px; }
.crop-ever a {margin-top: 30px; }
.timeline-section {background:#e9f1ee; }

.corp-ever-mg {    
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-top: 50px;
}
.corp-ever-mg video { width: 100%; }

.timeline-main {padding: 0;  margin-top: 50px;}
.timeline-main-inner {flex-direction: row; flex-wrap: nowrap; overflow: auto;}
.row.timeline-main-inner:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #CCC;
    top: 9px;
    left: 0;
    position: absolute;
}
.timeline-main-inner::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.timeline-main-inner::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
    height: 5px;
}

.timeline-main-inner::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color:var(--color-green);
}
.timeline-box:before {
    content: ''; 
    width: 7px; 
    height: 7px; 
    border-radius: 50%; 
    background: #c8cfb8; 
    position: absolute; 
    top: 5px; 
    left: auto; 
    box-shadow: 0 0 0 4px #fff; 
    z-index: 1;
}

.timeline-box:after {
    content: '';
    width: 1px;
    height: 40px;
    background: #c8cfb8;
    position: absolute;
    top: 10px;
    left: auto;
    margin-left: 3px;
    z-index: 0;
}

.timeline-box {padding-top: 40px; }

.timeline-box h3 {
    font-size: 60px;
    margin: 10px 0;
    color: var(--color-green);
}

.timeline-box h4 {
    font-size: 18px;
    margin: 10px 0;
    color: var(--color-green);
}

.our-product-box-main {margin-top: 80px;}
.our-product-box { padding-top: 25%;
    background-repeat: no-repeat;
    background-size: cover;}

.our-product-text-align {
    align-items: center;
    display: flex;
    padding-top: 0;
}

.our-product-text-align a {    font-size: 13px;
    height: auto;
    position: relative;
    padding: 0;
    width: auto;
    font-weight: 600;
    text-decoration: underline !important;
    color: var(--color-green);}

.our-product-box a { 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.our-product-box a {color: #FFF; line-height: 18px; padding: 20px; transition: all 0.5s ease-in-out;}
.our-product-box a span {transition: all 0.5s ease-in-out;}
.our-product-box a span:nth-child(1) { font-size: 20px; font-weight: 700;}
.our-product-box a span:nth-child(2) {font-size: 12px;}
.our-product-box a {background:rgba(var(--color-green-rgba) / 0.3); }
.our-product-box a:hover {background:rgba(var(--color-green-rgba) / 0); }
.our-product-box a:hover span {opacity: 0; }
.blog-section {background: #FFF;}
.blog-section h2 {margin-bottom: 55px;}
.blog-text-box { align-items: center; display: flex; }
.blog-text-box h2 {display: flex; color:var(--color-green); line-height: 1;
    align-items: center; margin-bottom: 0;}
.blog-text-box h2 span:first-child {font-size: 60px;}
.blog-text-box h2 span:last-child { font-size: 20px; }
.blog-text-box a {font-size: 20px; font-weight: 600; color: var(--color-light-black);}
.blog-text-box ul {padding: 0; list-style: none;}
.blog-text-box li {
    font-size: 12px;
    display: inline-block;
    font-family: 'Poppins';
    border-right: 1px solid #CCC;
    line-height: 1;
    padding-right: 5px;
    color: #CCC;
}

.blog-text-box li:last-child {padding-right: 0; border-right: none;}
.blog-mg-box { display: flex; }
.blog-mg-box > div {
    width: 100%; 
    padding-top: 100%; 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.blog-mg-box.right > div:before, .blog-mg-box.left > div:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -9px;
    z-index: 1;
}

.blog-mg-box.right > div:before {
    margin-right: -13px;
    left: 0;
    right: auto;
    border-width: 13px 0 13px 18px;
    border-color: transparent transparent transparent #fff;
}

.blog-mg-box.left > div:before {
    margin-left: -13px;
    border-style: solid;
    left: auto;
    right: 0;
    border-width: 13px 18px 13px 0;
    border-color: transparent #fff transparent transparent;
}

.see-all-post { margin-top: 60px; }

.m-0 {margin: 0;}
.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}

.mb-0 {margin-bottom:0px;}
.mb-10 {margin-bottom:10px;}
.mb-20 {margin-bottom:20px;}
.mb-30 {margin-bottom:30px;}
.mb-40 {margin-bottom:40px;}
.mb-50 {margin-bottom:50px;}
.mb-60 {margin-bottom:60px;}

.pt-0 {padding-top: 0;}
.pt-10 {padding-top: 10px;}
.pt-20 {padding-top: 20px;}
.pt-30 {padding-top: 30px;}
.pt-40 {padding-top: 40px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}

.pb-0 {padding-bottom:0;}
.pb-10 {padding-bottom:10px;}
.pb-20 {padding-bottom:20px;}
.pb-30 {padding-bottom:03px;}
.pb-40 {padding-bottom:40px;}
.pb-50 {padding-bottom:50px;}
.pb-60 {padding-bottom:60px;}

.testimonial-section {padding:60px 0; background-image: url(../images/chimney-view.jpg); 
    background-size: cover; color:#FFF;}
.testimonial-section:before {content: ''; position: absolute; width: 100%; height: 100%;  
top: 0; left: 0; background: rgba(0, 0, 0, 0.4); z-index: 0;}
.testimonial-section .container {z-index: 1;}
.testimonial-section h2 {color: #FFF;}

.tastimonial-mg {min-width: 155px; }
.tastimonial-mg img {
    margin-bottom: 30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.tastimonial-mg h4 {
    color: #FFF;
    margin-bottom: 5px;
}

.tastimonial-mg p {
    color: #FFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1px;
    font-family: var(--font-poppins);
    text-align: center;
}

.tastimonial-text {
    padding-left: 100px;
    align-items: center;
    display: flex;
}

.tastimonial-text p {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}

.brand-section {padding: 80px 0; text-align: center;}
.brand-section img {margin: 10px 0;}
.contact-us {background:var(--color-green); }
.contact-us > div, .get-in-touch > div {
    width: 600px; max-width: 100%;  padding: 50px 50px;
}

.contact-us > div {float: right; }
.get-in-touch > div {float: left;}
.contact-us h2, .get-in-touch h2 {color: #FFF; margin-bottom: 20px}
.contact-us p, .get-in-touch p {color:#FFF;}
.contact-us .address {padding-left: 0; list-style: none;}
.contact-us .address li {color: #FFF;
    font-family: var(--font-poppins);
    display: flex;
    grid-gap: 15px;
    margin: 17px 0;
    font-weight: 500;
    align-items: baseline;
}

.contact-us .address li i {width: 20px;}
.contact-us .social-media {padding-left: 0; list-style: none;}
.contact-us .social-media li {float: left; margin-right: 20px;}
.contact-us .social-media li a { color: #FFF; font-size: 20px; }
.get-in-touch {background:var(--color-light-black);}
.get-in-touch .form-group { position: relative; }
.get-in-touch input, .get-in-touch textarea, .get-in-touch select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(255 255 255 / 24%);
    border-radius: 0;
    font-size: 14px;
    padding: 0;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.get-in-touch select {color: #777;}
.get-in-touch input:hover,
.get-in-touch input:focus, 
.get-in-touch textarea:hover,
.get-in-touch textarea:focus,
.get-in-touch select:hover,
.get-in-touch select:focus {
    background: transparent;
    color: #FFF;
    border-bottom-color: #FFF;
    box-shadow: none; 
}


.get-in-touch select:focus option { color: #000; }

.get-in-touch input:hover::placeholder,
.get-in-touch input:focus::placeholder, 
.get-in-touch textarea:hover::placeholder,
.get-in-touch textarea:focus::placeholder,
.get-in-touch input:hover + i ,
.get-in-touch textarea:hover + i,
.get-in-touch input:focus + i ,
.get-in-touch textarea:focus + i {
    color: #FFF;
}

.get-in-touch textarea {height: 100px;}
.get-in-touch button {width: 100%; margin-top: 10px;}
.get-in-touch i {
    position: absolute;
    right: 0;
    top: 15px;
}

.btn-outline.white {border-color: #FFF; color: #FFF;}
.btn-outline.white:hover {background: #FFF; color:var(--color-light-black);}

.map-section iframe {
    width: 100%;
    height:400px;
    margin-bottom: -7px;
}

.footer-section {padding: 60px 0; border-top: 1px solid #e9e9e9;}
.footer-section .footer-logo img { margin-bottom: 15px; max-width: 200px;}
.footer-section .footer-widget {margin: 10px 0; }
.footer-section .footer-widget li.active a {
    color: var(--color-yellow);
    position: relative;
}
.footer-section .footer-widget li.active a:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--color-yellow);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section ul {
    padding: 0;
    list-style: none;
    width: 50%;
    float: left;
}
.footer-section li {margin-bottom: 12px; }

.footer-section li a {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.footer-section p {
    font-size: 12px;
    font-weight: 500;
}

.footer-section .subscribe {
    width: 100%;
    display: flex;
    margin-top: 40px;
}

.footer-section .subscribe input {
    border: none;
    border-bottom: 1px solid #CCC;
    font-size: 14px;
    width: 100%;
    margin-right: 15px;
    outline: none;
}

.footer-section .subscribe .btn-outline {
    font-size: 12px;
    padding: 10px 10px;
}

.slick-slider {position:relative; display:block; box-sizing:border-box;}
.slick-list { position:relative; display:block; overflow:hidden; margin:0; padding:0; }
.slick-slide { display:none; float:left; height:100%; min-height:1px; padding: 0 4px;}
.slick-initialized .slick-slide {display:block;}
.slick-loading .slick-slide { visibility:hidden;}
.slick-vertical .slick-slide {display:block; height:auto;}
.slick-arrow.slick-hidden { display: none;}
.slick-dots {padding:0; list-style:none; display:flex; justify-content:center; width:100%; margin-top: 30px;}
.slick-dots li {margin: 0 4px;}
.slick-dots li button {
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    text-indent: 30px;
    background: var(--color-yellow);
    overflow: hidden;
    outline: none;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background: var(--color-green);
}

.sub-header { 
    text-align: center;
    padding: 150px 20px 50px 20px;
    background: #f9f9f9;
}
.navigation.right {
    display: flex;
    justify-content: flex-end;
}
.pagination .page-link:focus {
    box-shadow:none !important;
}
.pagination .page-item.active .page-link {
    background-color: var(--color-light-black) !important;
    border-color: var(--color-light-black) !important;
    color: #FFF !important;
}
.pagination .page-item .page-link {
    color: var(--color-light-black) !important;
}

.what-we-do-section {padding: 60px 0; }
.what-we-do-section h4 {margin-top: 30px;}
.what-we-do-section .corp-ever-mg {
    background-image: url(../images/img_7.jpg);
    background-size: cover;
    height: calc(100% - 105px);
}

.what-we-do-section.right .corp-ever-mg {
    left: 0;
    right: auto; 
}
.what-we-do-section.left .what-we-do-content { padding-right: 35px; }
.what-we-do-section.right {background: #f9f9f9;}
.what-we-do-section.right .what-we-do-content { }
.pre-processing ol {list-style: none; padding: 0; display: flex;}
.pre-processing ol li {
    padding: 25px;
    display: flex;
    background: #316818;
    color: #FFF;
}
.inside-bar.pre-processing ol {
    display: inline-block;
}
.inside-bar.pre-processing ol li {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.waste-energy h3 { color: #FFF; margin-bottom: 20px; }
.waste-energy p {margin-bottom: 0;}
.content-hide {display: none;}
.content-readmore { 
    color: var(--color-yellow);
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
}
.waste-compost ol {padding-left: 15px;}
.waste-compost ol li {padding-left: 7px; margin: 8px 0;}
.heading-two {font-size: 28px;}

.compost-box {
    border: 1px solid #e9e9e9;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.compost-box img { 
    max-height: 50px; 
    max-width: 50px;
    margin-bottom: 10px;
    width: min-content;
}
.compost-box span { 
    font-weight: 600; 
    font-size: 17px;
    color: var(--color-light-black);
    margin-bottom: 5px;
}
.compost-box p {margin: 0;}

.category-links {
    padding-left: 0; 
    margin-bottom: 20px; 
    display: inline-block;
    width: 100%;
}
.category-links li {
    position: relative; 
    display: flex; 
    float: left;
    align-items: center;
    font-weight: 500;
    font-size: 13px;
}
.category-links li:after {
    content: ''; 
    height: 1px; 
    width: 20px; 
    background: var(--color-light-black);
    display: inline-block; 
    margin: 0 10px; 
    opacity: 0.5;
}
.category-links li:last-child:after {display: none;}
.category-links li i {
    margin-right: 6px;
}
.blog-main-mg img{ max-width: 100%; max-height: 500px; }
.blog-content * {margin: 15px 0;}
.blog-content a, .blog-content a span {color: blue;}
.blog-content img {display: block; max-width: 400px; margin-top: 20px; margin-bottom: 20px;}
.blog-content ul, .blog-content ol {display: block; padding-left: 15px;}
.blog-content ul li, .blog-content ol li {margin: 7px 0;}
.ehs-policy-frame {width: 100%; height: 700px;}
.normal-grid-design-text p:last-child {margin-bottom: 0;}
.contact-page-section h2 {color: var(--color-light-black);}
.contact-page-section .get-in-touch {
    background: transparent;
}
/*.contact-page-section .get-in-touch {}
.contact-page-section .get-in-touch input, 
.contact-page-section .get-in-touch textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 24%);}
.contact-page-section .get-in-touch input:hover, 
.contact-page-section .get-in-touch input:focus, 
.contact-page-section .get-in-touch textarea:hover, 
.contact-page-section .get-in-touch textarea:focus {
    background: transparent;
    color: #000;
    border-bottom-color: #000;
    box-shadow: none;
}
.contact-page-section .get-in-touch input:hover::placeholder,
.contact-page-section .get-in-touch input:focus::placeholder, 
.contact-page-section .get-in-touch textarea:hover::placeholder,
.contact-page-section .get-in-touch textarea:focus::placeholder,
.contact-page-section .get-in-touch input:hover + i ,
.contact-page-section .get-in-touch textarea:hover + i,
.contact-page-section .get-in-touch input:focus + i ,
.contact-page-section .get-in-touch textarea:focus + i {
    color: var(--color-light-black);
}*/

.contact-page-section .get-in-touch select,
.contact-page-section .get-in-touch .form-control,
.contact-page-section .get-in-touch input::placeholder,
.contact-page-section .get-in-touch input::placeholder, 
.contact-page-section .get-in-touch textarea::placeholder,
.contact-page-section .get-in-touch textarea::placeholder,
.contact-page-section .get-in-touch input + i ,
.contact-page-section .get-in-touch textarea + i,
.contact-page-section .get-in-touch input + i ,
.contact-page-section .get-in-touch textarea + i {
    color: #000;
}
.contact-page-section .get-in-touch select,
.contact-page-section .get-in-touch .form-control:hover,
.contact-page-section .get-in-touch input:hover::placeholder,
.contact-page-section .get-in-touch input:focus::placeholder, 
.contact-page-section .get-in-touch textarea:hover::placeholder,
.contact-page-section .get-in-touch textarea:focus::placeholder,
.contact-page-section .get-in-touch input:hover + i ,
.contact-page-section .get-in-touch textarea:hover + i,
.contact-page-section .get-in-touch input:focus + i ,
.contact-page-section .get-in-touch textarea:focus + i {
    color: #FFF;
}

.form-control.is-invalid, .subscribe input.is-invalid  {border-bottom-color:#dc3545 !important ;}
.contact-page-section .contact-us {
    background: transparent;
}
.contact-page-section .contact-us {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 5px;
    /*height: 100%;*/
}
.contact-page-section .contact-us h4 {
    font-size: 15px;
    font-weight: 600;
}
.contact-page-section .contact-us  li,
.contact-page-section .contact-us .social-media li a {
    font-size: 14px;
    color: #969696;
}
.contact-page-section .contact-us .social-media {display: inline-block; margin-bottom: 0;}

.contact-page-section iframe {width: 100%; height: 400px; float: left;}
.get-in-touch span.error {display: none;}
.is-invalid + i + span.error {display: block; color: #dc3545; margin-top: 5px;}
.subscribe {position: relative;}
.subscribe .error { display: none; position: absolute;
    bottom: -22px; font-size: 13px; font-weight: 500; left: 0; }
.subscribe input.is-invalid + button + .error { display: block; color: #dc3545; }
.jobs-listing-main {border-top:1px solid #e9e9e9;}
.jobs-listing {border-bottom:1px solid #e9e9e9;}
.jobs-listing > div {      
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.jobs-listing > div:last-child { align-items: flex-end;}
.jobs-listing p {
    margin-bottom: 0; 
    display: flex;
    grid-gap: 7px;
    align-items: baseline;
}
.jobs-listing p i {color: var(--color-light-black); }
.jobs-listing a {width: fit-content;}
.job-header ul {padding-left: 0;
    list-style: none;
    display: flex;
    width: 100%;
    grid-gap: 10px;
    flex-wrap: wrap;}
.job-header ul li {font-size: 13px;
    display: flex;
    align-items: baseline;
    grid-gap: 8px;
    background: #f9f9f9;
    padding: 4px 8px;
    border-radius: 3px;}

.career-form-main {
    background: #f9f9f9;
    padding: 20px 30px 30px;
}
.career-form-main h3 {
    font-weight: 500;
}
.career-form-main input {
    width: 100%;
    height: 40px;
    font-size: 14px;
    border: 1px solid #999;
    padding: 6px 10px;
    background: #FFF;
}
.input-control.is-invalid  {border-color:#dc3545 !important ;} 
.input-control.is-invalid + .error {}
.career-form-main .error {
    color: #dc3545;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 990px) {
    .what-we-do-section img {margin: 20px 0;}
    .normal-grid-design-mg {margin: 15px 0;}
    .jobs-listing {padding: 10px !important; }
    .jobs-listing > div {padding: 4px 0; }
}

.esteemed-guests-out {height: calc(100% - 30px); margin-bottom: 30px;}
.esteemed-guests {text-align: center; list-style: none; padding: 0; width: 100%; height: 100%; 
    border: 1px solid;}
.esteemed-guests li:first-child { font-size: 30px; background: var(--color-yellow); color: var(--color-light-black);}
.esteemed-guests li span { font-weight: 600; display: block;}
.esteemed-guests li { border-top: 1px solid; padding: 16px 10px;}
.esteemed-guests, .esteemed-guests li {border-color: rgba(var(--color-yellow-rgba) / 0.4);}

.main-gallery-box {margin:10px 0; padding: 0 10px; }

.sl-wrapper .sl-navigation button {display: block !important; outline: none;}
.main-gallery-box a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    float: left;
    position: relative;
}

.main-gallery-box a:before,
.main-gallery-box a img,
.main-gallery-box a span {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.main-gallery-box a img {width: 100%;}
.main-gallery-box a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(var(--color-green-rgba) / 0.3);
    z-index: 1;
}
.main-gallery-box a:hover:before {
    background: rgba(var(--color-green-rgba) / 0);
}
.main-gallery-box a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.main-gallery-box a span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 10px;
    color: #FFF;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 0.3px;
    font-size: 16px;
}
.main-gallery-box a:hover span {
    opacity: 0;
    visibility: hidden;
}
.gallery-filter {grid-gap: 10px;}
.gallery-filter button:first-child {min-width: 60px;}
.gallery-filter button {cursor: pointer;}
.gallery-filter button.active {
    background: var(--color-yellow);
    color: #FFF;
    cursor: default;
}

.leadership-main {
    padding: 50px 0 0 0;
    border-top: 1px solid #f9f9f9;
    margin: 10px 0;
}
.leadership-main.first { padding-top:20px; border-top: none;}
.leadership-main img {
    min-width: 250px;
    max-width: 250px;
    height: fit-content;
    margin-right: 20px;
    margin-bottom: 15px;
}
.leadership-text h4 {margin-bottom: 15px;}
.leadership-text h4 span {font-weight: 500; color: #777;}

.full-pdf {width: 100%; height: 700px;}
.sl-wrapper .sl-close:focus {outline: none;}

button:focus {outline: none;}
.filter select {font-size: 14px;}
.filter > div select:nth-child(2) {width:160px;;}
.filter button {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 38px;
    cursor: pointer;
    min-width: 90px;
}
.filter > div {
    float: right;
}
.filter > div form {
    grid-gap: 8px;
}
.environment { 
    min-width: 700px;
}
.environment tr:first-child th { 
    color: #333; 
}
.environment .pdf-button {font-size: 14px;
    display: flex;
    align-items: center;
    grid-gap: 6px;
    color: #FFF;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 3px;
    background: var(--color-yellow);
}
.environment .pdf-button i {
    color: var(--red);
    font-size: 18px;
}
.action-button {
    border-radius: 5px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 1px;
    color: #FFF !important;
    opacity: 0.7;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.action-button.view {background: var(--green);}
.action-button.edit {background: var(--blue);}
.action-button.delete {background: var(--danger);}
.action-button:hover {opacity:1;}
.table-striped.environment tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.01);
}

.pagination .page-item .page-link {
    font-size: 13px;
    font-weight: 500;
}
.pagination .page-item.active .page-link {
    background-color: var(--color-yellow) !important;
    border-color: var(--color-yellow) !important;
    color: #FFF !important;
}

.balance-sheet-box {}
.balance-sheet-box-in { 
    text-align: center; 
    background: #f9f9f9;
    padding: 30px 15px;
    border-radius: 5px; 
    height: 100%;
}
.balance-sheet-box-in i {font-size: 50px; margin-bottom: 15px;}
.balance-sheet-box-in h4 {
    margin-bottom: 15px;
    font-weight: 500;
}

.balance-sheet-box-in a {
    padding: 6px 8px !important;
    min-width: auto !important;
    min-height: auto !important;
    font-size: 12px;
    margin: 0 2px;
}

.csr-policy-section .heading-two {font-size: 20px;}
.csr-policy ul {margin: 10px 0; padding-left: 18px;}
.csr-policy > ul > li::marker {font-weight: 600; color: #333;}
.csr-policy > ul > li {margin: 15px 0;}
.csr-policy ul li {margin: 7px 0;}
.csr-policy ul li p:last-child {margin: 0; }
.csr-policy h4 {margin-bottom: 15px; font-weight: 500;}
.csr-policy ul li h4 + p {margin-bottom: 15px !important; }
.csr-policy .decimal { list-style: decimal; }
.csr-policy .lower-roman { list-style: lower-roman; }
.csr-policy .upper-roman { list-style: upper-roman; }
.csr-policy .disc { list-style: disc; }
.csr-policy .upper-alpha { list-style: upper-alpha; }
.csr-policy .lower-alpha { list-style: lower-alpha; }
.csr-policy .square { list-style: square; }

.investor-tabs-main .nav-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border: none;
}
.investor-tabs-main .nav-tabs a {    
    border: none;
    font-size: 17px;
    font-weight: 500;
    opacity: 0.4;
    color: #000;
}
.investor-tabs-main .nav-tabs a.active {
    opacity: 1;
    font-weight: 600;
    border: 1px solid #CCC;
    border-radius: 4px;
}
.awards-main ul {
    padding-left: 20px;
}
.awards-main ul li {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.contact-us.registered-addess {background: #FFF; border: 7px solid #f9f9f9; text-align: center;}
.contact-us.registered-addess li, .contact-us.registered-addess li { text-align: center; display: block;}
.get-in-touch.contact-page > div {background: var(--color-yellow);  width: 100%; border-radius: 5px;}
/*.get-in-touch.contact-page textarea {height: 177px;}*/
.pps-video {width: 100%;}


.home-page-modal .modal-body {
    padding: 15px 25px;
}
.home-page-modal .modal-body .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    color: #ab0101;
}
.modal-content-box {
    padding: 0;
}
.modal-content-box * {
    background: transparent !important;
}
.modal-content-box img {
    max-width: 100%;
}
.modal-content-box h1,
.modal-content-box h2,
.modal-content-box h3,
.modal-content-box h4,
.modal-content-box h5,
.modal-content-box h6,
.modal-content-box p,
.modal-content-box img,
.modal-content-box ul,
.modal-content-box ol {
    margin: 10px 0;
    color: #333;
}
.modal-content-box ul,
.modal-content-box ol {
    padding-left: 18px;
}
.modal-content-box ul li,
.modal-content-box ol li {
    margin: 4px 0;
}


#toastMessage {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #36711c;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#toastMessage.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}


@media (max-width: 600px) {
    .header-main-section{position:sticky;}
    header.header-main-section.fixed .mainheader .logo a img { max-height: 50px; }
}
