@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

p {
    margin-bottom: 0px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #50bb19;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Nunito", sans-serif;
    font-weight: 700;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
body{
    font-family: "Montserrat", sans-serif;
}







/*-- Header Top Area --*/
.header-top-area {
    background-color: #50bb19;
}

.header-top-area.header-top-2 {
    background-color: #f0edee;
}

.header-top-area.header-top-2 .short-desc a {
    text-decoration: underline;
    color: #1B1B1C;
}

.header-top-area.header-top-2 .header-top-wrapper .top-close-button {
    margin-top: 0px;
}

.header-top-area.header-top-4 {
    background-color: #f0edee;
}

.header-top-area .header-top-wrapper {
    padding: 10px 0;
    position: relative;
}

.header-top-area .header-top-wrapper .short-desc {
    display: inline-block;
}

.header-top-area .header-top-wrapper .short-desc p {
    display: inline-block;
}

@media (max-width: 479px) {
    .header-top-area .header-top-wrapper .short-desc {
        display: block;
    }
}

.header-top-area .header-top-wrapper .header-top-button {
    display: inline-block;
}

@media (max-width: 479px) {
    .header-top-area .header-top-wrapper .header-top-button {
        display: block;
    }
}

.header-top-area .header-top-wrapper .header-top-button a {
    font-size: 14px;
    
    padding: 5px 20px;
    margin-left: 15px;
    background-color: #50bb19;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 3px;
    display: inline-block;
    line-height: 18px;
    font-weight: 600;
}

.header-top-area .header-top-wrapper .header-top-button a:hover {
    color: #000000;
    border: 1px solid #000000;
}

@media (max-width: 479px) {
    .header-top-area .header-top-wrapper .header-top-button a {
        font-size: 12px;
        padding: 5px 10px;
        margin-left: 10px;
    }
}

.header-top-area .header-top-wrapper .top-close-button {
    float: right;
    margin-left: 0;
    cursor: pointer;
    display: block;
    height: 25px;
    width: 25px;
    line-height: 25px;
    font-size: 16px;
    position: relative;
    margin-top: 2px;
}

@media (max-width: 479px) {
    .header-top-area .header-top-wrapper .top-close-button {
        margin-left: 10px;
        position: absolute;
        top: 10px;
        right: 15px;
    }
}

.header-top-area .header-top-wrapper .email-phone a {
    color: #fff;
    transition: all .4s;
}

.header-top-area .header-top-wrapper .email-phone a:hover {
    color: #000;
}

.header-top-area .header-top-wrapper .email-phone span {
    color: #fff;
    display: inline-block;
    margin: 0 5px;
}

/*-- Main Header Area --*/
.main-header-area .header-logo img {
    max-height: 80px;
}

/* ---Sticky Header--- */
.header-sticky {
    left: 0;
    position: fixed;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
    right: 0;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 99;
    display: none;
}

.header-sticky.sticky {
    -webkit-animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
    animation: 800ms ease-in-out 0s normal none 1 running slideInDown;
    display: block;
}

/* ---Main Menu--- */
.main-nav>ul>li {
    display: inline-block;
    position: relative;
    padding: 20px 0;
}

.main-nav>ul>li:hover .dropdown-hover {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.main-nav>ul>li:hover .dropdown-hover-2 {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.main-nav>ul>li>a {
    display: block;
    padding: 8px 17px;
    font-size: 15px;
    text-transform: capitalize;
    
    font-weight: 600;
    line-height: 18px;
}

.main-nav>ul>li>a.active {
    color: #50bb19;
}

.main-nav>ul>li.active {
    color: #50bb19;
}

.main-nav>ul>li>a i {
    margin-left: 0px;
    font-size: 15px;
    vertical-align: middle;
}

.main-nav>ul>li>a .menu-text {
    position: relative;
}

/*--- Dropdwon ---*/
.dropdown-submenu {
    background: #ffffff;
    padding: 20px 0 24px;
    width: 230px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.dropdown-submenu>li>a {
    padding: 10px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: capitalize;
    
    line-height: 18px;
    position: relative;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-submenu>li>a:hover {
    color: #50bb19;
}

.dropdown-submenu>li>a.active {
    color: #50bb19;
}

.dropdown-submenu>li>a>i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2%;
    font-size: 15px;
    padding-right: 15px;
}

.dropdown-hover {
    position: absolute;
    top: 110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s linear 0.2s;
    -o-transition: all .3s linear 0.2s;
    transition: all .3s linear 0.2s;
    z-index: 999;
}

.dropdown-hover-2 {
    position: absolute;
    top: 110%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s linear 0.2s;
    -o-transition: all .3s linear 0.2s;
    transition: all .3s linear 0.2s;
    z-index: 999;
}

/*--- Mega-Menu ---*/
.mega-menu {
    background: #ffffff;
    width: 750px;
    left: 0;
    padding: 20px 0;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {
    .mega-menu {
        width: 635px;
    }
}

.mega-menu .menu-colum {
    width: 33.333333%;
    padding: 10px;
    float: left;
}

.mega-menu .menu-colum ul li .mega-menu-text {
    position: relative;
    font-size: 18px;
    font-family: "Oswald", sans-serif;
    display: table-caption;
    padding: 0px 20px 0px 0px;
    margin: 0px 0px 10px 20px;
}

.mega-menu .menu-colum ul li .mega-menu-text:after {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    border-bottom: 2px solid #000000;
    content: "";
    z-index: 1;
}

.mega-menu .menu-colum ul li a {
    padding: 10px 20px;
    display: block;
    
    line-height: 20px;
    color: #454545;
    font-size: 14px;
    font-weight: 400;
}

.mega-menu .menu-colum ul li a:hover {
    color: #50bb19;
}

.mega-menu .menu-colum ul li a.active {
    color: #50bb19;
}

/*--- Header Right Area ---*/
.dropdown-language {
    width: 280px;
    padding: 20px 25px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.header-right-area.main-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-right-area.main-nav>ul {
    position: relative;
}

.header-right-area.main-nav>ul>li {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right-area.main-nav>ul>li>span {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.header-right-area.main-nav>ul>li>span:before {
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    content: "";
    position: absolute;
    background-color: #000000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-right-area.main-nav>ul>li>span:first-child {
    padding: 0px;
    margin: 0px;
}

.header-right-area.main-nav>ul>li>span:first-child:before {
    display: none;
}

.header-right-area.main-nav>ul>li>a {
    padding: 4px 0px;
}

.header-right-area.main-nav>ul>li.login-register-wrap {
    margin-right: 25px;
}

.header-right-area.main-nav>ul>li.login-register-wrap a.active {
    color: #50bb19;
}

.header-right-area.main-nav>ul>li.sidemenu-wrap {
    margin-right: 30px;
}

@media (max-width: 991px) {
    .header-right-area.main-nav>ul>li.minicart-wrap {
        margin-right: 30px;
    }
}

.header-right-area.main-nav>ul>li.minicart-wrap .minicart-btn {
    position: relative;
}

.header-right-area.main-nav>ul>li.minicart-wrap .minicart-btn i {
    font-size: 25px;
    line-height: 1;
    color: #1B1B1C;
}

.header-right-area.main-nav>ul>li.minicart-wrap .minicart-btn .cart-item_count {
    background-color: #1B1B1C;
    border-radius: 50%;
    color: #ffffff;
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 20px;
    height: 20px;
    width: 20px;
    position: absolute;
    left: -10px;
    top: 0;
}

.header-right-area.main-nav>ul>li.mobile-menu-btn a i {
    font-size: 20px;
}

.header-right-area .cart-item-wrapper {
    padding: 25px 20px;
    width: 350px;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

@media (max-width: 479px) {
    .header-right-area .cart-item-wrapper {
        width: 288px;
    }
}

.header-right-area .cart-item-wrapper .single-cart-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-img {
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-right: 15px;
    -webkit-flex-basis: 80px;
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
    width: 80px;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text {
    -webkit-flex-basis: calc(100% - 95px);
    -ms-flex-preferred-size: calc(100% - 95px);
    flex-basis: calc(100% - 95px);
    width: calc(100% - 95px);
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .cart-text-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .cart-text-btn .cart-qty {
    font-size: 15px;
    font-weight: 600;
    color: #303030;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .cart-text-btn .cart-price {
    font-size: 15px;
    font-weight: 600;
    color: #50bb19;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .cart-text-btn button {
    font-size: 18px;
    color: #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header-right-area .cart-item-wrapper .single-cart-item .cart-text .cart-text-btn button:hover {
    color: #50bb19;
}

.header-right-area .cart-item-wrapper .cart-price-total {
    font-size: 20px;
    padding: 20px 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin: 20px 0;
}

.header-right-area .cart-item-wrapper .cart-links a:not(:last-child) {
    margin-right: 5px;
}

/*----- Offcanvas start -----*/
.mobile-navigation {
    overflow: hidden;
    max-height: 500px;
    padding: 30px;
}

.mobile-navigation nav {
    height: 100%;
}

.mobile-menu {
    height: 100%;
    overflow: auto;
    padding-right: 30px;
    margin-right: -30px;
}

.off-canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 9999;
}

.off-canvas-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.off-canvas-wrapper.open .off-canvas-inner-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.off-canvas-wrapper .off-canvas-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.off-canvas-wrapper .off-canvas-inner-content {
    background-color: #fff;
    width: 300px;
    height: 100%;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 50px));
    -ms-transform: translateX(calc(-100% - 50px));
    transform: translateX(calc(-100% - 50px));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.off-canvas-wrapper .btn-close-off-canvas {
    top: 0;
    left: 100%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    background-color: #000000;
    color: #fff;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.off-canvas-wrapper .btn-close-off-canvas i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.off-canvas-wrapper .btn-close-off-canvas:hover i {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.off-canvas-wrapper .off-canvas-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    height: 100%;
}

@media only screen and (max-width: 479.98px) {
    .off-canvas-wrapper .off-canvas-inner-content {
        width: 260px;
    }
}

.offcanvas-curreny-lang-support {
    margin: 40px 0 0 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 15px;
    padding: 30px;
}

.offcanvas-curreny-lang-support.header-top-settings ul li {
    color: #333;
    font-size: 14px;
}

.offcanvas-account-container li {
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    margin-bottom: 2px;
}

.offcanvas-account-container li::before {
    content: "\2022";
    color: #777;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.offcanvas-widget-area {
    margin-top: auto;
    padding: 30px;
}

.offcanvas-widget-area .top-info-wrap ul li i {
    margin-right: 5px;
}

.offcanvas-widget-area .off-canvas-widget-social {
    margin-top: 20px;
}

.offcanvas-widget-area .off-canvas-widget-social a {
    font-size: 14px;
    color: #1B1B1C;
    margin: 0 10px;
}

.offcanvas-widget-area .off-canvas-widget-social a:first-child {
    margin-left: 0;
}

.offcanvas-widget-area .off-canvas-widget-social a:last-child {
    margin-right: 0;
}

/*---------------------------
      - Mobile Menu Css
  -----------------------------*/
.mobile-header .category-toggle {
    padding: 8px 15px;
}

.mobile-menu-btn .off-canvas-btn {
    font-size: 22px;
    cursor: pointer;
    padding: 0px 12px;
    line-height: 1;
    padding-right: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    margin-top: -3px;
}

.mobile-menu li>a {
    font-size: 15px;
    color: #252525;
    text-transform: capitalize;
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-weight: 600;
}

.mobile-menu li>a:hover {
    color: #000000;
}

.mobile-menu li ul li {
    border: none;
}

.mobile-menu li ul li a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 15px 8px;
    font-weight: 400;
}

.mobile-menu .has-children,
.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .has-children .menu-expand,
.mobile-menu .menu-item-has-children .menu-expand {
    line-height: 50;
    top: -5px;
    left: 95%;
    width: 30px;
    position: absolute;
    height: 50px;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 767px) {

    .mobile-menu .has-children .menu-expand,
    .mobile-menu .menu-item-has-children .menu-expand {
        left: 90%;
    }
}

.mobile-menu .has-children .menu-expand i,
.mobile-menu .menu-item-has-children .menu-expand i {
    display: block;
    position: relative;
    width: 10px;
    margin-top: 25px;
    border-bottom: 1px solid #252525;
    -webkit-transition: all 250ms ease-out;
    -o-transition: all 250ms ease-out;
    transition: all 250ms ease-out;
}

.mobile-menu .has-children .menu-expand i:before,
.mobile-menu .menu-item-has-children .menu-expand i:before {
    top: 0;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-bottom: 1px solid #252525;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.mobile-menu .has-children.active>.menu-expand i:before,
.mobile-menu .menu-item-has-children.active>.menu-expand i:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.search-box-offcanvas {
    margin-bottom: 10px;
}

.search-box-offcanvas form {
    position: relative;
}

.search-box-offcanvas form input {
    color: #666;
    font-size: 13px;
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 40px 0 10px;
    background-color: #f2f2f2;
}

.search-box-offcanvas form .search-btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #aaa;
    position: absolute;
    background: #f2f2f2;
    border: none;
}

/* swiper slider */
.swiper_slider_1 .img img {
    width: 100%;
    max-height: 80vh;
    height: 80vh;
    object-fit: cover;
}

.swiper_slider_1 .swiper-button-next:after,
.swiper_slider_1 .swiper-button-prev:after {
    display: none;
}

.swiper_slider_1 .swiper-button-next i,
.swiper_slider_1 .swiper-button-prev i {
    color: #fff;
    font-size: 30px;
}

.swiper_slider_1 .swiper-button-next,
.swiper_slider_1 .swiper-button-prev {
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    padding: 0;
}

.swiper_slider_1 .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .7;
    position: relative;
    margin: 0 5px !important;
}

.swiper_slider_1 .swiper-pagination-bullet:after {
    content: '';
    width: 17px;
    height: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    border-radius: 50%;
}

.swiper_slider_1 .swiper-pagination-bullet-active.swiper-pagination-bullet {
    background-color: #50bb19;
    opacity: 1;
}

.swiper_slider_1 .swiper-pagination-bullet-active.swiper-pagination-bullet:after {
    border: 1px solid #50bb19;
}

/* about  */
.about_company {
    margin-top: 80px;
}

.about_company .title {
    text-align: center;
}

.about_company .title h2 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

.about_company .title h2::after {
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}

.about_company .content h3 {
    text-transform: capitalize;
    font-size: 24px;
    margin-bottom: 20px;
}

.about_company .content p:last-child {
    margin-top: 10px;
}

/* services */
#services{
    margin-top: 80px;
}
#services .content{
    display: flex;
    align-items: center;
}
#services .content .img{
    flex: 80px;
}
#services .content .img img{
    width: 50px;
}
#services .content .des{
    padding-left: 15px;
}
#services .content .des h4{
    margin-bottom: 10px;
    text-transform: capitalize;
}
/* product */
#product_section{
    margin-top: 80px;
}

