/*--------------------------------------------------------------
# Client Part Start
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #fff;
    color: #14B253;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #14B253;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #14B253;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

button:hover,
button:active,
button:focus {
    cursor: pointer;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    color: #000;
}

th,
td {
    text-align: right;
    padding: 15px;
    border: 1px solid #aaa;
}

th {
    text-align: center;
}

tr:nth-child(odd) {
    background-color: #d0f6cd;
}

th:first-child {
    position: sticky;
    left: 0;
    background-color: #d0f6cd;
    padding: 15px;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #14B253;
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 50px;
    right: 25px;
    bottom: 25px;
    transition: background 0.5s;
    z-index: 998;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 60px;
    }
}

.back-to-top:focus {
    background: #00f762;
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: #1e7541;
    color: #fff;
}


/*--------------------------------------------------------------
# Contact Us Pop Up Button
--------------------------------------------------------------*/

.open-button {
    position: fixed;
    display: inline;
    background: #1e7541;
    color: #fff;
    padding: 8px 22px 10px 22px;
    font-size: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    right: 100px;
    bottom: 0px;
    z-index: 998;
    display: block;
}

.open-button:focus {
    background: #14B253;
    color: #fff;
    outline: none;
}

.open-button:hover {
    background: #14B253;
    ;
    color: #fff;
}


/*--------------------------------------------------------------
# Contact Us Pop Up Form
--------------------------------------------------------------*/

.form-popup {
    display: none;
    background-color: #1e7541;
    position: fixed;
    bottom: 0;
    right: 100px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 999;
    opacity: 90%;
}

#ContactUs-PopUp-Form .form-container {
    max-width: 400px;
    margin: 20px;
    z-index: 999;
}

#ContactUs-PopUp-Form .cancel {
    float: right;
}

#ContactUs-PopUp-Form .btn:hover {
    background-color: #fee3ee;
}

@media (max-width: 768px) {
    .open-button {
        right: 40px;
        font-size: 15px;
    }
    .form-popup {
        right: 10px;
    }
    #ContactUs-PopUp-Form .form-container {
        max-width: 300px;
    }
}


/*--------------------------------------------------------------
# Loading Animation
--------------------------------------------------------------*/

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 999;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #14B253;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}

#myDiv {
    display: none;
    text-align: center;
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    background: #14B253;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
}

#topbar .contact-info a:hover {
    color: #14B253;
    background: #fff;
    border-radius: 5px;
}

#topbar .contact-info i {
    color: #fff;
    padding: 4px 4px 0 0;
}

.contact-info.float-left {
    color: #fff;
}

#topbar .social-links a {
    color: #fff;
    padding: 6px 6px;
    margin-right: 8px;
    display: inline-block;
    line-height: 1px;
}

#topbar .social-links a:hover {
    color: #14B253;
    background: #fff;
    border-radius: 50%;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

#topbar #content-desktop {
    display: block;
}

#topbar #content-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    #topbar #content-desktop {
        display: none;
    }
    #topbar #content-mobile {
        display: block;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 10px 0;
    height: 120px;
    transition: all 0.5s;
    z-index: 9;
    background: #fff;
    box-shadow: 0px 0 10px 0 rgba(0, 0, 0, 0.4);
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-width: 250px;
}

@media (max-width: 768px) {
    #header {
        padding: 20px 0;
        height: 130px;
    }
    #header #logo img {
        max-width: 250px;
    }
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
}

.flex-container>div {
    background-color: #f1f1f1;
    width: 1000px;
    margin: 10px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
}

#payment {
    margin-top: 20px;
    margin-bottom: 40px;
    background: white;
}


/*--------------------------------------------------------------
# Pop-Up Banner
--------------------------------------------------------------*/

#list-builder {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    filter: alpha(opacity=80);
    opacity: 0.8;
    display: none;
}

#popup-box {
    opacity: 0.8;
    z-index: 10;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #1e7541;
    color: #FFFFFF;
    width: 90%;
    max-width: 700px;
    padding: 30px;
    border: 10px solid #FFFFFF;
    display: none;
    border-radius: 25px;
}

#popup-close {
    cursor: pointer;
    max-width: 40px;
}

