/* Hide the toggle menu on larger devices */
@media (min-width: 1024px) {
    #menu-toggle {
        display: none;
    }
}























/* General Pagination Styles */

.pagination {
    text-align: center;
    margin-top: 30px;
    padding: 10px;
}

.pagination a,
.pagination .current-page {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

/* Hover effect for links */
.pagination a:hover {
    background-color: #0056b3;
}

/* Style for the current page */
.pagination .current-page {
    background-color: #343a40;
    color: white;
    font-weight: bold;
}

/* Style for previous and next buttons */
.pagination .prev,
.pagination .next {
    font-size: 16px;
    padding: 8px 16px;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #218838;
}

/* Optional: Add a hover effect for the current page (though not needed for this use case) */
.pagination .current-page:hover {
    background-color: #343a40;
    color: white;
}









/*  Product visual search */


.icon-overlay{
visibility:hidden;
}




/*  Product Section Styling */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.card {
  background-color: #ffffff;
  border: 1px solid green;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.icon-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}








.details-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #25D366;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.details-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color:; /* Example shaded color */
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.details-btn:hover {
  background-color:#f0f0f0; /* Example tinted color */
  color: #ffffff;
}

.details-btn:hover span {
  width: 225%;
  height: 225%;
}

.details-btn:active {
  background-color:  #DBF7F3; /* Example original color */
}









.details-btn:hover {
  background-color:;
}

.details-btn .arrow {
  font-weight: bold;
  margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}




.product-page{
margin-top:90px;
}

@media (max-width: 768px) {
.product-page{
margin-top:120px;
}
}

@media (max-width: 992px) {
.product-page{
margin-top:125px;
}
}


@media (max-width:1024px) {
.product-page{
margin-top:200px;
}
}












/* Default Product Card Styling */
.product-card {
    max-width: 200px;
    text-align: center;
    margin: 10px;
    box-sizing: border-box;
}

/* Adjust Carousel Items for Smaller Screens */
@media (max-width: 768px) { /* For devices with width <= 768px */
    .carousel-inner .carousel-item {
        display: flex;
        justify-content: center;
    }

    .product-card {
        flex: 0 0 100%; /* Each product takes full width */
        max-width: 100%;
        margin: 0 auto;
    }
}
















.navbar-inner {
        padding: 0;
        background: white;
        border-radius: 4px;
    }
    .sticky .navbar-inner{
        background: #fff0 !important;
    }







#whatsappchat{
visibility:hidden;
}






  .features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
  }

  .feature-column {
    flex: 1 1 calc(20% - 15px); /* Five items per row */
    max-width: calc(20% - 15px);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
  }

  .feature-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .feature-column h3 {
    margin-top: 10px;
    font-size: 1em;
    color: #333;
  }

  .feature-column p {
    color: #666;
    font-size: 0.9em;
    margin-top: 6px;
  }

  /* Three columns for tablets */
  @media (max-width: 992px) {
    .feature-column {
      flex: 1 1 calc(33.333% - 15px); /* Three items per row */
      max-width: calc(33.333% - 15px);
    }
  }

  /* Single column for mobile devices */
  @media (max-width: 600px) {
    .feature-column {
      flex: 1 1 100%; /* Single item per row */
      max-width: 100%;
    }
  }


:root {
    --primary:white;
    --secondary:#F9E789;
    --dark:#001317;
    --light:#CFFFE5;
    --font2: 'Exo', sans-serif;

}



* {
    outline: 0!important
}

body {
    font-family: 'Khula', sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: var(--dark);
    font-size: 16px;
    
    background-size:45px auto;
}

html a {
    -webkit-transition: all .5s;
    transition: all .5s;
    color: var(--primary);
    text-decoration:none;
}
html a:hover {
    color:var(--dark);
    text-decoration:none;
}
svg,
img {
    max-width: 100%;
    height:auto;
    width:auto;
}
html .container {
    max-width: 1330px
}
section{
    position: relative;
    padding-top: 110px;
    padding-bottom: 110px;
    z-index:1;
}
p {
    line-height:130%;
}
p:last-child{
    margin-bottom:0;
}
#wrapper {
    overflow: hidden;
    max-width: 100%;
}
::selection{
    color:#fff;
    background:var(--primary);
}
input[type='file']::-webkit-file-upload-button {
    cursor:pointer; 
}
input[type='file']::-moz-file-upload-button {
    cursor:pointer; 
}
input[type='file']::-ms-file-upload-button {
    cursor:pointer; 
}
input[type='file']::-o-file-upload-button {
    cursor:pointer; 
}
input[type='file'] {
    cursor:pointer; 
}
b, strong {
    font-weight: 700;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--font2);
    font-weight: 700;
}
/* Custom Styles Close*/
/* Loaded Styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader {
    z-index: 9999;
    max-width: 280px;
}
#loader span{
    color: var(--white);
    margin: 26px 0 0 0;
    display: none;
    font-size: 26px;
}
#loader-wrapper .loader-section-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    left: 0;
    display: flex;
}
#loader-wrapper .loader-section {
    transform-origin:left center;
    background: white;
    flex-grow:1;
}
.loaded #loader-wrapper .loader-section-wrap .loader-section {
    -webkit-transform:rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}
#loader span.cube-face img{
    margin-top: 30px;
}
#loader span.cube-face {
    display: block;
    margin-top: 120px;
    color: var(--dark);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 3px;
}
div#loader {
    z-index: 99999;
}
.loader-style-1 {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.5s 0.1s;
    transition: transform 0.5s 0.1s;
    perspective: 9999px;
    color: var(--dark);
    margin: -40px 0 0 -40px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -37px;
    top: 65px;
    opacity: 1;
}
.loader-style-1.panelLoad {
    z-index: 11;
    top: 55%;
    margin-top: -60px;
    -webkit-animation: panel 2.2s infinite forwards;
    animation: panel 2.2s infinite forwards;
}
.loader-style-1.panelLoad .cube-face {
    color:var(--dark);
    box-shadow: inset 0 0 0 1px var(--dark), 0 0 1px 1px var(--dark);
}
.loader-style-1 .cube-face {
    width: inherit;
    height: inherit;
    position: absolute;
    background: white;
    box-shadow: inset 0 0 0 1px var(--dark), 0 0 1px 1px var(--dark);
    opacity: 1;
    font-weight: 500;
    font-family: var(--font2);
}
.loader-style-1 .cube-face-front {
    transform: translate3d(0, 0, 40px);
    -webkit-transform: translate3d(0, 0, 40px);
    font-size: 30px;
}
.loader-style-1 .cube-face-back {
    -webkit-transform: rotateY(180deg) translate3d(0, 0, 40px);
    transform: rotateY(180deg) translate3d(0, 0, 40px);
}
.loader-style-1 .cube-face-left {
    -webkit-transform: rotateY(-90deg) translate3d(0, 0, 40px);
    transform: rotateY(-90deg) translate3d(0, 0, 40px);
}
.loader-style-1 .cube-face-right {
    -webkit-transform: rotateY(90deg) translate3d(0, 0, 40px);
    transform: rotateY(90deg) translate3d(0, 0, 40px);
}
.loader-style-1 .cube-face-top {
    -webkit-transform: rotateX(90deg) translate3d(0, 0, 40px);
    transform: rotateX(90deg) translate3d(0, 0, 40px);
}
.loader-style-1 .cube-face-bottom {
    -webkit-transform: rotateX(-90deg) translate3d(0, 0, 40px);
    transform: rotateX(-90deg) translate3d(0, 0, 40px);
}
@keyframes panel {
    0% {
        -webkit-transform: rotateY(0deg) rotateZ(0deg);
        transform: rotateY(0deg) rotateZ(0deg);
    }
    20% {
        -webkit-transform: rotateY(90deg) rotateZ(0deg);
        transform: rotateY(90deg) rotateZ(0deg);
    }
    40% {
        -webkit-transform: rotateX(45deg) rotateZ(45deg);
        transform: rotateX(45deg) rotateZ(45deg);
    }
    60% {
        -webkit-transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
        transform: rotateX(90deg) rotateY(180deg) rotateX(90deg);
    }
    80% {
        -webkit-transform: rotateX(310deg) rotateZ(230deg);
        transform: rotateX(310deg) rotateZ(230deg);
    }
    100% {
        -webkit-transform: rotateX(360deg) rotateZ(360deg);
        transform: rotateX(360deg) rotateZ(360deg);
    }
}
/* Loaded Styles Close*/

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 991;
    transition: all 0.5s;
    padding: 20px 40px;
    background:#fff;
}
.sticky header {
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    background:#fff;
    padding-top: 10px;
    padding-bottom: 10px;
}   





header .logo {
    max-width:250px;
    display: block;
}
.sticky header .logo {
    max-width:250px;
}