#product_section .title {
    text-align: center;
}

#product_section .title h2 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

#product_section .title h2::after {
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}

#product_section .product img{
    width: 100%;
    min-height: 240px;
    object-fit: cover;
}

#product_section .product h3{
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 16px;
    background-color: #f3f3f3;
    padding: 15px;
    text-align: center;
    transition: all .4s;
}
#product_section .product:hover h3{
    background-color: #50bb19;
    color: #fff;
}
#product_section .product{
    margin-bottom: 30px;
    transition: all .4s;
}


/* product_certificate */
#product_certificate{
    margin-top: 80px;
    margin-bottom: 80px;
}

#product_certificate .title {
    text-align: center;
}

#product_certificate .title h2 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}

#product_certificate .title h2::after {
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}
#product_certificate .img{
    text-align: center;
}
#product_certificate .img img{
    max-width: 100px;
}

/* footer */
#footer{
    background: #1b1b1b;
    padding-top: 80px;
}
#footer .column img{
    max-width: 100px;
    margin-bottom: 20px;
}
#footer .column p{
    color: #a4a4a4;
}
#footer .column h3{
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
}
#footer .column ul li a{
    color: #a4a4a4;
    display: inline-block;
    margin-bottom: 10px;
    transition: all .4s;
    text-transform: capitalize;
}
#footer .column ul li a i{
    padding-right: 10px;
    transition: all .4s;
}
#footer .column ul li a:hover i{
    padding-right: 15px;
    color: #50bb19;
}
#footer .column ul li a:hover{
    color: #50bb19;
}
#footer .column .phone span,
#footer .column .phone a,
#footer .column .email span,
#footer .column .email a{
    display: block;
    color: #a4a4a4;
    transition: all .4s;
}
#footer .column .phone a:hover,
#footer .column .email a:hover{
    color: #50bb19;
}
#footer .column .phone,
#footer .column .email{
    margin-bottom: 15px;
}
#footer .column .address span{
    color: #a4a4a4;
    text-transform: capitalize;
}
#footer .column .social{
    display: flex;
    margin-top: 20px;
}
#footer .column .social li{
    margin-right: 10px;
}
#footer .column .social li:last-child{
    margin: 0;
}
#footer .column .social li a{
    margin: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #a4a4a4;
    text-align: center;
    display: block;
    line-height: 32px;
    border-radius: 50%;
}
#footer .column .social li i{
    padding: 0;
}
#footer .copyright{
    background: #000;
    padding: 30px 0;
    margin-top: 80px;
}
#footer .copyright p{
    color: #fff;
    text-align: center;
}

