/*--------------------------------------------------------------
  TABLE OF CONTENTS:
----------------------------------------------------------------

** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Project
** - Project Details
** - Video
** - Funfact
** - Team
** - Team Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map

--------------------------------------------------------------*/

/***
=============================================
Common
=============================================
***/
:root {
  --cleanin-font: "Heebo", serif;
  --cleanin-font-two: "Exo", serif;
  --cleanin-base: #004a94;
  --cleanin-base-rgb: 0, 74, 148;
  --cleanin-black: #052944;
  --cleanin-black-rgb: 5, 41, 68;
  --cleanin-gray: #606060;
  --cleanin-gray-rgb: 96, 96, 96;
  --cleanin-white: #ffffff;
  --cleanin-white-rgb: 255, 255, 255;
  --cleanin-gray-bg: #f1f5f9;
  --cleanin-gray-bg-rgb: 241, 245, 249;
  --cleanin-bdr-color: #e5e5e5;
  --cleanin-bdr-color-rgb: 229, 229, 229;
  --cleanin-bdr-radius: 5px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--cleanin-font);
  color: var(--cleanin-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  overflow-x: hidden !important;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--cleanin-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--cleanin-font-two);
  color: var(--cleanin-black);
  margin: 0;
}

p {
  margin: 0;
  text-align: justify;
      font-family: 'Exo' !important;
      font-size: 18px;
} 

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0px;
}

ul li {
    color: #000;
    margin-right: 10px;
        font-family: 'Exo';
        font-size: 18px;
        font-weight: 500;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1350px !important;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/***
=============================================
Custom Cursor
=============================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--cleanin-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--cleanin-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--cleanin-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Active submenu item */
.main-menu__list li ul li.active > a,
.main-menu__list li ul li.current > a {
    background: var(--cleanin-base) !important;
    color: #fff !important;
}

/* Highlight ONLY Medical parent */
.main-menu__list li ul li.dropdown:has(ul li.active) > a,
.main-menu__list li ul li.dropdown:has(ul li.current) > a {
    background: var(--cleanin-base) !important;
    color: #fff !important;
}


.main-menu .main-menu__list > li > ul > li.dropdown:has(ul li.active) > a::after,
.main-menu .main-menu__list > li > ul > li.dropdown:has(ul li.current) > a::after {
    color: #fff !important;
}



/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 10px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sec-title__tagline.center {
  justify-content: center;
}

.sec-title__tagline .icon-box {
  position: relative;
  display: block;
}

.sec-title__tagline .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-base);
  font-size: 18px;
  line-height: 18px;
  top: -3px;
  padding-right: 7px;
}

.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: var(--cleanin-base);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--cleanin-font-two);
}

.sec-title__title {
  font-size: 40px;
  line-height: 58px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--cleanin-font-two);
}

/***
=============================================
   Thm Btn Css
=============================================
***/
.thm-btn {
    position: relative;
    display: inline-block;
    color: var(--cleanin-black);
    font-size: 18px;
    line-height: 55px;
    font-weight: 600;
    background: #fff;
    border-radius: 5px;
    padding: 0px 35px 0px;
    overflow: hidden;
    font-family: 'Exo';
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}

.thm-btn:hover {
  color: var(--cleanin-black);
}

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  top: 1px;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--cleanin-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--cleanin-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--cleanin-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--cleanin-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--cleanin-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--cleanin-white-rgb), .50);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--cleanin-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--cleanin-white);
  color: var(--cleanin-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--cleanin-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:before {
  background-color: var(--cleanin-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  display: block;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn .hover-btn {
  background: var(--cleanin-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--cleanin-base);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--cleanin-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--cleanin-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--cleanin-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--cleanin-white-rgb), .10);
  border-radius: 50%;
  color: var(--cleanin-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--cleanin-base);
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--cleanin-white);
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--cleanin-gray-rgb), .50);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--cleanin-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--cleanin-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--cleanin-white);
  background: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--cleanin-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--cleanin-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--cleanin-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--cleanin-white);
}


/***
=============================================
Scroll To Top Css
=============================================
***/
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--cleanin-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--cleanin-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cleanin-black);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
    right: 10px;
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(var(--cleanin-base-rgb), .80);
  transition: transform 500ms ease, opacity 500ms ease;
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup form {
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}

.search-active .search-popup form {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
  opacity: 1;
}

.search-popup .search-popup__group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .search-popup__group input {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 65px;
  color: var(--cleanin-black);
  height: 65px;
  width: 100%;
  padding: 0px 30px;
  background-color: var(--cleanin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  padding-right: 80px;
  outline: none;
  border: none;
  border-radius: 5px;
}

.search-popup button {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background: var(--cleanin-black);
  text-align: center;
  color: var(--cleanin-white);
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.search-popup button:hover {
  background: var(--cleanin-base);
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -170px;
  border-radius: 50%;
  text-align: center;
  color: var(--cleanin-white);
  background-color: var(--cleanin-black);
  width: 70px;
  height: 70px;
  border: 1px solid rgba(var(--cleanin-white-rgb), .30);
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search:hover {
  background-color: var(--cleanin-base);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 20px;
  line-height: 70px;
  color: var(--cleanin-white);
  transform: rotate(45deg);
}

/***
=============================================
Common
=============================================
***/

.thm-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 33px;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 40px;
  height: 6px;
  border: 1px solid rgba(var(--cleanin-black-rgb), .45);
  margin: 5px 7px;
  background: transparent;
  border-radius: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot.active span,
.thm-dot-style1.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

/***
=============================================
Mobile Nav Css
=============================================
***/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--cleanin-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  border-right: 3px solid rgba(var(--cleanin-white-rgb), .40);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 35px;
    right: 15px;
    font-size: 18px;
    color: var(--cleanin-white);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--cleanin-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--cleanin-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--cleanin-white);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--cleanin-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--cleanin-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--cleanin-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--cleanin-white);
  -webkit-transition: 500ms;
  transition: 500ms;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--cleanin-white-rgb), .30);
  border-radius: 50%;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--cleanin-base);
  background: var(--cleanin-white);
  border-color: var(--cleanin-white);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  color: var(--cleanin-white);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: var(--cleanin-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--cleanin-base);
}

.mobile-nav__contact li>i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--cleanin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-right: 10px;
  color: var(--cleanin-white);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}


/***
=============================================
Home Showcase Css
=============================================
***/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.main-header-one__bottom .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

.home-showcase__inner {
  padding: 40px 42px 33px;
  background-color: var(--cleanin-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
  justify-content: center;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
  border: 2px solid rgba(var(--cleanin-base-rgb), 0.25);
  border-radius: 5px;
  padding: 10px 10px 16px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--cleanin-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  border-radius: var(--cleanin-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--cleanin-black-rgb), .70);
  border-radius: var(--cleanin-bdr-radius);
}