#popup-box input {
    padding: 10px;
    border: 1px solid #333;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 25px;
}

#popup-box button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #333;
    border-radius: 25px;
}


/*--------------------------------------------------------------
# Explre More Section
--------------------------------------------------------------*/

#explore .main_slide {
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #14B253;
    /*background-color: #ffffff;*/
    /*rgba(14,228,99,1)*/
    /*background: linear-gradient(320deg, #14B253 0%, #ffffff 80%);*/
    background: linear-gradient(0deg, #14B253 5%, #ffffff 100%);
}

#explore .explore-more {
    /*position: relative;*/
    /*top: 150px;*/
    padding-left: 5%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    vertical-align: middle;
    /*margin-bottom: 100px;*/
    /*transition: 2s all cubic-bezier(0.785, 0.135, 0.15, 0.86)*/
}

#explore .home_image img {
    width: 100%;
    max-width: 920px;
    height: auto;
    /*padding-top: 5%;*/
}

@media(max-width:760px) {
    #explore .explore-more {
        margin-top: 20px;
        /*position: relative;*/
        /*bottom: 0;*/
        /*right: 0;*/
        display: flex;
        /*justify-content: center;*/
        flex-direction: column;
    }
}

#explore .explore-more h2 {
    color: #000;
    font-size: 20px;
    text-align: left;
    /*font-weight: bold;*/
}

#explore .explore-more h2 span {
    color: #0d592c;
    /*text-align: right;*/
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

#explore .explore-more .btn-banner {
    background: #1a6839;
    border: 2px solid #1a6839;
    border-radius: 30px;
    color: #ffffff;
    /*margin-top: 0px;*/
    padding: 10px 25px;
    font-weight: bold;
}

#explore .explore-more .btn-banner:hover {
    background: none;
    color: #fff;
    background: #14B253;
    border: 2px solid #1a6839;
}

#explore .explore-more .btn-banner span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

#explore .explore-more .btn-banner span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

#explore .explore-more .btn-banner:hover span {
    padding-right: 25px;
}

#explore .explore-more .btn-banner:hover span:after {
    opacity: 1;
    right: 0;
}


/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    color: #14B253;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.section-header h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 90px;
    height: 3px;
    bottom: 0;
    left: 0;
    border-top: #000000 solid 2px;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

.section-header p {
    padding: 0;
    margin: 0;
    text-align: center;
    color: #333;
}


/*-------------------------------------------------
Inner Banner
---------------------------------------------------*/

#innerBanner {
    padding-top: 10px;
    padding-bottom: 20px;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
    margin-top: 20px;
}

#innerBanner h2 {
    color: #14B253;
    text-align: center;
    font-weight: normal;
    font-size: 21px;
    margin: 0px;
    line-height: 35px;
}

#innerBanner h2 span {
    color: #14B253;
    font-weight: bold;
    font-size: 60px;
    text-align: center;
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

#products a {
    max-width: 100%;
    opacity: 1;
    transition: 0.5s;
    transform: scale(1);
}

#products .owl-nav,
#products .owl-dots {
    margin-top: 15px;
    margin-bottom: 35px;
    text-align: center;
}

#products .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

#products .owl-dot.active {
    background-color: #14B253;
}

.products-carousel .owl-item,
.products-carousel .owl-wrapper {
    margin-bottom: 10px;
    transform: scale(1);
}

#products .product_box {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
}

#products .product_box:hover {
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.5);
    transition: box-shadow .2s ease-in-out;
    -webkit-transition: box-shadow .2s ease-in-out;
    display: block;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
}

#products .product_box img {
    height: 100%;
    width: 100%;
}

#products .product_title {
    font-size: 25px;
    font-weight: 500;
    color: #14B253;
}


/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/

#Testimonial .owl-nav,
#Testimonial .owl-dots {
    margin-top: 15px;
    margin-bottom: 35px;
    text-align: center;
}

#Testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

#Testimonial .owl-dot.active {
    background-color: #14B253;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-wrapper {
    margin-bottom: 10px;
    transform: scale(1);
}

#Testimonial .testimonial-item {
    box-sizing: content-box;
    padding: 0px 30px 0 30px;
    margin: 10px 15px;
    text-align: center;
    min-height: 250px;
}