header .navbar {
    padding: 0;
    position: static;
    display: flex;
}
header .navbar-nav > li > a.home-menu >  svg {
    width: 28px;
}







header .navbar-nav {
    display: flex;
    align-items:center;
    flex-direction:row;
}


@media (max-width: 768px) {
    header .navbar-nav {
        flex-direction: column; /* Arrange items vertically */
        align-items: flex-start; /* Optional: align items to the left */
    }
}



@media (max-width: 991px) {
    header .navbar-nav {
        flex-direction: column; /* Arrange items vertically */
        align-items: flex-start; /* Optional: align items to the left */
    }
}





header .navbar-nav > li{
    display:inline-block;
    position:relative;
    vertical-align:top;
    text-align:left;
  
}
header .navbar-nav > li + li {
    /*margin-left: 35px;*/
    margin-left: 20px;
}
header .navbar-nav > li > a {
  
  color: var(--dark);
    font-size: 16px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    padding: 0 10px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: var(--font2);
}
header .navbar-nav > li:hover > a, 
header .navbar-nav > li.active > a,
header .navbar-nav > li > a.active {
    color:var(--primary);
}
header .navbar-nav > li > a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -32px;
    height: 4px;
    background:var(--primary);
    border-radius: 5px;
    transition:all 0.3s;
    width:0;
    margin:auto;
}
header .navbar-nav > li:hover > a:before, 
header .navbar-nav > li.active > a:before {
    width:100%;
}
.sticky header .navbar-nav > li > a:before {
    top: -17px;
}
header .navbar-nav > li ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    border-radius: 0;
    min-width: 240px;
    margin: 25px 0 0 0;
    padding:10px;
    transition: all 0.1s;
    border-top: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px  6px 0 rgba(0,0,0,0.1);
}
header .navbar-nav > li:hover > ul {
    transition: all 0.5s;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
header .navbar-nav > li ul li {
    margin-bottom: 3px;
    position: relative;
}
header .navbar-nav > li ul li:last-child {
    margin-bottom: 0;
}
header .navbar-nav > li ul li > a {
    display: block;
    color: var(--dark);
    font-size: 14px;
    line-height: 120%;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: var(--font2);
    font-weight: 600;
}
header .navbar-nav > li ul li.active > a,
header .navbar-nav > li ul li:hover > a,
header .navbar-nav > li ul li > a:hover {
    color: var(--dark);
    background-color:#CFFFE5;
}
header .navbar-nav > li ul ul {
    left: 100%;
    top: 0;
    margin: 0 0 0 20px;
}
header .navbar-nav > li ul li:hover > ul {
    transition: all 0.5s;
    opacity: 1;
    visibility: visible;
    margin-left: 0;
}
header .navbar-nav > li.parent-menu > a:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-right: 3px solid;
    border-bottom: 3px solid;
    transform: rotate(45deg);
    margin: 13px 0 0 8px;
}
header .navbar-nav li .plus-icon {
    display: none;
}














html:not(.sticky) header.header-light .logo {
    
}
html:not(.sticky) header.header-light .navbar-nav > li > a {
    color: black;

}

html:not(.sticky) header.header-light .navbar-nav > li > a:hover {
    color:#25D366;
}
html:not(.sticky) header .navbar-nav > li > a:before{
    background-color: #fff;
}
















.header-btn {
    background: var(--dark);
    color: #fff;
    line-height: 44px;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    padding: 0 25px;
    font-weight: 600;
    font-family: var(--font2);
}
.header-btn:hover {
    background: var(--primary);
    color: #fff;
}
.header-right {
    display: flex;
    align-items: center;
}
.toggle-menu {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    border: 0;
    background:transparent;
    position: relative;

}
.toggle-menu span {
    display: block;
    height:2px;
    background: var(--dark);
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 28px;
    border-radius: 5px;
    transition:all 0.5s;
    transform-origin:left center;
    
}
.toggle-menu span:nth-child(1) {
    top: -16px;
    width: 14px;
}
.toggle-menu span:nth-child(3) {
    top: 16px;
    width: 20px;
}
.toggle-menu:hover span:nth-child(1),
.toggle-menu:hover span:nth-child(3),
.menu-show .toggle-menu span:nth-child(1),
.menu-show .toggle-menu span:nth-child(3){
    width: 28px;
}
.menu-show .toggle-menu span:nth-child(1){
    transform:rotate(45deg);
    top:-19px;
}
.menu-show .toggle-menu span:nth-child(2){
    width:0;
    opacity: 0;
}
.menu-show .toggle-menu span:nth-child(3){
    transform:rotate(-45deg);
    top:19px;
}

.header-center {
    margin-left: 50px;
}











.header-info {
    display:none;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 350px;
    background: #fff;
    z-index: 99;
    border-left: 1px solid #ddd;
    padding: 35px;
    overflow: auto;
    transition:all 0.3s;
    transform: translatex(100%);
   
}


@media (min-width:1280px) {
    .header-info {
        display: block; /* Show on devices wider than 768px */
        visibility:visible;
    }
}

@media (min-width: 769px) {
    .header-info {
        display: none; /* Show on devices wider than 768px */
        visibility:visible;
    }
}

@media screen and (max-height: 480px) {
.header-info{
    display:none;
}
}

@media screen and (max-height: 768px) {
.header-info{
    display:none;
}
}


@media screen and (max-height: 480px) {
.header-info{
    display:none;
}
}








.header-info-show .header-info {
    transform: translatex(0);
}
.header-info-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 99;
    backdrop-filter: saturate(180%) blur(7px);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.header-info-show .header-info-overlay{
    opacity: 1;
    visibility: visible;
}
.header-info-close {
    width: 40px;
    height: 40px;
    margin: 0 0 20px auto;
    position: relative;
    cursor: pointer;
    transition:all 0.4s;
}
.header-info-close:hover{
    transform:scale(0.9);
}
.header-info-close:before, .header-info-close:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36px;
    height: 1.5px;
    background: var(--dark);
    border-radius: 5px;
    transform: rotate(45deg);
    margin: auto;
}
.header-info-close:after {
    transform: rotate(-45deg);
}
.header-info h3 {
    margin: 0 0 25px;
    font-size: 26px;
}
.header-info h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
    margin-top: 12px;
}
.header-info ul.social-info {
    margin-top: 50px;
}
.header-info ul.footer-info a {
    color: var(--dark);
}
.header-info ul.footer-info a:hover {
    color: var(--primary);
}

ul.social-info {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
ul.social-info li {
    margin: 0 10px 10px 0;
}
ul.social-info li:last-child {
    margin-right:0;
}
ul.social-info li a {
    width: 38px;
    height: 38px;
    display: flex;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 8px;
    align-items: center;
    justify-content: center;
    color: #555;
    transition:all 0.3s;
}
ul.social-info li a svg {
    display: block;
    max-height: 100%;
}
ul.social-info li a:hover {
    color:#fff;
    border-color:var(--primary);
    background: var(--primary);
}

ul.header-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.header-info-list h5 {
    margin: 0 0 4px;
    font-size: 13px;
}
ul.header-info-list li {
    margin-bottom: 20px;
}
ul.header-info-list li:last-child {
    margin-bottom: 0;
}




.btn-set .btn + .btn {
    margin-left: 15px;
}
.btn-set {
    margin-top: 30px;
}
html .btn {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 36px;
    padding: 5px 35px;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    text-transform: capitalize;
    border: 0;
    box-shadow: 0 0 0 transparent!important;
    border-radius: 50px;
    font-family: var(--font2);
    z-index:1;
    position:relative;
    overflow: hidden;
}
html .btn:hover {
    color: #fff;
    background: var(--dark);
}
html .btn:before {
    background: var(--primary);
    position:absolute;
    left:auto;
    right:3%;
    top:0;
    bottom:0;
    width:0;
    content:'';
    display:block;
    z-index:-1;
    transition:all 0.5s;
    border-radius:50px;
    opacity: 0;
}
html .btn:hover:before {
    left:3%;
    right:auto;
    width:94%;
    opacity:1;
}
html .btn svg {
    width: 15px;
    margin-left: 8px;
}
html .btn.btn-light {
    background: #fff;
    color: var(--dark);
}
html .btn.btn-light:hover{
    background: #fff;
    color: #fff;
}
html .btn.btn-light:before{
    background: var(--dark);
}
html .btn.btn-primary {
    background: var(--primary);
    color: #fff;
}
html .btn.btn-primary:hover{
    background: var(--primary);
    color: #fff;
}
html .btn.btn-primary:before{
    background: var(--dark);
}


.main-banner {
    padding-top:140px;
    position: relative;
    margin-bottom: 30px;
}


@media (max-width: 1024px) {
    .main-banner {
        padding-top:100px;
    }
}

/* For small screens (mobile devices, 768px and below) */
@media (max-width: 768px) {
    .main-banner {
        padding-top:130px;
    }
}

/* For extra small screens (mobile devices, 480px and below) */
@media (max-width: 480px) {
    .main-banner {
        padding-top:150px;
    }
}






.product-gallery-big .item {
    overflow: hidden;
}




.banner-bg {
    position: absolute;
    left: 0;
    right: 50%;
    height: auto;
    top: 0;
    /*background: url('../images/new_bg.jpg') repeat center center;*/
  
    margin-right: -360px;
    border-radius: 0 0 0 80px;
    z-index: -2;
    bottom: 185px;
}




.banner-bg:before,
.banner-bg:after {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    margin-left: 10px;
    width: 10px;
    bottom: 0;
    top: 0;
    background: var(--primary);
}
.banner-line {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url('../images/banner-line.png') no-repeat center bottom;
    background-size:100% auto;
    z-index: -1;
    margin:0 -50px;
}
.banner-bg:after{
    margin-left:30px;
}
.banner-text-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
}
.banner-text-wrap .banner-text {
    width: 48%;
    color:#fff;
    padding-top:1%;
}
.banner-text-wrap .img {
    width: 52%;
    margin-right: -100px;
    height: 850px;
    max-height:80vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.banner-text-wrap .img img {
    max-height: 100%;
    width: auto !important;
}

.banner-text h4 span {
    display: inline-block;
    vertical-align: top;
    background: rgba(255,255,255,0.3);
    border-radius: 50px;
    padding:0 20px;
}
.banner-text h4 {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 34px;
    letter-spacing: 4px;
    font-weight: 600;
    margin: 0 0 18px;
}
.banner-text h2 {
    font-size: 52px;
    margin: 0 0 22px;
}
.banner-text h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 5px;
color:white;

}

