/********** Template CSS **********/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #1c2900;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -155px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    /* background: url(../img/bg.png) center center no-repeat; */
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(255, 255, 255, .1); */
    background-image: linear-gradient(#667288, #00acec);
    /* clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%); */
    border-radius: 10px;
}

.feature-item .border {
    position: relative;
    /* border-color: rgba(255, 255, 255, .2) !important; */
    z-index: 1;
    border-radius: 10px;
}
.feature-item{
    height: 350px;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.bg-primary-new
{
    background-color: #007bff !important;
}
.border-new
{
    border: 3px solid #acb0a8 !important;
}
.body-new
{
    color:#060606 !important;
}
.container-new
{
    background-color: #fff !important;
}
.center-image {
    display: block;
    margin: 0 auto; /* 0 top/bottom, auto left/right */
  }
  /* ------------my-css------------------- */
  .custome_conatiner{
    padding: 3px 43px !important;
  }
  .FormHeader h3 {
    font-family: Poppins-Regular;
    font-weight: 700;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .FormHeader {
    background: #6689b2;
    padding: 20px 10px;
    text-align: center;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    color: #fff!important;
    font-family: Poppins-Regular;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-contant.request---quote--form{
  border-radius: 12px!important;  
  border: 1px solid #6689b2;
}
.FormHeader.quote--pages span{
    color: #fff!important;
}
.form-box{
    padding: 0px 26px;
}
.FormHeader.quote--pages i{
    color: #fff;
    font-size: 32px;
}
.form-control {
    border: 1px solid #6689b2;
    font-size: 13px;
    font-weight: 500;
}
#customer_form label {
    font-size: 14px !important;
    font-weight: 500;
}
.cust_select_2 .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #444;
    line-height: 35px!important;
}
.cust_select_2 .select2-selection.select2-selection--single{
    height: 39px!important;
}

.cust_select_2 .select2-container .select2-selection--single{
    height: 38px!important;
}
.cust_select_2 .select2-container--default .select2-selection--single{
    background-color: #fff;
    border: 1px solid #6689b2!important;
    border-radius: 4px;
}
.cust_select_2 .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 6px !important;
}
.cust_select_2 .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #6689b2 transparent transparent transparent !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #6689b2!important;
}
.custom_choosefield input::file-selector-button {
	background-image: linear-gradient(
	  to right,
	  #6689b2,
	  #6689b2,
	  #6689b2 100%,
	  #6689b2 200%
	);
	background-position-x: 0%;
	background-size: 200%;
	border: 0;
	border-radius: 3px;
	color: #fff;
	padding: 3px 10px;
}
.custom_choosefield input{
    height: 40px !important;
    padding: 5px 7px !important;
    border-radius: 5px;
    border: 1px solid #6689b2;
}
.shipping-form {
    padding: 6px 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6689b2;
}
.shipping-form h3 i{
    font-size: 23px!important;
}
.shipping-form h3{
    font-family: Poppins-Regular;
    font-weight: 600;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
}
input.hover-center-2 {
    background-image: linear-gradient(0, #6689b2, #6689b2);
    background-size: 0 0;
    transition: .8s;
    background-repeat: no-repeat;
    background-position: center;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    padding: 15px 35px;
    border: 1px solid #6689b2;
    border-radius: 5px;
    font-size: 15px;
    background-color: #fff;
    font-weight: 400;
    color: #6689b2;
}
input.hover-center-2:hover {
    background-size: 100% 100%;
    color: #fff;
}
.submt_div{

    margin-top: 30px;
}
 .back-to-top {
        background-color: #6689b2;
        border-color: #6689b2;
        color: #fff!important;
    }
    .back-to-top:hover {
        background-color: #6689b2;
        border-color: #6689b2;
        color: #fff!important;
    }
    /* .FormHeader .quote--pages span{
color: #fff!important;
} */

@media screen and (max-width: 767px) {
    .custome_conatiner {
        padding: 3px 14px !important;
    }
    .form-box {
        padding: 0px 23px;
    } 
    .cust_select_2 .select2.select2-container.select2-container--default.select2-container--below.select2-container--focus{
        width: auto;
        flex-direction: column;
        display: flex;
    }
}
.myfooter{
    background-image: url("../img/nature_hygine.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 33rem;
    width: 100%;
    position: relative;
}
.landing_container{
    padding: 0px 63px;
}
.footer {
    background: linear-gradient(rgba(0,0,0,0.7),#1a2a36), url("../img/2150756804.jpg");
    background-size: cover; 
    /* background-color: #1a2a36 !important;   */
}
.footer p{
    color: #9B9B9B !important;
}
.quick__Links{
    color: #9B9B9B !important;
}
.footer h5{
 color: #fff!important;
}
.foot_logo_box{
        height: 100px;
        width: 74%;
        background-color: #fff;
}
.foot_logo_box img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.footer .btn.btn-link:hover {
    color: #fff!important;
}
.footer .copyright a:hover {
    color: #fff!important;
}




/* --------------------- */
.about-section img {
    max-width: 100%;
    height: auto;
}
        section {
            padding: 60px 0;
           /* min-height: 100vh;*/
        }
        .about-section .sec-title{
    position:relative;
    z-index: 1;
    margin-bottom:60px;
  }
  
  .about-section .sec-title .title{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #00aeef;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .about-section .sec-title h2{
    position: relative;
    display: block;
    font-size:40px;
    line-height: 1.28em;
    color: #222222;
    font-weight: 600;
    padding-bottom:18px;
  }
  
  .about-section .sec-title h2:before{
    position:absolute;
    content:'';
    left:0px;
    bottom:0px;
    width:50px;
    height:3px;
    background-color:#d1d2d6;
  }
  
  .about-section .sec-title .text{
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
  }
  
  .about-section .sec-title.light h2{
    color: #ffffff;
  }
  
  .about-section .sec-title.text-center h2:before{
    left:50%;
    margin-left: -25px;
  }
  
  .about-section .list-style-one{
    position:relative;
  }
  
  .about-section .list-style-one li{
    position:relative;
    font-size:16px;
    line-height:26px;
    color: #222222;
    font-weight:400;
    padding-left:35px;
    margin-bottom: 12px;
  }
  
  .about-section .list-style-one li:before {
      content: "\f058";
      position: absolute;
      left: 0;
      top: 0px;
      display: block;
      font-size: 18px;
      padding: 0px;
      color: #ff2222;
      font-weight: 600;
      -moz-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      line-height: 1.6;
      font-family: "Font Awesome 5 Free";
  }
  
  .about-section .list-style-one li a:hover{
    color: #44bce2;
  }
  
  .about-section .btn-style-one{
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #00aeef;
  }
  
  .about-section .btn-style-one:hover{
    background-color: #0794c9;
    color: #ffffff;
  }
  .about-section{
    position: relative;
    padding: 171px 0 70px;
    margin-bottom: 89px;
  }
  
  .about-section .sec-title{
    margin-bottom: 45px;
  }
  
  .about-section .content-column{
    position: relative;
    margin-bottom: 50px;
  }
  
  .about-section .content-column .inner-column{
    position: relative;
    padding-left: 30px;
  }
  
  .about-section .text{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
  }
  
  .about-section .list-style-one{
    margin-bottom: 45px;
  }
  
  .about-section .btn-box{
    position: relative;
  }
  
  .about-section .btn-box a{
    padding: 15px 50px;
  }
  
  .about-section .image-column{
    position: relative;
  }
  
  .about-section .image-column .text-layer{
      position: absolute;
      right: -110px;
      top: 50%;
      font-size: 325px;
      line-height: 1em;
      color: #ffffff;
      margin-top: -175px;
      font-weight: 500;
  }
  
  .about-section .image-column .inner-column{
    position: relative;
    padding-left: 80px;
    padding-bottom: 0px;
  }
  .about-section .image-column .inner-column .author-desc{
      position: absolute;
      bottom: 16px;
      z-index: 1;
      background: orange;
      padding: 10px 15px;
      left: 96px;
      width: calc(100% - 152px);
      border-radius: 50px;
  }
  .about-section .image-column .inner-column .author-desc h2{
      font-size: 21px;
      letter-spacing: 1px;
      text-align: center;
      color: #fff;
    margin: 0;
  }
  .about-section .image-column .inner-column .author-desc span{
      font-size: 16px;
      letter-spacing: 6px;
      text-align: center;
      color: #fff;
    display: block;
    font-weight: 400;
  }
  .about-section .image-column .inner-column:before{
      content: '';
      position: absolute;
      width: calc(50% + 80px);
      height: calc(100% + 160px);
      top: -80px;
      left: -3px;
      background: transparent;
      z-index: 0;
      border: 44px solid #00aeef;
  }
  
  .about-section .image-column .image-1{
    position: relative;
  }
  .about-section .image-column .image-2{
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  .about-section .image-column .image-2 img,
  .about-section .image-column .image-1 img{
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
        border-radius: 46px;
  }
  
  .about-section .image-column .video-link{
    position: absolute;
    left: 70px;
    top: 170px;
  }
  
  .about-section .image-column .video-link .link{
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .about-section .image-column .video-link .link:hover{
    background-color: #191e34;
    color: #fff;
  }
  .about-section .lightbox-image::after{
    content:"";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #353c6747;
    border-radius: 49px;
  }
  .about-section .lightbox-image{
    position: relative;
  }


   /* <!-- ---------hero slider--------------------- --> */
   .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .swiper-slide {
    background-size: cover;
    background-position: center;
  }

  .mySwiper2 {
    height: 80%;
    width: 100%;
  }

  .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
  }

  .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
  }

  .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* <!-- ---------hero slider--------------------- --> */
    /* Set the height of the swiper container */
    .swiper-container {
        height: 200px; /* Set your desired height here */
    }

    /* Optional: If you want to adjust the slide content height */
    .swiper-slide {
        height: 100%; /* Adjust as needed */
    }
    .custom__navbar .navbar-brand{
        margin-left: 27px!important;
        padding:0px!important;
        /* margin: 0px!important; */
    }
    .custom__navbar .logo{
        width: 91%;
        max-width: 200px;
        height: auto;
    }
    .custom__navbar .logo {
        width: 118%;
        height: 75px;
    }
    .tnumbnail__box{
        height: 136px;
        width: 100%;
    }
    /* .tnumbnail__box img{
        object-fit: contain!important;
    } */
    .product__iconlab{
        display: flex;
        justify-content: center;
        margin-left: 59px;
        align-items: baseline;
    }
    
    @media screen and (max-width: 767px){
        .about-section {
            position: relative;
            padding: 88px 0 70px;
        }
        .landing_container {
            padding: 0px 18px;
        }   
        .about-section .content-column .inner-column {
            position: relative;
            padding-left: 5px;
            margin-top: 81px;
        }    
        /* .tnumbnail__box img{
            object-fit: cover!important;
        }  */
        .about-section {
            position: relative;
            padding: 88px 0 0px;
            margin-top: 22px;
        }
        .feature-item .border{
            padding: 18px 3px !important;
        }
        .feature-item .border.custom-border{
            padding: 22px 6px !important;
        }
        .thum_custom{
            display: block!important;
        }
        .tnumbnail__box {
            height: 43px;
            width: 100%;
        }
        .custom__navbar .navbar-toggler{
            margin-right: 21px !important;
        }
        .next_cus, .prev_cus{
            display: none;
        }
        .product__iconlab{
            margin-left: 19px;
        }
        .pulse_prd_image::after {
            /* margin-left: 10px; */
            width: 93%!important;
        }
        .pdf_dwnld_btn img {
            height: 68%!important;
            width: 14%!important;
            object-fit: contain!important;
            position: absolute;
            top: 97px;
            right: 34px;
        }

    }


    .feature-item .custom-border{
        padding: 46px 6px !important;
    }
    .thum_custom{
        display: none;
    }
    /* .pulse_prd_image::after {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 95%;
        margin-left: 10px;
        border-radius: 55px;
        content: "";
        background-color: #0000003d;
    } */
    .pulse_prd_image img{
        border-radius: 55px;
    }
    #product_section .col-lg-4.wow.fadeIn{
        position: relative;
    }
    .prdct__sqr{
        border-color: #9779bc !important;
    }
    /* .navbar-nav{
        margin-right: 65px;
    } */
    .undrline{
        width: 63px !important;
    }
    .shopnow-btn{
        background-color: #1355b1;
        color: #fff;
        margin-right: 13px;
    }
    .shopnow-btn:hover{
        background-color: #1355b1;
        color: #fff;
    }
    .navbar .navbar-nav .nav-link.active {
        color: #1355b1 !important;
    }
    .pdf_dwnld_btn{
        padding: 12px;
        height: 78px;
        width: 79px;
    }

    .pdf_dwnld_btn img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