/* chatbot */
.social_media_chatbot .chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    animation: bounce 2s infinite;
    background-color: #50bb19;
    color: #fff;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 111;
}
.social_media_chatbot .social-media {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-width: 230px;
    padding: 5px 0;
    z-index: 111;
}
.social_media_chatbot .social-media a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 10px 20px;
    transition: all .4s;
}
.social_media_chatbot .social-media a:hover{
    background-color: #eeeeee;
}
.social_media_chatbot .social-media a:last-child{
    margin-bottom: 0;
}
.social_media_chatbot .social-media a .chat{
    display: flex;
    align-items: center;
}
.social_media_chatbot .social-media a .icon{
    flex: 0 0 35px;
    font-size: 13px;
    width: 35px;
    height: 35px;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_media_chatbot .social-media a .whatsapp .icon{
    background-color: #25D366;
}
.social_media_chatbot .social-media a .twitter .icon{
    background-color: #000;
}
.social_media_chatbot .social-media a .facebook .icon{
    background-color: #1877F2;
}
.social_media_chatbot .social-media .des {
    margin-left: 10px;
}
.social_media_chatbot .social-media .des h3{
    margin: 0;
    text-transform: capitalize;
    font-size: 16px;
}
.social_media_chatbot .social-media .des span{
    color: #777;
    font-size: 14px;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* back to top */
#backToTop{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #50bb19;
    width: 50px;
    height: 50px;
    z-index: 111;
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 30px;
    cursor: pointer;
}

/* breadcrums */
#breadcrums{
    background: url(../../assets/img/breadcrums-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
}
#breadcrums::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255, 255, 255, .5);*/
    background: rgb(255 255 255 / 77%);
    pointer-events: none;
}
#breadcrums .heading{
    position: relative;
    z-index: 1;
    text-align: center;
}
#breadcrums .heading h2{
    text-transform: capitalize;
    margin-bottom: 20px;
}
#breadcrums .heading ul{
    display: flex;
    justify-content: center;
    text-transform: capitalize;
}
#breadcrums .heading ul li:nth-child(2){
    padding: 0 10px;
}
#breadcrums .heading ul li:first-child{
    font-weight: 600;
}
#breadcrums .heading ul li:last-child{
    color: #50bb19;
    font-weight: 600;
}