.banner-text p {
    line-height: 170%;
    max-width: 560px;
    font-size: 17px;
color:white;

}


.product-gallery-thumbs-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    /*z-index: 0;*/

visibility:hidden;
}
.product-gallery-thumbs {
    width:60%;
}
.banner-thumb {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    cursor: pointer;
}
.banner-thumb .img {
    width: 65%;
    margin-left: auto;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.banner-thumb .img img {
    width: auto !important;
    transform: translatey(10%);
    max-height:100%;
    transition:all 0.5s;
}
.banner-thumb:hover .img img {
    transform: translatey(15%);
}
.banner-thumb .text {
    position: absolute;
    left: 0;
    top: 12px;
    padding: 15px;
}
.banner-thumb .text h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 7px;
}
.banner-thumb .text p {
    font-size: 14px;
}
.banner-thumb .more {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    margin: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-thumb .more svg {
    width: 14px;
}
.product-gallery-big .owl-dots {
    position: absolute;
    right: 0;
    top: 7%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.product-gallery-big .owl-dots button.owl-dot {
    padding-right: 38px !important;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--dark);
    line-height: 40px;
    margin: 0 0 8px;
    position:relative;
    transition:all 0.5s;
    width:100px;
    text-align:right;
}
.product-gallery-big .owl-dots button.owl-dot.active {
    padding-right:48px !important;
    font-size:30px;
    -webkit-text-stroke-color: var(--primary);
}
.product-gallery-big .owl-dots button.owl-dot:before {
    content: '01.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(2):before {
    content: '02.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(3):before {
    content: '03.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(4):before {
    content: '04.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(5):before {
    content: '05.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(6):before {
    content: '06.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(7):before {
    content: '07.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(8):before {
    content: '08.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(9):before {
    content: '09.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(10):before {
    content: '10.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(11):before {
    content: '11.';
}
.product-gallery-big .owl-dots button.owl-dot:nth-child(12):before {
    content: '12.';
}
.product-gallery-big .owl-dots button.owl-dot:after {
    width: 28px;
    height: 5px;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: -8px;
    bottom: 0;
    margin: auto;
    background: #F2F2F2;
    transition:all 0.5s;
    border-radius: 5px 0 0 5px;
}
.product-gallery-big .owl-dots button.owl-dot.active:after {
    background: var(--primary);
    width: 38px;
}
.title {
    font-size: 46px;
    margin: 0 0 55px;
    text-align: center;
}
.title.title-left {
    text-align: left;
    margin-bottom: 25px;
    color:black;
}

.title.title-left , p {
    
    color:black;
}
.title span{
    color:var(--primary);
}
.about-img {
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
}
.about-img img{
    width:100%;
    height:100%;
    display:block;
    object-fit: cover;
    transition:all 0.5s;
}
.about-img:hover img{
    transform:scale(1.1);
}
.about-img:last-child{
    margin-bottom: 0;
}
.about-img.about-img-1 {
    border-radius: 8px 80px;
    height: 480px;
}
.about-img.about-img-2,
.about-img.about-img-3{
    border-radius: 8px 110px 110px 8px;
    height: 190px;
}
.about-img.about-img-2 {
    margin-right: 25%;
}
.about-img.about-img-3 {
    margin-right: 10%;
}
.about-shap {
    max-width: 220px;
    margin-bottom: 8px;

}

.about-section {

    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  background-image: url('../images/bg-shap.png');
}

html .bg-primary {
    background-color:var(--primary) !important;
}
html .bg-light {
    background-color: var(--light) !important;
}
.contract-section {
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}
.contract-text {
    max-width: 670px;
    padding-left: 50px;
    padding-right: 15px;
}
.icon-box-wide {
    position: relative;
    padding-left: 92px;
    font-size: 13px;
    margin: 0 0 30px;
    min-height: 70px;
}
.icon-box-wide .icon {
    width: 75px;
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 12px;
    border-radius: 35px 5px;
    box-shadow: 8px 7px 8px rgba(0,0,0,0.10);
    transition:all 0.3s;
}
.icon-box-wide:hover .icon{
    transform:translatey(-10px);
}
.icon-box-wide .icon img {
    max-height: 100%;
}
.icon-box-wide h3 {
    font-size: 18px;
    margin: 0  0 7px;
    color:black;
}
.icon-box-wide, p{
    font-size: 18px;
    margin: 0  0 7px;
    color:black;
}


.promo-carousel {
    overflow: hidden;
}
.promo-carousel .item-wrap {
    transform: translateX(0);
    width: 400%;
    position: relative;
    white-space: nowrap;
    display: flex;
}
.promo-carousel .item {
    text-align: center;
    flex: 1;
}
.customer-logo-box {
    background: #fff;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    margin: 10px 10px;
    border-radius: 12px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}
.customer-logo-box img {
    display: block;
    transition: all 0.5s;
    max-height: 100%;
}
.customer-logo-box:hover img{
    transform:scale(1.1);
}
.title-box {
    margin-bottom: 40px;
    font-size: 18px;
}


.title-box h2 {
    font-size: 42px;
    margin:0 0 20px;
    color:black;
}
.title-box.text-light .more-link a {
    color: #fff;
}
.title-box.text-light .more-link a:hover {
    color: var(--dark);
}
.title-box .more-link a {
    font-weight: 600;
    text-decoration: underline;
    font-family: var(--font2);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    color:var(--dark);
}
.title-box .more-link a svg {
    display: block;
    width: 15px;
    margin-left: 10px;
}
.title-box .more-link a:hover {
    color:var(--primary);
}
.third-party-section:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('../images/dark-pattern.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    border-radius: 100px 0;
}
.third-party-section:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background:#fff;
    z-index: -2;
    height:25%;
}
.icon-box {
    font-size: 14px;
    margin-bottom: 15px;
}
.icon-box .icon {
    width: 75px;
    height: 75px;
    background: var(--primary);
    border-radius: 50px 50px 50px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin: 0 0 15px;
    transition:all 0.3s;
}
.icon-box:hover .icon{
    transform:translatey(-10px);
}
.icon-box .icon img {
    max-height: 100%;
}
.icon-box h3 {
    font-size: 20px;
}
.third-party-img {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.third-party-img img {
    max-height: 100%;
}
.third-party-img-wrap {
    position: relative;
    z-index: 1;
}
.third-party-img-round {
    padding-top: 100%;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    height: 0;
}
.third-party-img-round span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 50%;
    width: 70%;
    margin: auto;
    height: 70%;
}
.third-party-img-round span:nth-child(2) {
    width: 85%;
    height: 85%;
    background:rgba(0, 184, 224,0.5);
    animation-name:third-party-img;
    animation-duration:3s;
    animation-iteration-count: infinite;
    transform:scale(0.5);
    transition:all 0.5s;
}
.third-party-img-round span:nth-child(3) {
    width: 100%;
    height: 100%;
    background:rgba(0, 184, 224,0.3);
    animation-name:third-party-img;
    animation-duration:3s;
    animation-iteration-count: infinite;
    animation-delay:0.5s;
    transform:scale(0.5);
    transition:all 0.5s;
}
.third-party-img-round span:nth-child(4) {
    width: 114%;
    height: 114%;
    background:rgba(0, 184, 224,0.1);
    left:-7%;
    animation-name:third-party-img;
    animation-duration:3s;
    animation-iteration-count: infinite;
    animation-delay:1s;
    transform:scale(0.5);
    transition:all 0.5s;
}
@keyframes third-party-img{
    0%{
        transform:scale(0.5);
        opacity:0;
    }
    40%{
        transform:scale(1);
        opacity: 1;
    }
    85%{
        transform:scale(1);
        opacity: 1;
    }
    100%{
        transform:scale(1);
        opacity:0;
    }
}