.home-showcase__buttons__item {
  padding: 0px 17px 0px;
  width: 150px;
  text-align: center;
  color: var(--cleanin-white);
  background-color: var(--cleanin-base);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--cleanin-black);
  margin-top: 18px;
  text-transform: capitalize;
  font-family: var(--cleanin-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 46px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--cleanin-white, #ffffff);
}


/***
=============================================
Main Header One Css
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background-color: var(--cleanin-base);
  z-index: 99;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 65%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid var(--cleanin-black);
  border-left: 23px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__top .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0px;
}

.header-style1__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li+li {
  margin-left: 45px;
}

.header-style1__contact li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--cleanin-white-rgb), .60);
}

.header-style1__contact li:first-child:before {
  display: none;
}

.header-style1__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li .icon i {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 18px;
  line-height: 16px;
}

.header-style1__contact li .text {
  margin-left: 10px;
}

.header-style1__contact li .text p {
  color: var(--cleanin-white);
  font-size: 18px;
  line-height: 25px;
}

.header-style1__contact li .text p a {
  color: var(--cleanin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-style1__contact li .text p a:hover {
  color: var(--cleanin-white);
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 23px;
}

.main-header__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
}

.main-header__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-header__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 65px;
}

.main-header__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-header__language-switcher .nice-select {
  background-color: var(--cleanin-black);
  border-radius: 0px;
  color: var(--cleanin-white);
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--cleanin-font);
}

.main-header__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -5px;
  border-bottom: 1px solid var(--cleanin-white);
  border-right: 1px solid var(--cleanin-white);
}

.main-header__language-switcher .nice-select .list {
  width: 115px;
  background-color: var(--cleanin-black);
}

.header-style1__social-links {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  padding-left: 20px;
}

.header-style1__social-links::before {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -2px;
  width: 1px;
  background-color: rgba(var(--cleanin-white-rgb), .60);
  content: "";
}

.header-style1__social-links a {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
}

.header-style1__social-links a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.header-style1__social-links a:hover {
  color: var(--cleanin-white);
}

.header-style1__social-links a+a {
  margin-left: 20px;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: white;
  z-index: 2;
}

.main-header-one__bottom .container {
  max-width: 1590px;
  width: 100%;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
     justify-content: space-between; 
    gap: 50px;
    padding: 3px;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.logo-one {
  position: relative;
  display: block;
  z-index: 1;
}

.logo-one a {
  position: relative;
  display: block;
}

.logo-one p {
    font-size: 14px;
    color: var(--cleanin-black);
    font-family: Exo,sans-serif;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}

.logo-one a img {
  width: 100%;
}

.main-header-one__bottom-middle {
  display: block;
}

.main-menu__main-menu-box {
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: block;
  color: var(--cleanin-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--cleanin-base);
}

.main-header__shop {
  position: relative;
  display: block;
  margin-left: 18px;
}

.main-header__shop .icon-box {
  position: relative;
  display: block;
}

.main-header__shop .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--cleanin-black);
}

.main-header__shop .icon-box a:hover {
  color: var(--cleanin-base);
}

.main-header__shop .icon-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.main-header__shop .icon-box .count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--cleanin-base);
  border-radius: 50%;
}

.main-header__shop .icon-box .count span {
  position: relative;
  color: var(--cleanin-white);
  font-size: 12px;
  font-weight: 500;
  top: -1px;
}

.main-header__btn {
  position: relative;
  display: block;
  margin-left: 43px;
  line-height: 0px;
}

.stricky-header.stricky-header__one .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 38px;
}


.stricky-header.main-menu {
  background-color: var(--cleanin-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 33px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  color: var(--cleanin-black);
  font-size: 18px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--cleanin-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--cleanin-base);
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 45%;
  right: 0;
  font-family: 'icomoon' !important;
  content: "\e938";
  font-size: 12px;
  color: var(--cleanin-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--cleanin-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 0px 0px 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--cleanin-bdr-color-rgb), .80);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 18px;
  line-height: 16px;
  color: #000;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 18px 30px 17px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--cleanin-white);
  border-radius: 0px;
  z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: var(--cleanin-white);
}


.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0px;
  background-color: var(--cleanin-base);
  border-radius: 0px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
  border-left: 2px solid transparent;
  background-color: transparent;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list>li>ul>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 30px;
  font-family: 'icomoon' !important;
  content: "\e90e";
  font-size: 12px;
  color: var(--cleanin-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:hover.dropdown>a::after {
  color: var(--cleanin-white);
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 31px !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}



.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--cleanin-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--cleanin-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: var(--cleanin-base);
  cursor: pointer;
  line-height: 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--cleanin-black);
}

.main-menu .mobile-nav__toggler i::before {
  position: relative;
  display: inline-block;
  top: 2px;
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}





/***
=============================================
Main Header Two Css
=============================================
***/
.main-header-two {
  position: relative;
  display: block;
  z-index: 999;
}

.main-header-two .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: 6;
}

.main-header-two .container {
  max-width: 1630px;
  width: 100%;
}

.main-header-two__inner {
  position: relative;
  display: block;
}

.main-header-two__top {
  position: relative;
  display: block;
  padding: 14px 0px 14px;
  z-index: 1;
}

.main-header-two__top::before {
  position: absolute;
  top: 0;
  left: -999999px;
  bottom: 0;
  right: -999999px;
  background: var(--cleanin-black);
  content: "";
  z-index: -1;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 340px;
}

.header-style2__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__contact li+li {
  margin-left: 80px;
}

.header-style2__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--cleanin-white-rgb), .10);
  border-radius: 50%;
}

.header-style2__contact li .icon i::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 15px;
  line-height: 15px;
}