/* text image */
#text_img{
    margin-top: 80px;
}
#text_img .content h2{
    margin-bottom: 20px;
}
#text_img .content p{
    margin-bottom: 10px;
}

/* our misson */
#our_mission{
    margin: 80px 0;
}
#our_mission .title{
    text-align: center;
}
#our_mission .title h2{
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
#our_mission .title h2::after {
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}
#our_mission .content{
    border: 1px solid #ccc;
    padding: 40px 30px;
}
#our_mission .content .icon i{
    font-size: 40px;
    margin-bottom: 20px;
    color: #50bb19;
}
#our_mission .content h3{
    text-transform: capitalize;
    margin-bottom: 10px;
}
#award_slider{
    margin: 80px 0;
}

/* contact form */
#contact_detail{
    margin-top: 80px;
}
#contact_detail .contant{
    text-align: center;
    padding: 50px 30px;
    border: 1px solid #ccc;
    min-height: 290px;
}
#contact_detail .contant .icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 1px solid #50bb19;
    color: #50bb19;
    line-height: 60px;
    font-size: 24px;
    border-radius: 50%;
    transition: all .4s;
}
#contact_detail .contant h3{
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
#contact_detail .contant a{
    display: block;
    transition: all .4s;
}
#contact_detail .contant:hover .icon{
    color: #fff;
    background-color: #50bb19;
}