.supplements-items{
    position:relative;
}
.supplements-items-left {
    padding-right: 120px;
}
.supplements-items-right {
    padding-left: 120px;
}
.supplements-items-design {
    width: 95px;
}
.supplements-items-left .supplements-items-design {
    position: absolute;
    right: 0;
    top: 0;
}
.supplements-items-right .supplements-items-design {
    position: absolute;
    left: 0;
    top: 0;
}
.supplement-item {
    height: 204px;
    overflow: hidden;
    margin: 0 0 30px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding: 20px;
    z-index: 1;
    transition:all 0.3s;
}
.supplement-item:hover{
    transform:translatey(-10px);
    box-shadow:0 5px 7px rgba(0,0,0,.15);
}
.supplement-item .img {
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
.supplement-item .img img {
    display: block;
    width: 100%;
}
.supplement-item .txt {
    position: relative;
    padding-right: 50px;
    font-size: 13px;
}
.supplement-item h3 {
    font-size: 20px;
}
.supplement-item h3 a{
    color:var(--dark);
}
.supplement-item h3 a:hover{
    opacity: 0.6;
}
.supplement-item .more {
    position: absolute;
    right: 0;
    top: 0;
}
.supplement-item .more a {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    padding: 8px;
}
.supplement-item .more a:hover {
    color: #fff;
    background: var(--dark);
}
.video-box {
    padding: 70px 60px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-size: cover;
    box-shadow: 10px 13px 26px rgba(0,0,0,0.15);
}
.video-box:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('../images/video-bg-pattern.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.play-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    width: 50%;
    height: 50%;
    color: var(--primary) !important;
}
.play-box a svg {
    width: 25px;
    margin-left: 7px;
    display:block;
    transition:all 0.3s;
}
.play-box a:hover {
    color: var(--dark) !important;
}
.play-box a:hover svg {
    transform:scale(1.2);
}
.play-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
}
.play-box span {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 67%;
    height: 67%;
    z-index: -1;
    background: rgba(255,255,255,0.5);
    margin: auto;
    border-radius: 50%;
    animation-name:third-party-img;
    animation-duration:2s;
    animation-iteration-count: infinite;
    transform:scale(0.5);
    transition:all 0.5s;
}
.play-box span:nth-child(2){
    width:85%;
    height:85%;
    background: rgba(255,255,255,0.3);
    animation-name:third-party-img;
    animation-iteration-count: infinite;
    animation-delay:0.5s;
    transform:scale(0.5);
    transition:all 0.5s;
}
.play-box span:nth-child(3){
    width:100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    animation-name:third-party-img;
    animation-iteration-count: infinite;
    animation-delay:1s;
    transform:scale(0.5);
    transition:all 0.5s;
}
.video-box .play-box {
    margin: 0 auto 30px;
}
.testimonial-section {
    border-radius: 80px;
}
.testimonial-box {
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 07%);
    padding: 30px;
    border-radius: 9px;
    margin-bottom: 27px;
}
.testimonial-box:last-child {
    margin-bottom: 0;
}
.testimonial-head {
    position: relative;
    padding-left: 65px;
    min-height: 50px;
    margin: 0 0 20px;
    padding-top: 4px;
}
.testimonial-head .avtar {
    width: 50px;
    border-radius: 50%;
    height: 50px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}
.testimonial-head .avtar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-head h3 {
    font-size: 18px;
    font-family: inherit;
    margin: 0px 0 2px;
}
.rating {
    width: 100px;
    height: 18px;
    background: url('../images/rating.png') no-repeat 0 -20px;
    position: relative;
    background-size: 100% auto;
}
.rating span{
    width: 100%;
    height: 18px;
    background: url('../images/rating.png') no-repeat 0 0;
    background-size: 100px auto;
    display:block;
}
.testimonial-design-1 {
    width: 80px;
}
.testimonial-design-2 {
    width: 100px;
    margin: 0 0 27px;
}
.testimonial-design-3 {
    width: 100px;
}
.certificates-box {
    position: relative;
    z-index: 1;
    padding: 8px;
}
.certificates-box:before,
.certificates-box:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 8px;
    transition:all 0.3s;
}
.certificates-box:after {
    right: 0;
    left:auto;
    bottom: 0;
    top:auto;
    background: var(--dark);
}
.certificates-box:hover:before,
.certificates-box:hover:after {
    width: 140px;
    height: 140px;
}
.certificates-box a {
    cursor: pointer;
    display: block;
}
.title-nav .owl-nav {
    position: absolute;
    right: 0;
    top:-80px;
    display: flex;
    align-items: center;
}
.title-nav .owl-nav button[class*='owl-'] {
    width: 56px;
    height: 56px;
    border: 2px solid;
    border-radius: 50%;
    color: var(--dark);
    opacity: 0.4;
    margin-left: 12px;
    transition:all 0.3s;
    position: relative;
}
.title-nav .owl-nav button[class*='owl-']:first-child{
    margin-left:0;
}
.title-nav .owl-nav button[class*='owl-'] span{
    display: none;
}
.title-nav .owl-nav button[class*='owl-']:hover{
    color:var(--primary);
    opacity: 1;
}
.title-nav .owl-nav button[class*='owl-']:before {
    content: '';
    display: block;
    position: absolute;
    left: 10px;
    right: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-top: 3px solid;
    border-left: 3px solid;
    margin: auto;
    transform: rotate(-45deg);
}
.title-nav .owl-nav button[class*='owl-'].owl-next {
    transform: rotate(180deg);
}

.footer-form-section {
    position: relative;
    z-index: 1;
    padding-bottom:100px;
}
.footer-form-section:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: white;
    z-index: -1;
}
.footer-form-box {
    padding: 60px;
    color: #fff;
    border-radius: 45px;
    margin: 40px 0;
    text-align: center;
    background: url('../images/dark-pattern.jpg') no-repeat left center;
    background-size: cover;
    position:relative;
    z-index:2;
}
.footer-form-img {
    min-height: 100%;
    background-position: center center;
    background-size: cover;
    margin-left: -80%;
    border-radius: 35px;
    box-shadow: 8px 8px 25px rgba(0,0,0,0.18);
}
.footer-form-box h2 {
    font-size: 44px;
    margin: 0 0 18px;
}
.footer-form-box h5 {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 40px;
}
.form-group-2 .form-control {
    border-radius: 50px;
    border: 1px solid transparent;
    height: 48px;
    padding: 0 25px;
    font-size: 15px;
    box-shadow: 0 0 0 0 transparent !important;
}
.form-group-2 {
    margin: 0 0 18px;
}
.form-group-2 textarea.form-control {
    height: 140px;
    border-radius: 15px;
    padding-top: 15px;
}
.form-submit-wrap {
    margin-top: 30px;
    
}
.form-submit-wrap .btn {
    min-width: 150px;
    
    
    
}
.footer-top {
    background:white;
    color: #fff;
}
.footer-top a {
    color:#25D366;
}
.footer-top a:hover{
    color: var(--dark);
}
.footer-top h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color:black;
}
ul.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
     
     
}
ul.footer-list li + li {
    margin-top: 7px;
}
ul.footer-list li  a {
    color:black;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    position:relative;
}

ul.footer-list li a:hover{
    color:red;
    text-decoration:underline;
}


ul.footer-list li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 6px;
    width: 9px;
    height: 9px;
    background:black;
    border-radius: 2px;
    transform: rotate(45deg);
}