.header-style2__contact li .text {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.header-style2__contact li .text .text1 {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.header-style2__contact li .text .text2 {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.header-style2__contact li .text .text2 a {
  color: var(--cleanin-white);
}

.header-style2__contact li .text .text2 a:hover {
  color: var(--cleanin-white);
}


.header-style2__social-links {
  position: relative;
  display: block;
}

.header-style2__social-links .title-box {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.header-style2__social-links .title-box p {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.header-style2__social-links ul {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__social-links ul li {
  position: relative;
  display: block;
}

.header-style2__social-links ul li+li {
  margin-left: 10px;
}

.header-style2__social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--cleanin-white-rgb), .10);
  border-radius: 50%;
  z-index: 1;
}

.header-style2__social-links ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--cleanin-white);
  transition-delay: 0.5s;
  transition: .5s;
  border-radius: 50%;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-70deg) scale(0.2);
  transform: perspective(400px) rotateX(-70deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.header-style2__social-links ul li a:hover:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.header-style2__social-links ul li a span {
  position: relative;
  display: block;
  line-height: 0px;
}

.header-style2__social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 13px;
  line-height: 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-style2__social-links ul li a:hover span::before {
  color: var(--cleanin-black);
}

.main-header-two__bottom {
  position: relative;
  display: block;
}

.main-header-two__bottom .container {
  padding: 0px;
}

.main-header-two__bottom .main-menu__wrapper-inner {
  padding-left: 340px;
}

.main-header-two__logo {
  position: absolute;
  top: -90px;
  left: 0;
  width: 240px;
  height: 169px;
  display: flex;
  align-items: center;
  z-index: 5;
}

.main-header-two__logo::before {
  position: absolute;
  top: 0;
  left: -99999px;
  bottom: 0;
  right: 0;
  border-top: 169px solid var(--cleanin-base);
  border-right: 50px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-two__logo::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -50px;
  height: 50px;
  width: 85px;
  border-bottom: 90px solid rgba(var(--cleanin-base-rgb), .80);
  border-left: 10px solid transparent;
  border-right: 50px solid transparent;
  z-index: -1;
}

.main-header-two__bottom-left {
  display: block;
}

.main-header-two .main-menu .main-menu__list>li,
.stricky-header.stricky-header__two .main-menu__list>li {
  padding-top: 28px;
  padding-bottom: 26px;
}

.main-header-two__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__bottom-right .sidebar-icon {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-left: 20px;
  padding-right: 10px;
}

.main-header-two__bottom-right .sidebar-icon::after {
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 0px;
  width: 1px;
  background: var(--cleanin-black);
  content: "";
}

.main-header-two__bottom-right .sidebar-icon a {
  position: relative;
  display: block;
  width: 41px;
}

.main-header-two__bottom-right .sidebar-icon a span+span {
  margin-top: 5px;
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-1 {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-1 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-2 {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-2 {
  width: 20px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-3 {
  position: relative;
  display: block;
  height: 2px;
  width: 25px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-3 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .main-header__btn {
  margin-left: 0px;
}

.main-header-two__bottom-right .main-header__btn .thm-btn {
  line-height: 49px;
}

.stricky-header__two .container {
  max-width: 1630px;
  width: 100%;
}

.stricky-header__two .main-header-two__logo {
  position: relative;
  top: 0px;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  align-items: center;
  padding-right: 30px;
  z-index: 5;
}

.stricky-header__two .main-header-two__logo::before {
  position: absolute;
  top: -22px;
  left: -99999px;
  bottom: -19px;
  right: 0;
  border-top: none;
  border-right: none;
  background: var(--cleanin-base);
  content: "";
  z-index: -1;
}

.stricky-header__two .main-header-two__logo::after {
  display: none;
}

.stricky-header.stricky-header__two .main-menu__list>li {
  padding-top: 38px;
  padding-bottom: 36px;
}

.main-header-two .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

.stricky-header__two .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}



/***
=============================================
Main Header Three Css
=============================================
***/
.main-header-one--three {
  position: relative;
  display: block;
}

.main-header-one--three .main-header-one__top::before {
  display: none;
}

.main-header-one--three .main-header__language-switcher .nice-select {
  background-color: var(--cleanin-base);
}

.main-header-one--three .main-header__language-switcher .nice-select .list {
  background-color: var(--cleanin-base);
}

.main-header-one--three .nice-select .option:hover,
.main-header-one--three .nice-select .option.focus,
.main-header-one--three .nice-select .option.selected.focus {
  background-color: var(--cleanin-black);
}


/***
=============================================
Main Header Four Css
=============================================
***/
.main-header-one--four {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(var(--cleanin-white-rgb), 0.05);
  z-index: 99;
}

.main-header-one--four .main-slider-one__bg::before {
  background: rgba(var(--cleanin-base-rgb), 0.6);
}

.main-header-one--four .main-header-one__top {
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--cleanin-white-rgb), 0.12);
}

.main-header-one--four .main-header-one__top-inner {
  padding: 12px 0px;
}

.main-header-one--four .main-header-one__bottom {
  background: transparent;
}

.main-header-one--four .main-header-one__top::before {
  display: none;
}

.main-header-one--four .header-style1__contact li:before {
  background-color: rgba(var(--cleanin-white-rgb), .15);
}

.main-header-one--four .main-header__language-switcher .nice-select {
  background-color: transparent;
}

.main-header-one--four .header-style1__social-links::before {
  background-color: rgba(var(--cleanin-white-rgb), .15);
}

.main-header-one--four .main-menu__search {
  color: var(--cleanin-white);
}

.main-header-one--four .main-header__shop .icon-box a {
  color: var(--cleanin-white);
}

.main-header-one--four .main-menu .main-menu__list>li>a,
.main-header-one--four .stricky-header .main-menu__list>li>a {
  color: var(--cleanin-white);
}

.main-header-one--four .main-menu .main-menu__list>li.dropdown>a:after {
  color: var(--cleanin-white);
}

.main-header-one--four .main-header__btn .thm-btn {
  background: rgba(var(--cleanin-white-rgb), 0.25);
}



.stricky-header.stricky-header--four .main-menu__list>li {
  padding-top: 40px;
  padding-bottom: 38px;
}

.stricky-header.stricky-header--four.main-menu {
  background-color: var(--cleanin-base);
}


.stricky-header.stricky-header--four .main-menu__list>li>a {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four.main-menu .main-menu__list>li.dropdown>a:after {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-menu__search {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-header__shop .icon-box a {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-header__shop .icon-box .count {
  background: var(--cleanin-black);
}

.stricky-header.stricky-header--four .main-header__btn .thm-btn {
  background: var(--cleanin-white);
  color: var(--cleanin-black);
}

.stricky-header.stricky-header--four .main-header__btn .thm-btn:hover {
  color: var(--cleanin-white);
}


/***
=============================================
Main Header Five Css
=============================================
***/
.main-header-five {
  position: relative;
  display: block;
  z-index: 99;
}

.main-header-five__top {
  position: relative;
  display: block;
  background: var(--cleanin-base);
  padding: 8px 0px 9px;
}

.main-header-five__top::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  width: 405px;
  background: rgba(var(--cleanin-white-rgb), 1.0);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  content: "";
}

.main-header-five__top .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-five__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 319px;
}

.main-header-five__top-right {
  position: relative;
  display: block;
}

.main-header-five__top-right .header-style1__social-links {
  padding-left: 0px;
}

.main-header-five__top-right .header-style1__social-links::before {
  display: none;
}

.main-header-five__bottom {
  position: relative;
  display: block;
  background: var(--cleanin-white);
  z-index: 2;
}

.main-header-five__bottom .logo-one {
  margin-top: -43px;
}

.main-header-five__bottom .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-five__bottom-left {
  position: relative;
  display: block;
}

.main-header-five__bottom-middle {
  display: block;
}

.main-header-five__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header-five__bottom-right .sidebar-icon {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding-right: 10px;
}

.main-header-five__bottom-right .sidebar-icon::after {
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 0px;
  width: 1px;
  background: var(--cleanin-black);
  content: "";
}

.main-header-five__bottom-right .sidebar-icon a {
  position: relative;
  display: block;
  width: 41px;
}

.main-header-five__bottom-right .sidebar-icon a span+span {
  margin-top: 5px;
}

.main-header-five__bottom-right .sidebar-icon a .nav-sidebar-menu-1 {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-five__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-1 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-five__bottom-right .sidebar-icon a .nav-sidebar-menu-2 {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-five__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-2 {
  width: 20px;
  background: var(--cleanin-base);
}

.main-header-five__bottom-right .sidebar-icon a .nav-sidebar-menu-3 {
  position: relative;
  display: block;
  height: 2px;
  width: 25px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-five__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-3 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-five__bottom-right .main-header__btn {
  margin-left: 0px;
}

.stricky-header__one--five .main-header-five__bottom-right .sidebar-icon {
  padding-left: 15px;
  margin-left: 15px;
  margin-right: 5px;
  padding-right: 0px;
}

.main-header-five__bottom-middle .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}


/* New css */



/* Padding class */
.secspacing {
  margin-top: 50px;
}

/* Our Strengths */

:root{
--red:#b82a21; /* main red */
--red-dark:#9b241d; /* darker strip */
--light-gray:#efefef;
--card-bg:#f5f5f5;
}
.section-title {
  color:var(--red); 
  font-size:40px; f
  ont-weight:700; 
  margin-bottom:18px
}
.strengths-wrap {
  border:1px solid #e6e6e6; 
  padding:18px;
  background:#fff}
.strength-item {
  display:flex; 
  align-items:stretch; 
  background:transparent; 
  border-bottom:8px solid #fff;
}
.item-left {
  width:280px; 
  min-width:220px; 
  background: var(--cleanin-black); 
  color:#fff; 
  position:relative; 
  display:flex; 
  align-items:center
}
.item-left .inner {
  padding:26px 36px 26px 22px; 
  position:relative; 
  width:100%
}
.item-left .number {
  position:absolute; 
  left:10px; 
  top:50%; 
  transform:translateY(-50%); 
  font-size:46px; 
  font-weight:300; 
  opacity:0.95
}
.item-left .title {
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0 !important;
    color: #fff;
        font-family: 'Exo';
        font-weight: 700;
}
.item-left::before {
  content:''; 
  position:absolute; 
  left:0; 
  top:0; 
  bottom:0; 
  width:48px;
}
/* arrow triangle */
.item-left::after {
  content:''; 
  position:absolute; 
  right:-46px; 
  top:0; 
  width:0; 
  height:0; 
  border-top:60px solid transparent; 
  border-bottom:60px solid transparent; 
  border-left:46px solid var(--red); 
  transform:translateY(calc(50% - 60px));
}
.item-right {
  flex:1; 
  background:var(--card-bg); 
  padding:28px 30px; 
  border-left:1px solid rgba(0,0,0,0.03)
}
.item-right ul {
  padding-left:50px; 
  margin:0
}
.item-right li {
  margin-bottom:10px; 
  color:#000; 
  line-height:1.6;
      font-family: 'Exo';
}
/* thin separator like image */
.strength-item + .strength-item {
  margin-top:12px
}
/* make arrow height responsive for each item */
.strength-item .item-left::after {
  border-top:44px solid transparent; 
  border-bottom:44px solid transparent; 
  border-left:44px solid var(--cleanin-black); 
  right:-44px; 
  top:50%; 
  transform:translateY(-50%)
}
/* smaller screens */
@media (max-width:767px) {
.strength-item {
  flex-direction:column;
}
.item-left {
  width:100%; 
  min-width:0;
}
.item-left::after {
  display:none;
}
.item-left .number {
  left:18px;
}
.item-left .title {
  margin-left:68px; 
  text-align:left;
}
}
/* subtle box look like slide */
.strengths-wrap {
  box-shadow:0 0 0 4px rgba(194,150,106,0.05), inset 0 -2px 0 #d09f7a;
}
/* small logo at bottom-right (optional) */
.preview-logo {
  position:fixed; 
  right:18px; 
  bottom:18px; 
  width:90px
}


/* R and D section */

/* SECTION WRAPPER */
}
/* LEFT PANEL WITH PERFECT IMAGE FIT */
.rnd-left-panel {
    position: relative;
    width: 100%;   /* Prevent overflow */
    height: auto;
    overflow: hidden;     /* Ensures image stays inside */
}

.rnd-left-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Keeps image looking perfect */
    object-position: center;
}

.rnd-left-overlay{
position:absolute;
inset:0;
/*background: linear-gradient(135deg, rgba(0,86,166,0.65), rgba(200,16,46,0.65));*/
display:flex;
justify-content:center;
align-items:center;
padding:30px;
text-align:center;
}
.rnd-left-overlay h3{
color:#fff;
font-size:28px;
font-weight:700;
line-height:1.4;
}


/* RIGHT PANEL */
.rnd-right-panel{
padding:50px;
}
.section-title{
font-size:32px;
font-weight:800;
color:#c8102e;
margin-bottom:25px;
}
.rnd-quote{
font-style:italic;
color:#0056a6;
font-weight:700;
margin-bottom:20px;
font-size:24px;
text-align: center;
}
.rnd-right-panel p{
color:#000;
font-size:18px;
line-height:1.8;
margin-bottom:18px;
font-weight: 500;
}
.highlight{
color:#c8102e;
}
.logo-box img{
width:120px;
opacity:0.9;
transition:0.3s;
}
.logo-box img:hover{
opacity:1;
}


/* Responsive */
@media(max-width:992px){
.rnd-left-overlay h3 { 
  font-size:22px;
}
.rnd-right-panel {
    padding: 30px;
    padding-top: 10px;
}
}


/* Why Medex technology */

.section-wrapper {
  background:#fff;
  border-radius:18px;
  padding:48px;
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
}
.title {
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#0b74c9;
  margin-bottom:40px;
}


/* LAYOUT */
.main-grid {
  display:grid;
  grid-template-columns:1fr 300px 1fr;
  gap:40px;
  align-items:center;
}
@media(max-width:992px) {
  .main-grid {
    grid-template-columns:1fr;
    gap: 10px;
  }
}


/* CENTER IMAGE */
.center-img-box {
  text-align:center;
}
.center-img {
  width:260px;
  height:260px;
  border-radius:50%;
  object-fit:cover;
  border:8px solid #e9edf5;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}
@media(max-width:768px) {
  .center-img {
    width:200px;
    height:200px;
  }
}


/* LISTS */
.list-box{}
.point-item {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:16px;
}
.point-icon {
  width:30px;
  height:30px;
  border-radius:50%;
  background: var(--cleanin-black);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:16px;
  flex-shrink:0;
}
.point-text {
  font-size:18px;
  color:#000;
  line-height:1.6;
      font-family: 'Exo';
      font-weight: 500;
}


/* List of true India */

:root{
}


.why-wrap{
margin:0 auto;
border-radius:14px;
box-shadow:0 18px 40px rgba(10,30,60,0.06);
padding:28px;
}


.why-title{
text-align:left;
font-size:26px;
font-weight:800;
color:var(--accent);
margin-bottom:18px;
}


.why-sub{
color:var(--muted);
margin-bottom:24px;
}


/* 2x2 grid */
.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}
@media (max-width:880px){
.why-grid{grid-template-columns:1fr;}
}


.why-card{
display:flex;
gap:18px;
align-items:flex-start;
background:linear-gradient(180deg,#ffffff,#fbfdff);
padding:20px;
border-radius:10px;
box-shadow:0 8px 20px rgba(10,30,60,0.04);
border-left:4px solid rgba(11,116,201,0.12);
transition:transform .18s ease, box-shadow .18s ease;
}
.why-card:hover{
transform:translateY(-6px);
box-shadow:0 22px 40px rgba(10,30,60,0.08);
}


.badge-num{
min-width:56px;
height:56px;
border-radius:10px;
background:linear-gradient(135deg,var(--accent),#4aa3ff);
color:#fff;
display:grid;
place-items:center;
font-weight:800;
font-size:18px;
box-shadow:0 6px 18px rgba(11,116,201,0.14);
font-family: 'Exo';
}


.card-body{
flex:1;
padding: 0 !important;
}


.card-heading{
font-weight:700;
color:#1f2b3a;
margin-bottom:6px;
font-size:18px;
    font-family: 'Exo';
}


.card-list { 
  margin:0; 
/*  padding-left:20px; */
  color:#333; 
}
.card-list li { 
  margin-bottom:8px; 
  line-height:1.6; 
  font-size:18px; 
      font-family: 'Exo';
      font-weight: 500;
}


/* optional small icons using unicode */
.li-dot::marker { 
  color:var(--accent-2); 
  font-size:18px; 
}


/* final note */
.footer-note { 
  text-align:right; 
  margin-top:18px; 
  color:var(--muted); 
  font-size:13px; 
}

/* Leadership team */

.leadership-card{
border-radius:8px;
}


.lead-title{
color:#0b74c9;
font-weight:800;
margin-bottom:8px;
}


.lead-sub{
color: #000;
margin-bottom:20px;
}


/* three columns: each leader in its own column */
.row-leaders{
display:flex;
gap:24px;
align-items:flex-start;
}


.col-leader{
flex:1;
text-align:center;
padding:18px;
}


.portrait {
    width: 350px;
    height: 350px;
    border-radius: 6px;
    object-fit: cover;
    /* border: 4px solid #000; */
    /* box-shadow: 0 6px 18px rgba(0,0,0,0.08); */
    /* margin: 0 auto; */
}


.name{
color: #000;
font-weight:700;
margin-top:12px;
font-size: 24px;
margin-bottom:6px;
    font-family: 'Exo';
}


.role{
font-size:18px;
color: #000;
margin-bottom:18px;
    font-family: 'Exo';
    font-weight: 600;
}


.points{
text-align:left;
    font-family: 'Exo';
}

/*
.stricky-header {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.stricky-header.visible-header {
    opacity: 1;
    visibility: visible;
}*/



/* New css 15-12-25 */

/* Force header into its own stacking context */
.main-header-one {
    position: relative;
    z-index: 9999;
    isolation: isolate;
    background: #fff;
}

/* Ensure dropdown menus are not clipped */
.main-menu__list li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10000;
    background: #ffffff;
}

/* Critical: keep slider below header */
.main-slider-one,
.main-slider__carousel,
.owl-stage-outer {
    position: relative;
    z-index: 1;
}


/* Textile css */


.update-section .icon-box {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-section .icon-box img {
  width: 100%;
  height: auto;
}

.update-section h2 {
    font-weight: 600;
    color: #0b2c4d;
    font-style: italic;
}



.gold-shine-text {
    position: relative;
    font-size: 100px;
    font-weight: 600;
        font-style: italic;
    letter-spacing: 2px;

    /* PURE METALLIC GOLD */
    background: linear-gradient(
        120deg,
        #5c4312,
        #b08d2a,
        #d4af37,
        #f5e08e,
        #d4af37,
        #b08d2a,
        #5c4312
    );
    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldFlow 5s linear infinite;
}

/* METALLIC FLOW */
@keyframes goldFlow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* SHINING LIGHT SWEEP */
.gold-shine-text::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -150%;
    width: 120%;
    height: 140%;

    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.9) 50%,
        transparent 70%
    );

    transform: skewX(-20deg);
    animation: shineMove 3.5s ease-in-out infinite;
    pointer-events: none;
}

/* SHINE MOTION */
@keyframes shineMove {
    0%   { left: -150%; opacity: 0; }
    40%  { opacity: 0.4; }
    60%  { opacity: 0.8; }
    100% { left: 150%; opacity: 0; }
}


/* Intro for Patient css */

.how-it-works-ref {
    position: relative;
    overflow: hidden;
}


/* Floating pill */
.how-pill {
    position: absolute;
    top: 90px;
    left: 50%;
    padding: 12px 30px;
    border-radius: 40px;
}

/* Cards */
.work-flow {
    position: relative;
}

.work-item {
    text-align: center;
    position: relative;
}

/* Circular card */
.circle-card {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Icon */
.icon-box img {
    width: 100%;
}


/* Step text */


.step span {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border-radius: 20px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo';
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.step h5 {
    margin-top: 14px;
    font-weight: 700;
    color: var(--cleanin-black);
}

.step p {
    font-size: 18px;
    color: #000;
    max-width: 260px;
    font-weight: 500;
    font-family: 'Exo';
    margin: 10px auto 0;
    text-align: center;
}

/* Responsive */
@media(max-width:991px){
    .work-item::after {
        display: none;
    }
    .work-item {
        margin-bottom: 10px;
    }
}


/* Patient css */

.image-card {
    padding: 12px;
  }

.info-card {
    background: #f3f7ff;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.info-card.wide {
    background: #ffffff;
}

.info-card h5 {
    font-weight: 700;
    color: var(--cleanin-black);
    margin-bottom: 8px;
    font-size: 24px;
    font-family: 'Exo';
}

.info-card p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
    line-height: 1.6;
    margin-bottom: 0;
}
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 600;
}

.bg-light {
    background-color: #15304b !important;
    padding: 10px;
}

/* Multipara */

.multipara-section {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    padding: 10px;
}

.section-title {
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
}

/* Model Tiles */
.model-tile {
    background: #ffffff;
    border: 1px solid #e5eef7;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
     border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13,110,253,0.15);
}

.model-tile h4 {
    font-weight: 600;
    color: #0b2c4d;
    margin-bottom: 15px;
}

.model-tile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-tile ul li {
    padding: 6px 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
}

.model-tile.highlight {
    border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13,110,253,0.15);
}

/* Info Panels */
.info-panel {
   border-color: #0d6efd;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.15);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.info-panel h5 {
    font-weight: 700;
    color: var(--cleanin-black);
    margin-bottom: 18px;
    font-size: 24px;
    font-family: 'Exo';
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo';
    font-size: 18px;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 600;
}
.multipara-section img {
    background: #ffffff;
    padding: 12px;
}

/* Modualr css */
.modular-monitor-v2 {
    background: linear-gradient(135deg, #f9fbfd, #eef3f9);
    padding: 10px;
}

.tech-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.monitor-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--cleanin-black);
    line-height: 1.2;
    font-family: 'Exo';
}

.monitor-title span {
    color: #0d6efd;
}

.monitor-desc {
        color: #000;
    font-weight: 500;
    font-family: 'Exo';
    font-size: 18px;
    margin: 18px 0 25px;
    max-width: 520px;
}

.feature-columns {
    display: flex;
    gap: 40px;
}

.feature-columns ul {
    list-style: none;
    padding-left: 0;
}

.feature-columns li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
        color: #000;
    font-weight: 500;
    font-family: 'Exo';
    font-size: 18px;
}

.feature-columns li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-weight: 600;
}

.monitor-image {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.parameter-strip {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.parameter-strip strong {
    margin-right: 10px;
    color: var(--cleanin-black);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Exo';
}

.parameter-strip span {
    background: #eef4ff;
    color: #0d6efd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
}


.application-bar {
    background: #0b2c4d;
    color: #ffffff;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    font-size: 14px;
}

.application-bar strong {
    margin-right: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Exo';
}
.application-bar span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
}

/* Diagnostic css */


/* TOP TEXT */
.ecg-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 10px;
}

.ecg-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 14px;
    font-family: 'Exo';
}