@media (max-width: 767px) {
    #Testimonial .testimonial-item {
        margin: 30px 10px;
        padding-top: 0px;
        padding-left: : 0px;
        padding-bottom: : 0px;
        padding-right: 65px;
    }
}

#Testimonial .testimonial-item .testimonial-img {
    width: 90px;
    margin: 0 auto;
}

#Testimonial .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#Testimonial .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

#Testimonial .testimonial-item p {
    font-style: italic;
    /*margin: 0px 10px 15px 0px;*/
    background-color: #8dff87;
    width: 100%;
    border: 2px solid #14B253;
    border-radius: 15px;
    padding: 22px 15px;
    font-size: 15px;
    color: #000;
    height: 200px;
    overflow-x: auto;
}


/*--------------------------------------------------------------
# You Tube Video 
--------------------------------------------------------------*/

#youtubevid iframe {
    padding-left: 20px;
    padding-top: 20px;
    width: 1000px;
    height: 800px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 9;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}


/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 20px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 8px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}


/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background: white;
    color: black;
    border-color: #14B253;
}

.dropdown-menu :hover {
    border-color: #14B253;
    color: #14B253;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
    .dropdown-menu {
        background: #14B253;
    }
    .dropdown-item {
        background: #14B253;
    }
}


/* Nav Menu Styling */

.nav-menu a {
    padding: 6px 20px;
    text-decoration: none;
    display: inline-block;
    color: #555;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    border-radius: 25px;
}

.nav-menu li:hover>a,
.nav-menu>.menu-active>a {
    color: #ffffff;
    background: #14B253;
}

.nav-menu>li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover>a {
    color: #14B253;
}

.nav-menu ul ul {
    margin: 0;
}


/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    margin: 55px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #555;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}


/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 10px;
    bottom: 0;
    z-index: 998;
    left: -260px;
    width: 220px;
    overflow-y: auto;
    transition: 0.4s;
    background: #14B253;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #14B253;
}

#mobile-nav ul .menu-item-active {
    color: #14B253;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(13, 13, 13, 0.9);
    display: none;
}


/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}


/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/

#clients {
    padding: 20px 0;
}

#clients img {
    max-width: 100%;
    opacity: 1;
    transition: 0.3s;
    padding: 15px 0;
    transform: scale(1.3);
}

#clients .owl-nav,
#clients .owl-dots {
    margin-top: 5px;
    text-align: center;
}

#clients .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

#clients .owl-dot.active {
    background-color: #14B253;
}

.clients-carousel .owl-item,
.clients-carousel .owl-wrapper {
    margin-bottom: 20px;
    transform: scale(1.4);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
    padding: 20px 0 20px 0;
}

#about .about-img {
    overflow: hidden;
}

#about .about-img img {
    /*margin-left: -15px;*/
    max-width: 100%;
}

#about .about-img iframe {
    width: 500px;
    height: 400px;
}

@media (max-width: 768px) {
    #about .about-img {
        height: auto;
    }
    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content h2 {
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    font-family: "Raleway", sans-serif;
}

#about .content h3 {
    color: #555;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
    color: #000000;
}

#about .content li {
    line-height: 26px;
    color: #000000;
    margin-left: 40px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: #076FBF;
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

#about .card {
    border-width: 1.5px;
    border-style: solid;
    border-radius: 20px;
    margin-bottom: 30px;
    background: #14B253;
    justify-content: center;
}

#about .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.5);
}

#about .card-title {
    padding: 10px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: BOLD;
}


/*--------------------------------------------------------------
# Contact-Us
--------------------------------------------------------------*/

#contact .single-request {
    padding-bottom: 25px;
    border: 2px solid #ebebeb;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    margin-top: 30px;
    color: #000;
    font-weight: bold;
}

#contact .single-request:hover {
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.3);
    transition: box-shadow .3s ease-in-out;
    -webkit-transition: box-shadow .3s ease-in-out;
}

#contact .profile .image {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 30px auto 0 auto;
}