ul.footer-list li a:hover:before {
    transform: rotate(135deg);
    transition:all 0.5s;
}
footer .logo {
    filter: brightness(0) invert(1);
    display: block;
    max-width:250px;
    margin: 0 0 25px;
}
.footer-info .item {
    font-size: 15px;
    position: relative;
    padding-left: 42px;
    line-height: 140%;
     color:black;
}
.footer-info .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background:black;
    color: var(--primary);
    border-radius: 50px 50px 3px 50px;
    padding: 8px;
}
.footer-info .item .icon svg {
    max-height: 100%;
}
.footer-info .item + .item {
    margin-top: 15px;
}
.footer-social ul {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 50px;
    background:#fff;
    list-style: none;
    padding: 12px 30px;
    margin: 0;
}
.footer-social ul li + li {
    margin-left: 20px;
}
.footer-social ul a {
    display: flex;
    color: var(--dark);
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
}
.footer-social ul a:hover{
    color: var(--primary);
    transform:scale(0.9);
}
.footer-social ul a svg {
    max-height: 100%;
    
}
.footer-social {
    margin-top: 25px;
}
.copyright {
    text-align: center;
    padding: 25px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.4);
    color:black;
}
.scrollToTop:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    transform: rotate(45deg);
    z-index: -1;
    border-radius: 7px;
    box-shadow: 2px 2px 6px 0 rgb(0 0 0 / 10%);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.scrollToTop:hover:before{
    background: #25D366;
}
.scrollToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 50px;
    bottom: 0;
    width: 46px;
    height: 46px;
    z-index: 99;
    color: var(--dark);
    padding: 0 10px;
    margin-bottom: -60px;
    opacity: 0;
    transition: all 0.3s;
}
.scrollToTop:hover{
    color:#fff;
}
.sticky .scrollToTop {
    margin-bottom: 100px;
    opacity: 1;
}
.inner-banner {
    padding-top: 120px;
    position: relative;
    color:red;
}



.inner-banner-bg {
    position: absolute;
    left: 0;
    right: 50%;
    height: auto;
    top: 0;
    background:url('bannerimg/pattern.png') repeat center center;
    margin-right: -360px;
    border-radius: 0 0 0 80px;
    z-index: -2;
    bottom: 60px;
}

.inner-banner-bg:before,
.inner-banner-bg:after {
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    margin-left: 10px;
    width: 10px;
    bottom: 0;
    top: 0;
    background:var(--primary);
}
.inner-banner-bg:after {
    margin-left: 30px;
}
.breadcrumb-list-wrap ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-family: var(--font2);
    font-weight: 600;
}
.breadcrumb-list-wrap ul a{
    color:#fff;
}
.breadcrumb-list-wrap ul a:hover{
    color:var(--dark);
}
.breadcrumb-list-wrap ul li {
    margin-right: 10px;
}
.breadcrumb-list-wrap ul li:after {
    content: '/';
    margin-left: 10px;
}
.breadcrumb-list-wrap ul li:last-child:after {
    display:none;
}
.inner-banner h2 {
    font-size: 48px;
    margin: 0 0 20px;
}
.inner-banner  p {
    font-size: 17px;
    line-height: 160%;

}
.inner-banner-text {
    padding-top:50px;
}
.inner-banner-text p{
    max-width: 460px;
}
.inner-banner .img img {
   
    border-radius: 100px 0;
    border: 7px solid var(--primary);
    width: 100%;
    background: var(--primary);
    box-shadow: 10px 13px 26px 0 rgb(0 0 0 / 12%);
}
.inner-banner .img {
    position: relative;
    margin-left: 50px;
}
.inner-count-box {
    position: absolute;
    left: -80px;
    background: #fff;
    color: var(--dark);
    min-width: 170px;
    text-align: center;
    border-radius: 18px;
    padding: 15px 0;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
    top: 100px;
}
.inner-count-box h6 {
    margin: 0;
    font-weight: normal;
    font-size: 15px;
}
.inner-count-box h4 {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 600;
}
.inner-count-box:nth-child(2) {
    margin-top: 113px;
    margin-left: -48px;
}
.icon-box-1{
    text-align:center;
}
.icon-box-1 p {
    font-size: 20px;
}
.icon-box-1 h3 {
    font-size: 22px;
}
.icon-box-1  .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    transition:all 0.5s;
}
.icon-box-1:hover .icon{
    transform:translatey(-10px);
}
.icon-box-1 .icon:before {
    content: '';
    display: block;
    position: absolute;
    left: -25px;
    top: -15px;
    width: 70px;
    height: 70px;
    background: url('../images/icon/icon-bg-1.svg') no-repeat 0 0;
    background-size: 100% auto;
    z-index: -1;
}
.title-box h5 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0 0 10px;
}
.about-img-left {
    background: var(--primary);
    padding: 8px 8px 8px 0;
    margin-bottom: -100px;
}
ul.custom-list {
    list-style: none;
    padding: 0;
    margin:0;
    font-weight: 600;
    font-size: 17px;
    line-height: 120%;
    text-align: left;
}






ul.custom-list > li {
    position: relative;
    padding-left: 40px;
    min-height: 25px;
   margin: 0 0 12px;
}
ul.custom-list > li:before{
    content:'';
    display:block;
    width:26px;
    height:26px;
    position: absolute;
    left:0;
    top:0;
    background: url('../images/correct.svg') no-repeat 0 0;
    background-size:100% auto;
}
ul.custom-list > li {
    position: relative;
    padding-left: 36px;
    min-height: 26px;
    margin: 0 0 10px;
    padding-top: 6px;
}
.about-right-content {
    padding-left: 50px;
    max-width: 660px;
    padding-right:15px;
}

.about-count-wrap {
    background: white;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
    border-radius: 35px;
    padding: 30px;
    box-shadow: 10px 13px 19px rgba(0,0,0,0.15);
visibility:hidden;
}