.ecg-intro {
    font-size: 17px;
    color: #495057;
    max-width: 640px;
    margin: 0 auto 70px;
}

/* CORE LAYOUT */
.ecg-core-layout {
    position: relative;
}

/* IMAGE CENTER */
.ecg-image-center {
    text-align: center;
}

.ecg-device-frame {
    background: #ffffff;
    padding: 10px;
    border-radius: 26px;
    box-shadow: 0 35px 90px rgba(0,0,0,0.15);
}

.ecg-device-frame img {
     border-radius: 26px;
}

.ecg-image-caption {
    display: block;
    margin-top: 16px;
    font-size: 18px;
    color: #000;
    font-family: 'Exo';
    font-weight: 500;
}

/* CONTENT FLOWS */
.ecg-left-flow,
.ecg-right-flow {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.ecg-point h6 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--cleanin-black);
    margin-bottom: 10px;
    font-family: 'Exo';
}

.ecg-point p,
.ecg-point ul li {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo';
    padding: 5px;
}

.ecg-point ul {
    padding-left: 18px;
}

/* USAGE TAGS */
.ecg-usage {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ecg-usage span {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    color: #495057;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .ecg-main-title {
        font-size: 36px;
    }

.ecg-core-layout {
    margin-top: 10px;
    text-align: center;
}

    .ecg-left-flow,
    .ecg-right-flow {
        gap: 10px;
        margin-bottom: 0px;
    }

    .ecg-image-center {
        margin: 10px 0;
    }
}
/* ROTATING IMAGE WRAPPER */
.ecg-rotating-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