#contact .profile .image .circle-1,
#contact .profile .image .circle-2 {
    position: absolute;
    box-sizing: border-box;
    width: 76px;
    height: 76px;
    top: -3px;
    left: -3px;
    border-width: 1px;
    border-style: solid;
    border-color: #14B253 #14B253 #14B253 transparent;
    border-radius: 50%;
    transition: all 1.5s ease-in-out;
}

#contact .profile .image .circle-2 {
    width: 82px;
    height: 82px;
    top: -6px;
    left: -6px;
    border-color: #14B253 transparent #14B253 #14B253;
}

#contact .single-request:hover .profile .image .circle-1,
#contact .single-request:hover .profile .image .circle-2 {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

#contact .single-request:hover .profile .image .circle-2 {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

#contact .image .icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 19%;
    font-size: 45px;
    margin: 0;
    color: #000;
    width: unset;
}

#contact .profile .contact_title {
    font-size: 25px;
    font-weight: 600;
    margin-top: 30px;
    color: #14B253;
    padding-bottom: 5px;
}

#contact .profile .lower_border {
    width: 25%;
    border-top: #000 solid 2px;
    border-bottom: #000 solid 0px;
    border-left: #000 solid 0px;
    border-right: #000 solid 0px;
}

#contact .profile {
    font-size: 11px;
    line-height: 15px;
}

#contact .request-info-area {
    padding: 0px 41px;
    margin-top: 12px;
    padding: 8px 0px;
    font-size: 15px;
    text-align: center;
}

#contact .control-group .form-group i {
    color: #000;
}

@media(max-width: 580px) {
    #contact .form_part {
        margin-bottom: 50px;
    }
}


/*--------------------------------------------------------------
# Products Description Page
--------------------------------------------------------------*/

#product_description {
    min-height: 900px;
    margin-top: 20px;
    z-index: -1;
}

#product_description i {
    color: #000;
}

#product_description .col-lg-2 {
    border-left: 1.5px solid #c4c4c4;
}

#product_description .col-lg-10 h2 {
    font-weight: bold;
    margin-top: 30px;
}

#product_description .col-lg-6 h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

#product_description .col-lg-6 p {
    margin-bottom: 0px;
    line-height: 30px;
}

#product_description .col-lg-6 ul {
    line-height: 30px;
    color: #000;
}

#product_description .dimension_table {
    overflow-x: auto;
    margin: 10px;
}

#product_description span {
    color: red;
    font-weight: bold;
    margin-left: 15px;
}

#product_description_image img {
    margin-top: 0px;
    width: 100%;
}

@media (max-width: 768px) {
    #product_description .col-lg-6 h1 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    #product_description .col-lg-10 h2 {
        margin-top: 10px;
    }
}


/*Product Show Verticle Bar*/

#products_show {
    transform: rotate(90deg);
    top: 0;
}

#products_show a {
    padding: 20px;
}

#products_show .products_show-carousel {
    width: 1500px;
}

#products_show .product_show_box {
    transform: rotate(-90deg);
    text-align: center;
    border-bottom: 1px solid #c4c4c4;
}

#products_show .product_show_box img:hover {
    transform: scale(1.1);
    transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
}

#products_show .product_show_box img {
    height: 100%;
    width: 100%;
}

#products_show .product_show_title {
    font-size: 20px;
    color: #14B253;
}


/*--------------------------------------------------------------
# Products Category
--------------------------------------------------------------*/

#product_category {
    padding-left: 80px;
    padding-right: 80px;
}

#product_category a {
    max-width: 100%;
    opacity: 1;
    transition: 0.5s;
    transform: scale(0.9);
}

#product_category .brochure_box {
    text-align: center;
    border-radius: 25px;
    margin-bottom: 25px;
    border: 2px solid #ebebeb;
}

#product_category .brochure_box:hover {
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.5);
    transition: box-shadow .2s ease-in-out;
    -webkit-transition: box-shadow .2s ease-in-out;
    display: block;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
}

#product_category .brochure_box img {
    height: 100%;
    width: 100%;
}

#product_category .brochure_title {
    font-size: 30px;
    font-weight: 600;
    color: #14B253;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

