/* header style start */
.header-section {
    background: #F7F7F7;
    position: relative;
}
.header-section .carousel-item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.header-section .cover {
    background: rgba(0, 0, 0, 0.2);
    padding: 175px 0 95px;
    position: relative;
    min-height: 100vh;
    z-index: 999;
    width: 100%;
    color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
}
.header-section .cover h1 {
    margin: 5px 0 15px;
    font-weight: 700;
    font-size: 56px;
}
.header-section .cover h4 {
    line-height: 36px;
    font-weight: 300;
    font-size: 25px;
}
.header-section .carousel-control-prev,
.header-section .carousel-control-next {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    top: calc(58% - 42px);
    line-height: 42px;
    font-size: 17px;
    z-index: 9999;
    height: 42px;
    margin: 0 3%;
    width: 45px;
    opacity: 0;
}
.header-section .carousel-control-prev:hover,
.header-section .carousel-control-next:hover {background: #009639;}
.header-section:hover .carousel-control-prev,
.header-section:hover .carousel-control-next {
    margin: 0 2%;
    opacity: 1;
}
.header-section .cover .down-arrow {
    background: rgba(255,255,255, .4);
    left: calc(50% - 25px);
	position: absolute;
    border-radius: 50%;
	bottom: 65px;
	width: 45px;
	line-height: 45px;
	height: 45px;
    font-size: 20px;
    color: #fff;
}
.header-section .cover .down-arrow::after {
    position: absolute;
    top: -8%;
    left: -8%;
    content: '';
    display: inline-block;
    width: 116%;
    height: 116%;
    background: rgba(255,255,255, .3);
    border-radius: 50%;
}
.header-section .carousel-item .cover .down-arrow img {width: 100%;}
@media screen and (max-width: 768px) {
    .header-section .cover h1 {
        line-height: 42px;
        font-size: 40px;
    }
    .header-section .cover h4 {
        line-height: 26px;
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .header-section .cover {min-height: 80vh;}
}
/* header section end */



/* founder section start */
.founder-section {
    background: #fff;
    padding: 95px 0;
}
.founder-section .founder_speech {text-align: justify;}
.founder-section .founder_speech h3 {font-weight: 600;}
.founder-section .founder-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.founder-section h4 {
    margin: 15px 0 3px;
    font-weight: 700;
}
.founder-section p:empty{display: none;}
.founder-section .founder-article h3 {font-weight: 700;}
.founder-section .founder-article .read-more {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    height: 42px;
    line-height: 38px;
    font-size: 14px;
    background: #009639;
    color: #fff;
    min-width: 142px;
    padding: 0 30px;
    text-align: center;
    transition: all 0.2s;
    margin: 12px 0;
    border-radius: 4px;
    border: 2px solid #96ded5
}
.founder-section .founder-article .read-more:hover {background: #000;}
/* founder section end */



/* product style start */
.product-section {
	padding: 95px 0 65px;
    background: #F7F7F7;
}
.product-section .product-content {margin-bottom: 30px;}
.product-section .product-summary {
    margin: 0;
    overflow: hidden;
}
.product-section .product-summary img {
   
    height: 256px;
    width: 165px;
    transition: all .2s;
}
.product-section .product-summary:hover img {transform: scale(1.05);}
.product-section .product-article {
    background: #fff;
    padding: 40px;
}
.product-section .product-article h4 {
    font-weight: 600;
    font-size: 22px;
    margin-top: 9px;
    color: #000;
}
.product-section .product-article p {margin-bottom: 8px;}
.product-section .product-article a {
    font-size: 25px;
    color: #009639;
}
.product-section .product-article a:hover {text-decoration: underline;}

.product-section .single-product img {
    max-width: 100%;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin: 0 0 25px 0;
}
/* product section end */



/* gallery section start */
.gallery-section {
    background: #FFFFFF;
    padding: 95px 0;
}
.gallery-section .row > [class*=col-],
.gallery-section .row > .col {
    padding-right: 10px;
    padding-left: 10px;
}
.gallery-section .row {
    margin-right: -10px;
    margin-left: -10px;
}
.gallery-section .gallery-content {
    display: inline-block;
    position: relative;
    margin: 10px 0;
    width: 100%;
    overflow: hidden;
    border: 1px solid #F1F1F1;
}
.gallery-section .gallery-content > img {
    object-fit: cover;
    height: 245px;
    width: 100%;
    transition: all .2s;
}
.gallery-section .gallery-content a {
    background: rgba(0, 0, 0, 0.1);
    justify-content: center;
    transition: all 0.2s;
    align-items: center;
    font-style: italic;
    position: absolute;
    font-size: 20px;
    display: flex;
    height: 100%;
    width: 100%;
    color: #fff;
    left: 0;
    top: 0;
    opacity: 0;
}
.gallery-section .gallery-content:hover a {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
}
.gallery-section .gallery-content:hover img {transform: scale(1.1);}
.gallery-section .gallery-content a i {transition: all 0.2s;}
.gallery-section .gallery-content:hover i {transform: scale(2.5);}

/* lightbox style start hear */
.lb-close {margin: -3px -7px 0 0;}
.lb-image {
    max-width: 1106px !important;
    object-fit: cover !important;
	position: relative;
}
.lb-close {
    position: relative !important;
    z-index: 9999 !important;
    margin-top: -24px;
    background-color: #009639 !important;
    background-size: 50% 50% !important;
    background-position: center !important;
    opacity: 1 !important;
    border-radius: 50%;
    margin-right: -15px;
}
@media screen and (max-width: 1200px) {
    .lb-image {max-width: 926px !important;}
}
@media screen and (max-width: 992px) {
    .lb-image {max-width: 686px !important;}
}
@media screen and (max-width: 768px) {
    .lb-image {max-width: 506px !important;}
}
/* gallery section start */



/* status section start */
.status-section {
    padding: 95px 0 75px;
    background: #F7F7F7;
    position: relative;
}
.status-section .status-background {
    position: relative;
    padding: 6%;
    z-index: 2;
}
.status-section .status-background::before {
    content: "";
    display: inline-block;
    width: 88%;
    height: 88%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFF;
    z-index: -1;
}
.status-section .status-background::after {
    content: "";
    display: inline-block;
    width: 88%;
    height: 88%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #FFF;
    z-index: -1;
}
.status-section .status-background img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}
.status-section .status-box {text-align: justify;}
.status-section .status-carousel {margin-top: 45px;}
.status-section .status-carousel .status {
    font-weight: 700;
    color: #009639;
}
.status-section .status-box h5 {font-weight: 700;}
.status-separator {padding-bottom: 190px;}

@media screen and (max-width: 991px) {
    .status-section .status-box {padding: 45px 0 95px;}
}
/* status section end */



/* blog style start */
.blog-section {
	padding: 95px 0 65px;
    background: #FFFFFF;
}
.blog-section .blog-content {margin-bottom: 30px;}
.blog-section .blog-summary {
    margin: 0;
    overflow: hidden;
}
.blog-section .blog-summary img {
    object-fit: cover;
    height: 210px;
    width: 100%;
    transition: all .2s;
}
.blog-section .blog-summary:hover img {transform: scale(1.05);}
.blog-section .blog-article {
    background: #F7F7F7;
    padding: 20px;
}
.blog-section .blog-article .date {
    font-family: 'Work Sans', sans-serif;
    margin-right: 20px;
    text-align: center;
    display: inline;
    float: left;
    margin: 0 12px 8px 0;
    padding: 4px 8px 6px;
    background: #009639;
}
.blog-section .blog-article .date h2 {
    font-weight: 600;
    font-size: 28px;
    margin: 0;
    color: #fff;
}
.blog-section .blog-article .date p {
    line-height: 20px;
    font-size: 14px;
    color: #fff;
    margin: 0;
}
.blog-section .blog-article h4 {
    font-weight: 600;
    font-size: 22px;
    margin-top: 9px;
    color: #000;
}
.blog-section .blog-article p {margin-bottom: 8px;}
.blog-section .blog-article a {
    font-size: 15px;
    color: #009639;
}
.blog-section .blog-article a:hover {text-decoration: underline;}

.blog-section .single-blog img {
    max-width: 100%;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin: 0 0 25px 0;
}
/* blog section end */