/* COMMON ROTATING CIRCLE */
.ecg-rotating-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    border-radius: 50%;
}

/* CIRCLE 1 */
.circle-one {
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    animation: rotateClockwise 18s linear infinite;
}
/* CIRCLE 2 */
.circle-two {
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    animation: rotateAntiClockwise 12s linear infinite;
}

/* IMAGE INSIDE CIRCLES */
.ecg-rotating-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* PRODUCT IMAGE (STATIC ON TOP) */
.ecg-product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.ecg-product-image img {
    width: 100%;
    border-radius: 20px;
}

/* ROTATION ANIMATIONS */
@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAntiClockwise {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ecg-rotating-wrapper {
        width: 260px;
        height: 260px;
    }

    .circle-one {
        width: 240px;
        height: 240px;
    }

    .circle-two {
    width: 300px;
    height: 300px;
}

    .ecg-product-image {
        width: 250px;
        height: 250px;
    }
}


/* Imaging css */
.carm-platform-section {
    background: #ffffff;
}

/* Intro */
.platform-eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0d6efd;
}

.platform-heading {
    font-size: 46px;
    font-weight: 700;
    color: #0b2c4d;
    margin: 12px 0;
}

.platform-description {
    font-size: 17px;
    color: #6c757d;
    max-width: 760px;
    margin: 0 auto;
}