/* contact form */
#contact_form{
    margin-top: 80px;
}
#contact_form .title{
    text-align: center;
}
#contact_form .title h2{
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
#contact_form .title h2:after{
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}
#contact_form form input{
    border-radius: 0;
    padding: 10px;
}
#contact_form form textarea{
    border-radius: 0;
}
#contact_form form .form-control:focus{
    border-color: #50bb19;
    box-shadow: 0 0 0 .25rem rgba(80, 187, 25, .20);
}
#contact_form form button.btn{
    padding: 10px 30px;
    border-radius: 0;
    background-color: #50bb19;
    border-color: #50bb19;
    transition: all .4s;
}
#contact_form form button.btn:hover{
    background-color: #096233;
    border-color: #096233;
}
#map{
    margin-top: 80px;
}


/* product page */
#main_product{
    margin: 80px 0;
}
#main_product .category h3{
    margin-bottom: 30px;
    font-size: 22px;
}

#main_product nav > ul{
    overflow: hidden;
} 
#main_product nav ul li a{
    width: 100%;
    transition: all .4s;
}
#main_product nav ul li a:hover{
    color: #50bb19;
}

#main_product nav ul li.active a{
    color: #50bb19;
}

#main_product .product{
    margin-bottom: 30px;
    transition: all .4s;
}
#main_product .product img {
    width: 100%;
    object-fit: cover;
}
#main_product .product h3 {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 16px;
    background-color: #f3f3f3;
    padding: 15px;
    text-align: center;
    transition: all .4s;
}
#main_product .product:hover h3{
    background-color: #50bb19;
    color: #fff;
}