.about-count-wrap .item {
    width: 33.33%;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
}
.about-count-wrap .item h3 {
    font-size: 40px;
    margin: 0  0 8px;
}
.about-count-wrap .item:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    opacity: 0.47;
}
.about-count-wrap .item:last-child:before {
    display:none;
}
.certificates-box-2 {
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 14%);
    margin: 15px 0 38px;
    text-align: center;
    font-size: 14px;
}
.certificates-box-2 .img {
    position: relative;
    border: 1px solid #eee;
    overflow: hidden;
    margin: -5px -5px 20px;
    border-radius: 10px;
    height: 330px;
}
.certificates-box-2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.certificates-box-2:hover .img img {
    transform:scale(1.1);
}
.certificates-box-2 .img .certificates-box-popup {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0 ,184, 224,0.72);
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    margin: 10px;
}
.certificates-box-2 .img .certificates-box-popup:hover{
    background: rgba(0 ,184, 224,1);
}
.certificates-box-2 h3 {
    font-size: 22px;
}
.certificates-box-2 h6 {
    font-weight: normal;
    color: var(--primary);
    margin: 0 0 20px;
}
.certificates-box-meta {
    display: flex;
    justify-content: space-between;
}
.certificates-carousel-2.title-nav .owl-nav {
    left: 50%;
    margin-left: 510px;
    right: auto;
}
.video-bottle-wrap {
    position: relative;
/*    background: url('../images/video-box-bg.jpg') no-repeat center center;*/
    background-size: cover;
    border-radius: 50px;
    max-width: 1200px;
    margin: 140px auto -140px;
    padding: 1px 60px;
}
.video-bottle-wrap .play-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.video-bottle-wrap .play-box span {
    background:rgba(0,0,0,0.5);
}
.video-bottle-wrap .play-box span:nth-child(2) {
    background:rgba(0,0,0,0.3);
}
.video-bottle-wrap .play-box span:nth-child(3) {
    background:rgba(0,0,0,0.1);
}
.video-bottle-wrap .play-box a {
    color: #fff !important;
    background: #000;
}
.video-bottle-wrap .img {
    position: relative;
    margin-top: -120px;
    margin-bottom: -10px;
}
.video-section-bg-pattern {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 600px;
    background: url('../images/video-section-bg-pattern.jpg') no-repeat center center;
    background-size:cover;
    z-index: -1;
}
.testimonial-section.border-radius-top-0 {
    border-radius: 0 0 80px 80px;
}
.section-hr:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(241,240,240,1) 50%,rgba(255,255,255,1) 100%);
    bottom: 0;
}
.icon-box-2 {
    background: var(--light);
    border: 2px solid var(--primary);
    padding: 25px;
    border-radius: 24px;
    position: relative;
    box-shadow: 8px 8px 0 0 var(--primary), 0 8px 19px 0 rgba(0,184,224,0.22);
    margin: 0 10px 10px 0;
}
.icon-box-2 h3 {
    font-size: 22px;
    margin: 0 0 14px;
}
.icon-box-2 .icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    padding: 12px;
    box-shadow: 0 7px 10px 0 rgb(0 184 224 / 27%);
}
.manufacturer-video-box {
    border-top: 6px solid var(--primary);
    min-height: 650px;
    background-position: center center;
    background-size: cover;
    margin-top: 70px;
}
.manufacturer-video-box .text {
    position: relative;
    max-width: 580px;
    color: #fff;
    padding:50px 60px 50px 0;
    z-index: 1;
    margin-top:-1px;
}
.manufacturer-video-box .text:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: -500px;
    top: 0;
    bottom: 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 0 0 290px 0;
}
.manufacturer-video-box .text .play-box {
    position: absolute;
    right: -18px;
    bottom: 20px;
}
.manufacturer-video-box .text  h2 {
    font-size: 38px;
    margin: 0 0 28px;
}
.manufacturer-video-box .text p {
    margin-right: 120px;
    font-size: 17px;
    font-weight: 600;
}
.manufacturer-video-box:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 80%;
    height: 70px;
    background: var(--dark);
    bottom: 100%;
    margin-bottom: 6px;
    border-radius: 0 80px 0 0;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.21);
}
.manufacturer-video-box:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 80%;
    height: 80px;
    bottom: 100%;
    margin-bottom: 6px;
    border-radius: 0 80px 0 0;
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.21);
    border-top: 5px solid var(--dark);
    border-right: 5px solid var(--dark);
    margin-right: -12px;
}
html .bg-white {
    background-color: #fff !important;
}
.capabilities-section {
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.img-box img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 16px 0 rgb(0 19 23 / 16%);
    display:block;
}
.img-box {
    position: relative;
}
.img-box:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 4px solid var(--primary);
    border-radius: 20px;
    z-index: 2;
    transform: rotate(8deg);
}
.capsule-manufacturing-list {
    background: #fff;
    padding: 80px 60px;
    border-radius: 30px;
    border: 1px solid #D5D5D5;
    box-shadow: 0 5px 56px 0 rgba(0,0,0,0.11);
}
.capsule-manufacturing-list .item:nth-child(2n+1) [class*='col-']:first-child {
    order: 1;
}
.capsule-manufacturing-list .item + .item {
    margin-top: 90px;
}
.capsule-manufacturing-list h6 {
    color: transparent;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: var(--primary);
    font-size: 40px;
    text-shadow: 0 5px 0 rgb(0 184 224 / 13%);
    font-family: 'Showcard Gothic';
}
.capsule-manufacturing-list h6:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    height: 3px;
    width: 44px;
    background: var(--primary);
    border-radius: 5px;
    margin: 22px 0 0 10px;
}
.capsule-manufacturing-list img {
    border-radius: 24px;
    border: 3px solid var(--primary);
    box-shadow: 7px 7px 0 0 var(--primary);
    background: var(--primary);
}
.capsule-manufacturing-list .img {
    margin-right: 20px;
}
.capsule-manufacturing-list .item:nth-child(2n+2) .img{
    margin-right: 0;
    margin-left: 20px;
}
html .text-primary {
    color: var(--primary)!important;
}
.available-products-list {
    display: flex;
    margin:20px -15px 100px;
    flex-wrap: wrap;
    position:relative;
}
.available-products-list:before {
    content: '';
    display: block;
    position: absolute;
    left: 25%;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--dark);
    z-index: 1;
    margin-left: 15px;
    border-radius: 6px 70px 6px 6px;
}
.available-products-list:after {
    content: '';
    display: block;
    position: absolute;
    left: 75%;
    top: 0;
    width: 80px;
    height: 60px;
    background: var(--primary);
    z-index: 1;
    margin-left: 15px;
    border-radius: 40px 6px;
}
.available-products-list .item {
    width: 25%;
    padding: 0 15px;
    margin: 0 0 30px;
}
.available-products-list .item:nth-child(2n+2) {
    transform: translatey(80px);
}
.available-products-box {
    border: 1px solid var(--primary);
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    min-height: 100%;
}
.available-products-box .img {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #efefef;
    margin: -10px -10px 20px;
    position:relative;
}
.available-products-box .img img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.available-products-box:hover .img img {
    transform:scale(1.1);
}
.available-products-box h2 {
    font-size: 24px;
    margin: 0 0  12px;
}
.available-products-box .more {
    width: 58px;
    height: 38px;
    background: var(--primary);
    position: absolute;
    right: 0;
    border-radius: 50px 0 0 50px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.available-products-box .more:hover{
    background: var(--dark);
}
.primary-gradiunt {
    background: linear-gradient(to bottom, #EAF9FC 0%,#fff 50%,#fff 100%);
}
.accordion .accordion-item + .accordion-item {
    margin-top: 26px;
}
.accordion .accordion-item {
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 0 25px;
}
.accordion .accordion-item .accordion-button {
    background: transparent;
    padding: 14px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    box-shadow: 0 0 0 0 transparent !important;
    color:var(--dark);
}
.accordion .accordion-item .accordion-button:after {
    content: '';
    width: 18px;
    height: 18px;
    background: transparent;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(-135deg);
    margin-top: 9px;
    transition:all 0.5s;
}
.accordion .accordion-item .accordion-button.collapsed:after {
    transform: rotate(45deg);
    margin-top: -11px;
}
.accordion .accordion-item .accordion-body {
    padding: 20px 0;
    border-top: 2px solid #efefef;
}
.faq-wrap {
    margin-bottom: -130px;
    position: relative;
}
.manufactured-img-box {
    padding: 150px 0;
}
.manufactured-img-box .img img {
    height:100%;
    object-fit: cover;
    transition: all 0.5s;
}
.manufactured-img-box .img:hover img {
    transform:scale(1.1);
}
.manufactured-img-box .img {
    border: 2px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    background: var(--primary);
    height: 150px;
    overflow: hidden;
    transform: scale(1);
    opacity: 0.2;
    transition: all 0.3s;
    width: 200px;
    cursor: pointer;
}
.active + .active .manufactured-img-box .img {
    transform: scale(1.5);
    opacity: 0.4;
}
.active.center .manufactured-img-box .img {
    transform: scale(2.5);
    opacity: 1;
    margin:0 auto;
}
.active.center + .active .manufactured-img-box .img {
    margin-left:auto;
}
.active.center + .active + .active .manufactured-img-box .img{
    transform: scale(1);
    opacity: 0.2;
    margin-left:auto;
}
.owl-item.active.center {
    z-index: 8;
}
.manufactured-wrap {
    position: relative;
    margin: 80px 0 180px;
}
.manufactured-wrap .third-party-img-round {
    width: 560px;
    height: 560px;
    padding: 0;
}
.title-nav.manufactured-carousel .owl-nav {
    top: auto;
    justify-content: center;
    position: absolute;
    bottom: -140px;
    left: 0;
    right: 0;
}
.title-nav.manufactured-carousel .owl-nav button[class*='owl-']:first-child {
    margin-left: 0;
}
.bg-cover {
    background-position: center center;
    background-size: cover;
}
.bottling-wrap {
    position: relative;
}
.bottling-wrap .img {
    border: 5px solid var(--primary);
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}
.bottling-wrap .img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.5s;
}
.bottling-wrap .img:hover img {
    transform:scale(1.1);
}
.private-label-slider {
    position: relative;
}
.private-label-slider:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 20px;
    transform: rotate(5deg);
}
.private-label-slider .img {
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
}
.private-label-slider .img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.5s;
}
.private-label-slider .img:hover img {
    transform:scale(1.1);
}
.dot-style .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
.dot-style .owl-dots button.owl-dot {
    display: block;
    width: 11px;
    height: 11px;
    background: var(--dark);
    margin: 0 6px;
    border-radius: 10px;
    opacity: 0.2;
    transition: all 0.5s;
}
.dot-style .owl-dots button.owl-dot:hover,
.dot-style .owl-dots button.owl-dot.active {
    opacity: 1;
}
.dot-style .owl-dots button.owl-dot.active{
    background: var(--primary);
}
.private-label-slider .dot-style .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
}
.bg-wide {
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat:no-repeat;
}
.bottling-wrap .dot-style .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}
.bottling-wrap .dot-style .owl-dots button.owl-dot{
    background-color:#fff;
}
.bottling-wrap .dot-style .owl-dots button.owl-dot.active{
    background-color:#fff;
}
.bottling-section{
    overflow: hidden;
}
.bottling-section:before, 
.bottling-section:after {
    width: 220px;
    height: 220px;
    border: 30px solid var(--primary);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    margin: -80px;
    opacity: 0.15;
}
.bottling-section:after {
    left:auto;
    right:0;
    bottom:0;
    top:auto;
}
.packaging-slider-section:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 390px;
    background: var(--primary);
    z-index: -1;
}
.images-carousel .img {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.images-carousel .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.images-carousel .img:hover img {
    transform:scale(1.1)
}
.packaging-slider .title-nav  .owl-nav {
    position: relative;
    top: 0;
    justify-content: center;
    margin-top: 40px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url('../images/tab-bg2.html') top center;
  background-size: cover;
  margin-bottom: -200px;
}
#hero .container {
  position: relative !important;
}
#hero h1 {
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  color: #fff;
}
#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 500;
}
#hero .btn-get-started {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}
#hero .btn-get-started:hover {
  background: #3291e6;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
}
}
@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
}
#hero .container {
    padding-bottom: 63px;
}
#hero h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}
}
@media (max-height: 600px) {
  #hero {
    height: 110vh !important;
}
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}
.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
.why-us .content p {
  margin-bottom: 30px;
}
.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}
.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}
.departments .nav-tabs {
  border: 0;
}
.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #2c4964;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}
.departments .nav-link h5 {
    color:#000;
}
.departments .nav-link:hover {
  color: var(--primary);
}
.departments .nav-link.active h5 ,.departments .nav-link.active{
  color: var(--primary);
  border-color: var(--primary);
}