#product_category .hover_item {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    position: absolute;
    top: 0px;
    left: 13px;
    background: rgba(17, 17, 17, 0.85);
    opacity: 0;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #product_category {
        padding-left: 25px;
        padding-right: 25px;
    }
}

#product_category .brochure_box:hover .export_item_hover {
    transform: scale(1);
    opacity: 1;
    width: 100%;
}

#product_category .export_item_hover {
    width: 90%;
    height: 100%;
    position: absolute;
    top: 0px;
    border-radius: 25px;
    background: rgba(20, 178, 83, 0.7);
    opacity: 0;
}

#product_category .icon {
    line-height: 40px;
    z-index: 5;
    position: absolute;
    top: calc(50% - 60px);
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    visibility: hidden;
}

#product_category .icon button {
    background-color: #fff;
    color: #14B253;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 20px;
    width: 100%;
}

#product_category .brochure_box:hover .icon {
    opacity: 1;
    z-index: 20;
    visibility: visible;
}


/*--------------------------------------------------------------
# Brochure And Product List Page
--------------------------------------------------------------*/

#brochures {
    padding-left: 80px;
    padding-right: 80px;
}

#brochures a {
    max-width: 100%;
    opacity: 1;
    transition: 0.5s;
    transform: scale(0.9);
}

#brochures .brochure_box {
    text-align: center;
    border-radius: 25px;
    margin-bottom: 25px;
    border: 2px solid #ebebeb;
}

#brochures .brochure_box:hover {
    box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.5);
    transition: box-shadow .2s ease-in-out;
    -webkit-transition: box-shadow .2s ease-in-out;
    display: block;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
}

#brochures .brochure_box img {
    height: 100%;
    width: 100%;
}

#brochures .brochure_title {
    font-size: 30px;
    font-weight: 600;
    color: #14B253;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

#brochures .hover_item {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    position: absolute;
    top: 0px;
    left: 13px;
    background: rgba(17, 17, 17, 0.85);
    opacity: 0;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    #brochures {
        padding-left: 10px;
        padding-right: 10px;
    }
}

#brochures .brochure_box:hover .export_item_hover {
    transform: scale(1);
    opacity: 1;
    width: 100%;
}

#brochures .export_item_hover {
    width: 90%;
    height: 100%;
    position: absolute;
    top: 0px;
    border-radius: 25px;
    background: rgba(20, 178, 83, 0.7);
    opacity: 0;
}

#brochures .icon {
    line-height: 40px;
    z-index: 5;
    position: absolute;
    top: calc(50% - 60px);
    left: 50%;
    transform: translate(-50%);
    opacity: 0;
    visibility: hidden;
}

#brochures .icon button {
    background-color: #fff;
    color: #14B253;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 20px;
    width: 100%;
}

#brochures .brochure_box:hover .icon {
    opacity: 1;
    z-index: 20;
    visibility: visible;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #14B253;
    padding: 0 0 10px 0;
    font-size: 14px;
    color: #fff;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #ffffffad;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ffffff85;
    margin-top: 8px;
}

#footer .credits a {
    color: #14B253;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    font-weight: bold;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto;
}

#hrdm .center {
    text-align: center;
}

#footer .social-links a {
    color: #fff;
    padding: 8px 8px;
    margin-right: 5px;
    display: inline-block;
    line-height: 1px;
    font-size: 20px;
}

#footer .social-links a:hover {
    color: #14B253;
    background: #fff;
    border-radius: 50%;
}


/*--------------------------------------------------------------
# Unsubscribe
--------------------------------------------------------------*/

#unsubscribe {
    margin-top: 12%;
    align-content: center;
    text-align: center;
}


/*--------------------------------------------------------------
# Client Part End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Admin Part Start
--------------------------------------------------------------*/

#manage_admin {
    overflow: hidden;
}

#manage_admin .row {
    height: calc(100% - 120px);
    overflow-y: auto;
}

#manage_admin .col-sm-4 {
    background-color: #fff;
    border: 1.5px solid #c4c4c4;
}

#manage_admin .col-sm-4 form {
    margin-top: 5%;
    color: #000;
}

#manage_admin .col-sm-4 form h1 {
    color: #14B253;
}


/*--------------------------------------------------------------
# Admin Part End
--------------------------------------------------------------*/