/* product detail */
#product_detail{
    margin-top: 80px;
    margin-bottom: 80px;
}
#product_detail .contant{
    position: relative;
}
#product_detail .contant h2{
    font-size: 30px;
    margin-bottom: 10px;
}
#product_detail .contant p{
    margin-bottom: 20px;
}
#product_detail .contant .packing_detail h3{
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 20px;
}
#product_detail .contant .packing_detail ul{
    margin-bottom: 20px;
}
#product_detail .contant .packing_detail ul li{
    margin-bottom: 5px;
    text-transform: capitalize;
}
#product_detail .contant .packing_detail ul li span{
    font-weight: 600;
    margin-right: 5px;
}
#product_detail .contant a.btn{
    border-radius: 0;
    background-color: #50bb19;
    border-color: #50bb19;
    padding: 10px 25px;
    text-transform: capitalize;
    font-weight: 600;
}
#product_detail .specification{
    margin-top: 30px;
}
#product_detail .specification ul li{
    margin-bottom: 5px;
}
/* gallery page */
#gallery{
    margin-top: 80px;
    margin-bottom: 50px;
}
#gallery .img,
#gallery .video{
    position: relative;
    /*margin-bottom: 30px;*/
    overflow: hidden;
    height:100%;
}
#gallery .img img{
    width: 100%;
    transition: all .4s;
}
#gallery .img .text{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    opacity: 0;
    transition: all .4s;
}
#gallery .img:hover .text{
    opacity: 1;
}
#gallery .img .text p{
    font-size: 12px;
}
#gallery .img .text h3{
    margin-bottom: 5px;
    text-transform: capitalize;
    font-size: 20px;
}
#gallery .video .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #fff;
    background: #50bb19;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    z-index: 1;
    animation: 1.5s infinite play-btnPulse;
}
@keyframes play-btnPulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,.7);
        box-shadow: 0 0 0 0 rgba(255,255,255,.7)
    }

    100% {
        -webkit-box-shadow: 0 0 0 2em rgba(255,255,255,0);
        box-shadow: 0 0 0 2em rgba(255,255,255,0)
    }
}
/*#gallery .video:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*}*/