.departments .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}
.departments .details p {
  color: #777777;
}
.departments .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .departments .nav-link h5{
    border: 1;
    font-size: 13px !important;
}
.departments .nav-link.active h5{
    font-size: 13px !important;
    color: var(--primary);
}
.departments .nav-link.active h6 ,.departments .nav-link h6{
    font-size: 16px !important;
}

}
.capsule-manufacturing-list .departments h6:after {
    width: 0px !important;
    display: inline;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}
.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
}
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
}
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: '/';
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
}
.breadcrumbs ol {
    display: block;
}
.breadcrumbs ol li {
    display: inline-block;
}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 15px;
}
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c4964;
  margin-bottom: 15px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #1977cc;
}
.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box2 {

  background-size: cover;
  min-height: 500px;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #1977cc;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}


/*--------------------------------------------------------------
# Hero Powder Section
--------------------------------------------------------------*/
#hero_powder {
  width: 100%;
  height: 100vh;
  /*background: url('../images/powder_image.gif') top left;*/
  background-size: cover;
  position: relative;
}
#hero_powder:before {
  content: '';
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero_powder .container {
  position: relative;
}
#hero_powder h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: 'Poppins', sans-serif;
}
#hero_powder h1 span {
  color: var(--primary);
}
#hero_powder h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}
#hero_powder .btn-get-started {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: var(--primary);
}
#hero_powder .btn-get-started:hover {
  background: #247cf0;
}
#hero_powder .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor : pointer ;
}
#hero_powder .btn-watch-video i {
  color: var(--primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero_powder .btn-watch-video:hover {
  color: var(--primary);
}
#hero_powder .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero_powder {
    background-attachment: fixed;
}
}
@media (max-width: 768px) {
  #hero_powder {
    height: 100vh;
}
#hero_powder h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero_powder h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}
#hero_powder .btn-get-started, #hero_powder .btn-watch-video {
    font-size: 13px;
}
}
@media (max-height: 500px) {
  #hero_powder {
    height: 120vh;
}
}

#hero_powder .container,#hero_powder .container-lg,#hero_powder .container-md,#hero_powder .container-sm,#hero_powder .container-xl {
    max-width: 1140px;
}

.icons img,.icons i {
    height: 51px;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  background: var(--primary);
  top: 0;
  border-radius: 0px;
}
.featured-services .icons {
  margin-bottom: 15px;
}
.featured-services .icons i {
  font-size: 48px;
  line-height: 1;
  filter: opacity(0.4) drop-shadow(0 0 0 var(--primary)); 
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: #111;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;

}
.featured-services .icon-box:hover .icons i {
  color: #fff;
  filter: opacity(0.8) drop-shadow(0 0 0 white);   
}

#featured-services .container,#featured-services .container-lg,#featured-services .container-md,#featured-services .container-sm,#featured-services .container-xl {
    max-width: 1140px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 10px;
  padding-bottom: 0px; 
}
.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: var(--primary);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}
.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list .collapsed {
  color: black;
}
.faq .collapse ,.faq .collapseing{
    padding: 25px;
    transition: 0.9s;
}

.faq .faq-list .collapsed:hover {
  color: var(--primary);
}
.faq .faq-list .collapsed .icon-show {
  margin-top: 5px;
  display: inline-block;
  transition: 0.6s;
}
.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

.faq .capsule-manufacturing-list  h6:after {
    width: 0px !important;
    display: inline;
    font-size: 20px;
}

.faq .faq-list .custom-list li {
  border-bottom: 0px solid #d4e5fc;

}

.faq .title {
    font-size: 35px;
    text-align: left !important;
}

@media (max-width: 767px)
.faq .title {
    margin-bottom: 0px;
}
.faq .faq-list {
    padding: 6px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_liquid {
  width: 100%;
  height: 100vh;
  position: relative;
  /*background: url('../images/liquid_bg_.gif') top center;*/
  background-size: cover;
  position: relative;
}
#hero_liquid:before {
  content: '';
  background: #ff3b00b8;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero_liquid .container {
  padding-top: 80px;
}
#hero_liquid h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700 !important;
  line-height: 72px;
  color: #001317;
  /*font-family: 'Poppins', sans-serif;*/
}
#hero_liquid h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero_liquid .btn-get-started {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: var(--dark);
}
#hero_liquid .btn-get-started:hover {
  background: var(--primary);
}
#hero_liquid .icon-boxes {
  margin-top: 100px;
}
#hero_liquid .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
#hero_liquid .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#hero_liquid .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}
#hero_liquid .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
#hero_liquid .icon-box .icons {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--primary);  
  filter: opacity(0.6) drop-shadow(0 0 0 var(--primary));
}
#hero_liquid .icon-box:hover {
  transform: scale(1.08);
}
#hero_liquid .icon-box:hover .title a {
  color: #2487ce;
}
@media (min-width: 1024px) {
  #hero_liquid {
    background-attachment: fixed;
}
}
@media (max-height: 800px) {
  #hero_liquid {
    height: auto;
}
}
@media (max-width: 992px) {
  #hero_liquid {
    height: auto;
}
#hero_liquid h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero_liquid h2 {
    font-size: 18px;
    line-height: 24px;
}
}
#hero_liquid .container {
    max-width: 1140px !important;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments_liquid .nav-tabs {
  border: 0;
}
.departments_liquid .container {
    max-width: 1140px !important;
}
.departments_liquid .nav-links {
  border: 0;
  /*padding: 10px;*/
  color: #555555 !important;
  border-radius: 0;
  /*border-left: 0px solid #fff !important;*/
  cursor: pointer;
}
.departments_liquid ul li {
  padding: 8px;
  border-left: 5px solid var(--primary) !important;
}
.departments_liquid .nav-links h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.departments_liquid .nav-links p {
  font-size: 14px;
  margin-bottom: 0;
}
.departments_liquid .nav-links:hover h4 {
  color: var(--primary) !important;
}
.departments_liquid .nav-links.active {
  background-color: #f7fcfc !important;
  border-color: var(--primary) !important;
}
.departments_liquid .nav-links.active h4 {
  color: var(--primary)!important;
}
.departments_liquid .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}
.departments_liquid .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}
@media (max-width: 768px) {
  .departments_liquid .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
}
}
.departments_liquid .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}
.departments_liquid .tab-pane p {
  color: #777777;
}
.departments_liquid .tab-pane p:last-child {
  margin-bottom: 0;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes slide-down {
  0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_gummy {
  width: 100%;
  height: 100vh;
  position: relative;
  /*background: url('../images/Figure-1-Gummy.webp') top center;*/
  background-size: cover;
  background-position: center;
  position: relative;
}
#hero_gummy:before {
  content: '';
  background: #dd001580;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero_gummy .container {
  padding-top: 80px;
}
#hero_gummy h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700 !important;
  line-height: 46px;
  color: #001317;
  /*font-family: 'Poppins', sans-serif;*/
}
#hero_gummy h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 600;
}
#hero_gummy .btn-get-started {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: var(--dark);
}
#hero_gummy .btn-get-started:hover {
  background: var(--primary);
}
#hero_gummy .icon-boxes {
  margin-top: 0px;
}
#hero_gummy .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
#hero_gummy .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#hero_gummy .icon-box .title a {
  color: #dd001580;
  transition: 0.3s;
}
#hero_gummy .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
#hero_gummy .icon-box .icons {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--primary);  
  filter: opacity(0.6) drop-shadow(0 0 0 var(--primary));
}
#hero_gummy .icon-box:hover {
  transform: scale(1.08);
}
#hero_gummy .icon-box:hover .title a {
  color: #dd001580;
}
@media (min-width: 1024px) {
  #hero_gummy {
    background-attachment: fixed;
}
}
@media (max-height: 800px) {
  #hero_gummy {
  }
}
@media (max-width: 992px) {
  #hero_gummy {
    height: auto;
}
#hero_gummy h1 {
    font-size: 25px;
    line-height: 36px;
}
#hero_gummy h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}
}
#hero_gummy .container {
    max-width: 100% !important;
}


/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments_gummy .nav-tabs {
  border: 0;
}
.departments_gummy .container {
    max-width: 1140px !important;
}
.departments_gummy .nav-links {
  border: 0;
  /*padding: 10px;*/
  /*color: #555555 !important;*/
  color: #000 !important;
  border-radius: 0;
  /*border-left: 0px solid #fff !important;*/
  cursor: pointer;
}
.departments_gummy ul li {
  padding: 8px;
  border-left: 5px solid var(--primary) !important;
}
.departments_gummy .nav-links h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.departments_gummy .nav-links p {
  font-size: 14px;
  margin-bottom: 0;
}
.departments_gummy .nav-links:hover h4 {
  color: var(--primary) !important;
}
.departments_gummy .nav-links.active {
  background-color: #f7fcfc !important;
  border-color: var(--primary) !important;
}
.departments_gummy .nav-links.active h4 {
  color: var(--primary)!important;
}
.departments_gummy .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}
.departments_gummy .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}
@media (max-width: 768px) {
  .departments_gummy .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
}