/* Image Band */
.carm-image-band {
    text-align: center;
}

.carm-image-band img {
    max-width: 100%;
    border-radius: 24px;
}

/* Systems */
.system-row {
    padding: 40px 0;
}

.system-label {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    color: #0d6efd;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Exo';
}

.system-label.premium {
    color: #0b2c4d;
}

.system-row h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cleanin-black);
    font-family: 'Exo';
}

.system-row p {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo';
    margin-bottom: 16px;
}

/* Points */
.system-points {
    padding-left: 18px;
}

.system-points li {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
    font-family: 'Exo';
}

/* Divider */
.system-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d0d7e2, transparent);
}

/* Applications */
.applications-strip {
    text-align: center;
    margin-top: 60px;
    padding: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    background: #0b2c4d;
    border-radius: 18px;
    align-items: center;
}

.applications-strip span {
    color: #ffffff;
    font-size: 18px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.35);
    font-family: 'Exo';
    font-weight: 500;
}

.applications-strip h5 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

/* interventional css  */

.cathlab-hero {
    background: linear-gradient(120deg, #f6f9ff 0%, #ffffff 60%);
    overflow: hidden;
}

/* Left Content */
.cathlab-content {
    padding: 80px 60px;
}

.system-badge {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: 'Exo';
}

.cathlab-title {
    font-size: 44px;
    font-weight: 800;
    color: #0b2c4d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cathlab-lead {
    font-size: 19px;
    color: #5c6f84;
    max-width: 540px;
}

.cathlab-divider {
    width: 80px;
    height: 4px;
    background: #1a73e8;
    margin: 10px 0 30px;
    border-radius: 2px;
}

/* Feature points */
.cathlab-points .point {
    margin-bottom: 22px;
}

.cathlab-points strong {
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 6px;
    font-family: 'Exo';
    font-weight: 500;
    font-family: 'Exo';
}

.cathlab-points span {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    font-family: 'Exo';
    font-weight: 500;
}

/* Applications */
.application-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.application-row h5 {
    font-size: 24px;
    color: var(--cleanin-black);
    font-family: 'Exo';
    font-weight: 700;
}

.application-row span {
    padding: 10px 18px;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Exo';
}

/* Right Image */
.cathlab-visual {
    padding: 60px;
}

.image-frame {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.25);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .cathlab-content {
        padding: 10px;
    }

    .cathlab-title {
        font-size: 32px;
    }

    .cathlab-visual {
        padding: 20px;
        margin-top: 0px;
    }
}


.keyfeatures1 h5 {
    text-align: left;
    margin-top: 20px;
    font-size: 24px;
    color: var(--cleanin-black);
    font-family: 'Exo';
    font-weight: 700;
}

.about-one__content-text p {
  font-size: 18px;
  color: #000;
}

.para {
  font-weight: 500;
    font-size: 18px;
    color: #000;
    font-family: 'Exo';
}