#gallery .video iframe{
    min-height: 225px;
}
#gallery .img:hover img{
    transform: scale(1.2);
}

/* export */
#export_page{
    margin-top: 80px;
}
#export_page .content h2{
    margin-bottom: 10px;
}
#export_page .content p{
    margin-bottom: 10px;
}
#netword{
    margin-top: 80px;
    margin-bottom: 50px;
}
#netword .title {
    text-align: center;
}
#netword .title h2 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
    text-transform: capitalize;
}
#netword .title h2::after {
    border-bottom: 3px solid #50bb19;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}
#netword .img {
    margin-bottom: 30px;
}
#netword .img img{
    height: 100px;
    object-fit: cover;
    width: 100%;
}
#netword .img p{
    text-align: center;
    margin-top: 10px;
}
@media (max-width: 991px) {
    .header-top-area .header-top-wrapper .email-phone {
        display: none !important;
    }

    .header-top-area .header-top-wrapper {
        justify-content: center !important;
    }

    .header-top-area .header-top-wrapper .short-desc {
        padding: 0 10px;
    }
    .about_company .content{
        margin-bottom: 30px;
    }
    #services .content{
        margin-bottom: 30px;
    }
    #services .col-lg-4:last-child .content{
        margin-bottom: 0;
    }
    #footer .column.first,
    #footer .column.second{
        margin-bottom: 30px;
    }
    #text_img .content {
        margin-bottom: 20px;
    }
    #our_mission .content{
        margin-bottom: 30px;
    }
    #our_mission .col-lg-4:last-child .content{
        margin-bottom: 0;
    }
    .quality .content{
        margin-bottom: 0;
        margin-top: 30px;
    }
    #contact_detail .contant{
        margin-bottom: 30px;
    }
    #contact_detail .col-lg-4:last-child .content{
        margin-bottom: 0px;
    }
    #main_product .category{
        margin-bottom: 30px;
    }
    #product_detail .contant{
        margin-top: 30px;
    }
}

@media (max-width: 576px){
    #services .content .img{
        flex: none;
    }
    #footer .column.third{
        margin-bottom: 30px;
    }
}

/*===================================================*/

#product_detail .carousel .carousel-indicators button{
    text-indent: unset;
    margin: 0 10px;
    width: 120px;
    height: auto;
    opacity: 1;
    border: 3px solid #f3f3f3;
}
#product_detail .carousel .carousel-indicators button[aria-current="true"]{
    border-color: #50bb19;
}
#product_detail .carousel-indicators{
    position: relative;
    bottom: 0;
    margin: 0;
    margin-top: 30px;
}