header .navbar-nav > li ul ul
{

    left : 0% !important;
}
}
.departments_gummy .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}
.departments_gummy .tab-pane p {
  color: #000;
  ont-weight: 500;
}
.departments_gummy .tab-pane p:last-child {
  margin-bottom: 0;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes slide-down {
  0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
a:hover {
    color: rgba(var(--primary), 0.8) !important;
}
/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero_softag {
  width: 100%;
  min-height: 100vh;
  /*background: url('../images/softgel-capsuel.jpg') center center;*/
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}
.hero_softag:before {
  content: '';
  background: #00000069;
  position: absolute;
  inset: 0;
}
@media (min-width: 1365px) {
  .hero_softag {
    background-attachment: fixed;
}
}
.hero_softag h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-secondary);
}
.hero_softag h2 span {
  color: var(--primary);
}
.hero_softag p {
  color: #ffffff;
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
.hero_softag .btn-get-started {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--primary);
  font-family: var(--font-secondary);
}
.hero_softag .btn-get-started:hover {
  background: rgba(var(--primary), 0.8);
  color: #ffffff !important;

}
.hero_softag .btn-watch-video {
  font-size: 20px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.hero_softag .btn-watch-video i {
    color: var(--primary);
    font-size: 35px;
    transition: 0.3s;
    line-height: -1;
    margin-right: 8px;
}
.hero_softag .btn-watch-video:hover {
  color: var(--primary) !important;
}
.hero_softag .btn-watch-video:hover i {
  color: #fff;
}
@media (max-width: 640px) {
  .hero_softag h2 {
    font-size: 32px;
}
.hero_softag p {
    font-size: 18px;
    margin-bottom: 30px;
}
.hero_softag .btn-get-started, .hero_softag .btn-watch-video {
    font-size: 14px;
}
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured_softag:before {
  background: #fff !important;
}

.featured_softag .icon-boxes {
    margin-top: 0 !important;
}

.featured_softag .icon-boxes {
    padding-top: 0 !important;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_effervescent {
  width: 100%;
  height: 100vh;
  /*background: url('../images/Effervescent-Tablets.gif') top center;*/
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero_effervescent:before {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero_effervescent .container {
  padding-top: 110px;
}
@media (max-width: 992px) {
  #hero_effervescent .container {
    padding-top: 98px;
}
}
#hero_effervescent h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
#hero_effervescent h1 span {
  color: var(--primary);
}
#hero_effervescent h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
  font-weight: 500;
}
#hero_effervescent .btns {
  margin-top: 30px;
}
#hero_effervescent .btn-menu, #hero_effervescent .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid var(--primary);
}
#hero_effervescent .btn-menu:hover, #hero_effervescent .btn-book:hover {
  background: var(--primary);
  color: #fff;
}
#hero_effervescent .btn-book {
  margin-left: 15px;
}
#hero_effervescent .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary) 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}
#hero_effervescent .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero_effervescent .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero_effervescent .play-btn:hover::after {
  border-left: 15px solid var(--primary);
  transform: scale(20);
}
#hero_effervescent .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #hero_effervescent {
    background-attachment: fixed;
}
}
@media (max-width: 992px) {
  #hero_effervescent .play-btn {
    margin-top: 30px;
}
}
@media (max-height: 500px) {
  #hero_effervescent {
    height: auto;
}
#hero_effervescent .container {
    padding-top: 130px;
    padding-bottom: 60px;
}
}
@media (max-width: 768px) {
  #hero_effervescent h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero_effervescent h2 {
    font-size: 18px;
    line-height: 24px;
}
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}

#hero_effervescent .container,#about_effervescent .container,#hero_effervescent .container-lg,#hero_effervescent  .container-md,#hero_effervescent  .container-sm,#hero_effervescent  .container-xl {
    max-width: 1140px !important;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
:root {

    --bs-font-sans-serif: system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans','Liberation Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';

}
.about_effervescent {
  /*background: url('../images/effervescent-tablets-capab.webp') center center;*/
  background-size: cover;
  position: relative;
  padding: 80px 0;
  font-family: var(--bs-font-sans-serif);
  color: white !important;
}
.about_effervescent:before {
  content: '';
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about_effervescent .about_effervescent-img {
  position: relative;
  transition: 0.5s;
}
.about_effervescent .about_effervescent-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.about_effervescent .about_effervescent-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid var(--primary);
  border-top: 5px solid var(--primary);
  transition: 0.5s;
}
.about_effervescent .about_effervescent-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
  transition: 0.5s;
}
.about_effervescent .about_effervescent-img:hover {
  transform: scale(1.03);
}
.about_effervescent .about_effervescent-img:hover::before {
  left: 10px;
  top: 10px;
}
.about_effervescent .about_effervescent-img:hover::after {
  right: 10px;
  bottom: 10px;
}
.about_effervescent .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about_effervescent .content ul {
  list-style: none;
  padding: 0;
}
.about_effervescent .content ul li {
  padding-bottom: 10px;
}
.about_effervescent .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary);
}
.about_effervescent .content p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .about_effervescent {
    background-attachment: fixed;
}
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us_effervescent .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}
.why-us_effervescent .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.why-us_effervescent .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}
.why-us_effervescent .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us_effervescent .box:hover {
  background: var(--primary);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us_effervescent .box:hover span, .why-us_effervescent .box:hover h4, .why-us_effervescent .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
  background: #0c0b09;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid var(--primary);
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: var(--primary);
}
.specials .nav-link.active {
  color: #1a1814;
  background: var(--primary);
  border-color: var(--primary);
}
.specials .nav-link:hover {
  border-color: var(--primary);
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}
.specials .details p {
  color: #aaaaaa;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
}
}

.specials  {
    color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_oralspray {
  width: 100%;
  height: 100vh;
  background: url('../images/oral_spray.html') top center;
  background-size: cover;
  position: relative;
}
#hero_oralspray:before {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero_oralspray .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}
#hero_oralspray h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
#hero_oralspray h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}
#hero_oralspray .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#009961 50%, rgba(0, 153, 97, 0.4) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}
#hero_oralspray .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#hero_oralspray .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 153, 97, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#hero_oralspray .play-btn:hover::after {
  border-left: 15px solid #009961;
  transform: scale(20);
}
#hero_oralspray .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (min-width: 1024px) {
  #hero_oralspray {
    background-attachment: fixed;
}
}
@media (max-width: 768px) {
  #hero_oralspray h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero_oralspray h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
}
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
}
100% {
    transform: scale(1, 1);
    opacity: 0;
}
}
  p{
       
        hyphens: auto;
    }


/* For Search CSS Start */
*{
    padding : 0;
    margin : 0;
    box-sizing: border-box;
}
.modal-dialog{
    max-width: 100%;
}
.modal-content{
    border: 0;
    border-radius :0;
}
.container{
    max-width: 1330px;
}

.search{
    padding: .5rem .75rem;
    border-radius: .25rem;
    height: 2.75rem;
}

.border1{
   border: 1px solid black;
    width: 700px
}
input{
    outline: none;
}
ul{
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
}

.border1 i{
    position: absolute;
    right: 10px;
    top: 14px;
    font-size: 20px;
}

.menu i{
    font-size: 24px;
}

.col-14{
    width: 14%;
}

.zero{
    width : 22px;
    height : 22px ;
    line-height: 22px ;
    background-color: black;
    border-radius: 100%;
    color: white;
    text-align: center;
    position: absolute;
    right : 0   ;
    top: -10px;
    font-size: 12px;
}
a:hover{
    color: inherit;
}
.owl-nav,.owl-dots{
    display : none;
}

.owl-carousel img{
    width: 162px;
/*    height: 162px;*/
    object-fit: contain;
}

.w-162{
    width: 162px;
}

.show{
    display : none;
}
.modal-body{
    box-shadow: 5px 10px 200px #b9b9b9;
}

@media (max-width : 900px){
    .w-162{
       width: 100%;
    } 
    .border1{
        width: 500px;
    }
    .show{
        display: block;
    }
}

@media (min-width : 1200px) {
    .w-162{
        width: 162px;
    }
}
@media (max-width : 700px){
    .border1{
        width: 100%!important;
        margin-left: 20px;
    }
}
@media (max-width : 576px){
    .modal dialog{
        max-width: 100;
    }
}

/* Search CSS Code End */