.head1 {
      font-size: 24px;
    font-weight: 700;
    color: var(--cleanin-black);
    font-family: 'Exo';
    margin-bottom: 10px;
}

.icon-box1 {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.model-stripe-wrap {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.model-stripe {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    height: auto;
    border: 3px solid var(--cleanin-black);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    background: #fff;
}

.model-stripe strong {
    font-size: 24px;
    color: var(--cleanin-black);
    font-weight: 700;
    font-family: 'Exo';
    text-align: center;
    margin-bottom: 10px;
}

.model-stripe span {
    font-size: 18px;
    color: #000;
    line-height: 1.4;
    font-family: 'Exo';
    font-weight: 500;
    text-align: center;
}

/* Mobile behavior */
@media (max-width: 768px) {
    .model-stripe-wrap {
        flex-direction: row;
        align-items: center;
        margin: 10px;
    }
}

.patientimg {
  width: 100%;
  height: 550px;
  border-radius: 20px;
}

.page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 320px; /* adjust height if required */
}

.page-header__inner1 h2 {
    margin: 0;
    text-align: center;
        color: var(--cleanin-white);
    font-size: 50px;
    line-height: 1.1em;
    font-weight: 700;
    text-transform: capitalize;
}

/* Mobile menu new */
/* Overlay */
.mb-nav-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.mb-nav-wrapper.active {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.mb-nav-panel {
  width: 300px;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mb-nav-wrapper.active .mb-nav-panel {
  transform: translateX(0);
}

/* Header */
.mb-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mb-nav-logo img {
  max-height: 40px;
}

.mb-nav-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Menu */
.mb-nav-menu {
  flex: 1;
  overflow-y: auto;
}

.mb-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-nav-menu li {
  border-bottom: 1px solid #eee;
}

.mb-nav-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #222;
  text-decoration: none;
}

/* Dropdown */
.mb-nav-menu li ul {
    display: none;
    background: #dbdbdb;
}

.mb-nav-menu li.open > ul {
  display: block;
}

.mb-nav-toggle {
  background: none;
  border: none;
  font-size: 16px;
}

/* Social */
.mb-nav-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  border-top: 1px solid #eee;
}

.mb-nav-social a {
  font-size: 18px;
  color: #222;
}
.mb-nav-menu a.mb-active,
.mb-nav-menu li.open > a {
  background: var(--cleanin-base);
  color: #fff;
}

.mb-nav-menu li.open > a .mb-nav-toggle {
  color: #fff;
}


.main-slider-one__bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1240px;
}


/* ===============================
   STICKY HEADER – FINAL FIX
================================ */

.stricky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    /*overflow-y: hidden !important;*/
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.25s ease;
}

.stricky-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Layout */
.stricky-header .main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.stricky-header .logo-one img {
    height: 70px;
}

@media (max-width: 991.98px) {

    /* Make sticky header look different */
    .stricky-header {
        background: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }

    /* Force proper mobile layout */
    .stricky-header .main-menu__wrapper-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo left */
    .stricky-header .logo-one {
        flex: 0 0 auto;
    }

    .stricky-header .logo-one img {
        height: 60px !important;
    }

    /* Hide full menu */
    .stricky-header .main-menu__list {
        display: none !important;
    }

    /* Hamburger right */
    .stricky-header .mobile-nav__toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #000;
        margin-left: auto;
    }

    /* Reduce header height */
    .stricky-header .main-header-one__bottom {
        padding: 8px 0;
    }
}



/* Responsive  */
@media (max-width: 991.98px) {
  .contact-page--two__content .social-links {
    margin: 25px;
}

.sec-title__title {
    font-size: 25px;
    line-height: 1.3 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services-one__single .shadow-one {
  display: none;
}
.services-one__single .shadow-two {
  display: none;
}
.working-process-one__single .icon {
    width: 120px;
    height: 120px;
    margin-bottom: 5px;
}
.services-one__single-icon {
  width: 100px;
  height: 100px;
}

.services-one__single-inner h2 {
    font-size: 20px;
    line-height: unset;
}
  .custom-cursor__cursor  {
    display: none !important;
  }
  .mobile-nav__wrapper {
    display: none;
  }
  .secspacing {
    margin-top: 30px;
  }
.reverse {
    display: flex;
    flex-direction: column-reverse;
}
.logo-one a img {
    width: 90%;
}
.logo-one p {
  font-size: 16px;
}
.main-menu__wrapper-inner {
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}
.main-header-one {
    position: relative;
    z-index: 1001;
  }

  .full-width-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

  /* Fullscreen mobile nav */
  .mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s ease, visibility 0.4s ease;
  }

  .mobile-nav__wrapper.expanded {
    visibility: visible;
    transform: translateX(0);
  }

  /* Dark overlay */
  .mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
  }

  /* Menu panel */
  .mobile-nav__content {
    position: relative;
    width: 280px;
    height: 100%;
    background: #0b2a3f;
    padding-top: 100px; /* header space */
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  /* Dropdown arrow */
  .mobile-nav__content .main-menu__list li.dropdown > a {
    position: relative;
    padding-right: 45px;
  }

  .mobile-nav__content .main-menu__list li.dropdown > a > button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-nav__content .main-menu__list li.dropdown > a > button.expanded {
    transform: translateY(-50%) rotate(0);
    background: #fff;
    color: #0b2a3f;
  }

  /* Submenus */
  .mobile-nav__content .main-menu__list li > ul {
    display: none;
    background: rgba(255,255,255,0.05);
    padding-left: 15px;
  }

  .main-slider-one__single {
    position: relative;
    z-index: 2;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

  .main-slider-one__single {
  position: relative;
  min-height: 60vh; /* adjust if your slider has fixed height */
}

  .main-slider-one__single {
    padding: 0;
  }
  .main-slider-one__content .tagline span {
    font-size: 16px;
  }
.main-slider-one__btn {
    display: flex !important;
    justify-content: center !important;
}

/* Background image layer */
.main-slider-one__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}


/* Content alignment */
.title-animation {
    font-size: 16px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
     overflow: hidden !important;
    display: block !important;
}
.sec-title__tagline {
  align-items: center;
  justify-content: center;
}
.title-animation {
    font-size: 16px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}
.sec-title__tagline {
  margin-bottom: 5px;
}
.about-one__content-list  {
  margin-top: 5px;
}
body {
  padding-left: 0 !important;
}
.about-one__content-list ul li .icon-box span::before {
  font-size: 20px
}
p {
  font-size: 16px;
}
.about-one__content-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Center icon */
  .about-one__content-list li .icon-box {
    margin-bottom: 12px;
  }

  /* Center heading */
  .about-one__content-list li .content-box h3 {
    text-align: center;
    margin-bottom: 8px;
  }

  /* Center paragraph */
  .about-one__content-list li .content-box p {
    text-align: justify;
  }

  /* Remove desktop spacing */
  .about-one__content-list li .content-box {
    padding-left: 0;
  }
  .about-one__img-left {
    padding-top: 10px;
  }
.col-leader {
    padding: 0;
    margin: 0 !important;
}
  ul li {
    margin: 10px;
    font-size: 16px;
  }
  .item-left .inner {
    padding: 10px;
  }
  .item-left .title {
    margin-left: 0 !important;
    text-align: center !important;
    font-size: 18px;
}
.item-right ul {
  padding-left: 0 !important;
}
.item-right {
  padding: 10px;
}
.item-right li, .rnd-right-panel p {
  font-size: 16px;
}
.rnd-quote {
  font-size: 18px;
}
.why-wrap {
  padding: 10px;
}
.card-list li, .history-page__single-content p {
  font-size: 16px;
}
.why-card {
  padding: 5px;
}
.history-page__single {
  margin-bottom: 15px;
}
.section-wrapper {
  padding: 10px;
}
.testimonial-three__left .sec-title {
  padding-bottom: 5px;
}
.testimonial-three__single-inner p, .testimonial-three__single-bottom .author-info p {
  font-size: 16px;
}
.site-footer {
  padding: 10px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.footer-widget__about-text p {
  font-size: 12px;
  text-align: center;
}
.footer-widget__contact-list li .text-box p a, .site-footer__copyright p  {
  font-size: 16px;
  text-align: center;
}
.footer-widget__about-social-links ul {
  align-items: center;
  justify-content: center;
}
.footer-widget__single .title-box h2 {
  font-size: 18px;
  text-align: center;
}
.footer-widget__single .title-box .line {
  left: 100px;
}
.footer-widget__services-list, .footer-one__map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.footer-widget__single .title-box {
  margin-bottom: 10px;
}
.footer-widget__about-text, .footer-widget__about-social-links {
  margin-top: 10px;
}
  .page-header {
    min-height: 200px; /* reduce height */
    padding: 40px 0;
  }
  .para, .working-process-one__single .content-box p, .step p, .info-card p, .feature-list li, 
  .model-stripe span, .check-list li, .monitor-desc, .feature-columns li, .parameter-strip span,
  .application-bar span, .ecg-point p, .ecg-point ul li, .system-row p, .applications-strip span,
  .cathlab-points strong, .testimonial-two__single-inner .text-box p, 
  .contact-one__form-box .input-box input[type="text"], 
  .contact-one__form-box .input-box input[type="email"], 
  .contact-one__form-box .input-box textarea, .contact-one__contact-info-list li:last-child,
  .contact-page--two__content-text1 p, .about-one__content-text p{
    font-size: 16px;
  }
  .application-row span {
    font-size: 16px;
    text-align: center;
  }
  .services-one__single-inner h2 {
    margin: 5px auto 5px;
    width: 100%;
}
.services-one__single {
  min-height: 250px;
}
.services-one--services .services-one__single, .system-row h3  {
    margin-bottom: 10px;
}
.row-leaders {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.list-unstyled {
    padding-left: 30px;
}
.site-footer__logo a img {
    width: 60%;
    display: flex;
    margin: auto;
}
.page-header__inner1 h2 {
  font-size: 30px;
}
.icon-box img {
    width: 60%;
}
.patientimg {
  height: auto !important;
}
.step h5, .monitor-title  {
  font-size: 24px;
}
.info-card h5, .info-panel h5, .monitor-title,.parameter-strip strong  {
  text-align: center;
}
.model-stripe strong, .parameter-strip strong, .application-bar strong {
  font-size: 18px;
}
.feature-columns {
    display: flex;
     gap: 0px; 
    flex-direction: column;
}
.parameter-strip, .application-row, .contact-page--two__content .social-links {
    justify-content: center;
}
.application-bar {
  gap: 10px;
}
.ecg-point ul, .system-points li  {
     padding-left: 0px; 
    text-align: left;
    font-size: 16px;
}
.ecg-image-caption {
  margin-top: 22px;
  font-size: 16px;
}
.system-row {
    margin-top: 10px;
    padding: 0;
    text-align: center;
}
.applications-strip {
    margin-top: 10px;
    text-align: center;
}
.system-label {
  text-align: center;
  font-size: 16px;
}
.keyfeatures1 h5, .contact-one__contact-info .title-box h2 {
    text-align: center;
     margin-top: 10px; 
    font-size: 24px;
}
.cathlab-divider {
  margin-left: 100px;
}
.gold-shine-text {
  font-size: 40px;
}
.contact-one__contact-info .title-box {
  margin-bottom: 10px;
}
.contact-one__contact-info .title-box::before {
    left: 70px;
  }
  .contact-page--two__content .sec-title {
    padding-bottom: 10px;
}
.contact-inline {
   margin-top: 10px !important;
}
.contact-inline .contact-text {
    font-size: 16px !important;
}
iframe {
  width: 350px;
  height: 300px;
  border-radius: 30px;
}
.google-map-two {
    align-items: center;
    justify-content: center;
    display: flex;
}
.site-footer__bottom-inner {
  padding: 10px;
}
.sec-title__title {
  line-height: 1;
}
.main-slider-one__content .tagline {
  text-align: center;
}
.main-slider-one__content .title-box h2 {
    text-align: center !important;
}
}

/* New corrections */

/* CTA Strip */
.cta-strip {
  padding: 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cleanin-base);
  padding: 40px 50px;
  border-radius: 8px;
}

/* Left Content */
.cta-strip__content h2 {
  color: #fff;
  margin: 0;
}

/* Right Button */
.cta-strip__action .thm-btn {
  background: #fff;
  color: var(--cleanin-base);
}

.cta-strip__action .thm-btn i {
  color: var(--cleanin-base);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .cta-strip__content h2 br {
    display: none;
  }
}



.certificate-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.certificate-box img {
    /* max-height: 100%; */
    object-fit: contain;
    height: auto;
}

.certificate-box:hover {
  transform: translateY(-5px);
}

.iso {
  font-size: 24px;
  font-weight: 600;
}


.logo-one img {
    height: 90px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}


.mb-nav-logo img {
    height: 100px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Optional: smooth resizing */
.logo-one img,
.mb-nav-logo img {
  transition: all 0.3s ease;
}


/* New css 30-12-25 */

/* ===============================
   DESKTOP MENU ACTIVE STATE
================================ */


/* Submenu active items */
.main-menu__list li ul li.active > a,
.main-menu__list li ul li.current > a {
    background: var(--cleanin-base) !important;
    color: #fff !important;
}

/* Hover consistency */
.main-menu__list li ul li > a:hover {
    background: var(--cleanin-base) !important;
    color: #fff !important;
}





/*HARISH*/

.fxd-header {
  position: fixed !important;
  width: 100%;
  background: white;
  top: 0px;
}

.spl-butt {
  background: #004a94;
  border-radius: 50px;
  padding: 10px 12px;
}
.col-white {
  color: white !important;
}
.spl-hamburg {
  border: 2px solid #004a94;
  padding: 0px 3px 4px;
  border-radius: 5px;
}
