@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
}

*:focus {
  outline: 0 !important;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

input[type="button"] {
  outline: none !important;
  box-shadow: none !important;
}

body {
  padding: 0;
  margin: 0;
  /* cursor: url('/assets/images/dna.svg'), auto; */
}

/* NaBar */
:root {
  --font-outfit: "Outfit", serif;

  /* Responsive Font Sizes using clamp(min, ideal, max) */
  --font15: clamp(13px, 1.1vw, 15px);
  --font16: clamp(14px, 1.2vw, 16px);
  --font18: clamp(15px, 1.4vw, 18px);
  --font20: clamp(16px, 1.6vw, 20px);
  --font22: clamp(18px, 1.7vw, 22px);
  --font24: clamp(18px, 1.8vw, 24px);
  --font28: clamp(20px, 2vw, 28px);
  --font30: clamp(22px, 2.2vw, 30px);
  --font32: clamp(24px, 2.3vw, 32px);
  --font36: clamp(26px, 2.5vw, 36px);
  --font38: clamp(28px, 2.7vw, 38px);
  --font40: clamp(30px, 2.8vw, 40px);
  --font48: clamp(32px, 3.2vw, 48px);
  --font58: clamp(32px, 4vw, 58px);
  --font64: clamp(42px, 4.5vw, 64px);
  --font72: clamp(48px, 5vw, 72px);

  --blue: #4e7ba1;
  --darkgreen: #8b9739;
  --dark1c: #1c1c1c;
  --primary: linear-gradient(90deg, #f05d20 0%, #fbb900 100%);
  --gray57: #574d49;
  --light-blue: #f7f7f7;
  --white: #fff;
  --brownColor: #672d15;

  --py100: clamp(32px, 5vw, 100px) 0;
  --py72: clamp(32px, 5vw, 72px) 0;

  --EASE_INOUT_QUAD: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --EASE_IN_QUAD: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --EASE_OUT_QUAD: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --COLOR_UI_PHARMACY: #f05d20;
  --loaderPill_DURATION: 1800ms;
}

/* ----------------------------------- NavBar ----------------------------------- */

.navbar {
  display: flex;
  align-items: center;
  padding: 8px 0;
  max-height: 80px;
  background-color: var(--white);
}
.navbar-brand {
  margin-right: 0 !important;
}
.navbar-brand img {
  width: 45%;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  -webkit-animation: navbar-animation 0.6s;
}

@keyframes navbar-animation {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
    transform: perspective(300px) rotateX(-90deg);
    transform-origin: top;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.5s ease-in-out;

    transform: perspective(300px) rotateX(0deg);
    transform-origin: top;
  }
}

.navbar .nav-item {
  /* display: inline-flex; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.mob-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.navbar .nav-link {
  font-size: var(--font16);
  font-weight: 500;
  font-family: var(--font-outfit);
  line-height: 30px;
  color: var(--dark1c);
  padding-left: 20px !important;
  transition: color 1s;
}

.nav-item.active .nav-link {
  background: linear-gradient(to right, #fdb612, #f36a30);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* .nav-item .dropdown-menu .dropdown-item {
  font-size: var(--font18) !important;
  font-weight: 500 !important;
  font-family: var(--font-outfit) !important;
  line-height: 30px !important;
  color: var(--dark1c) !important;
  padding-left: 40px !important ;
  transition: color 1s;
  padding: 8px 12px !important;
} */
.nav-item .nav-link {
  color: #1c1c1c;
}
.nav-item .nav-link:hover {
  color: #f36a30 !important;
}
.nav-item .nav-link a {
  color: #f36a30 !important;
}
.nav-item .nav-link:focus {
  color: #f36a30 !important;
}

.nav-item .nav-link:active {
  color: #f36a30 !important;
}

/* .nav-item .dropdown-item {
  background-color: white !important;
} */

.avron-logo img {
  margin-left: 10px;
}

.navbar .nav-link:hover {
  color: #f36a30;
}

.navbar .nav-btn:hover {
  background-color: var(--dark1c);
  color: #fff;
}

.navbar .nav-btn:focus {
  outline: none;
}

/*  hamburger icon */
.navbar-toggler {
  border: 2px solid #ccc;
}

.navbar-toggler-icon {
  border: 2px solid var(--dark1c);
  background-color: #ccc;
  border-radius: 5px;
}

.butn:link,
.butn:visited {
  margin-left: 20px !important;
  padding: 8px 16px;
  background: var(--blue) !important;
  border-radius: 100px;
  color: var(--white) !important;
  font-family: var(--font-outfit);
  font-size: var(--font20);
  font-weight: 400;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.butn::before {
  background: #fff;
  content: "";
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  width: 50px;
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.butn::after {
  background: #fff;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 8rem;
}

.butn__new::before {
  left: -50%;
}

.butn__new::after {
  left: -100%;
}

.butn__new:hover::before {
  left: 120%;
  opacity: 0.5s;
}

.butn__new:hover::after {
  left: 200%;
  opacity: 0.6;
}

.butn span {
  z-index: 20;
}

/* Hamburger styles */
/* Hamburger Icon Styles */
.hamburger-lines {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
  width: 18px;
}

.hamburger-lines .line {
  height: 2px;
  width: 100%;
  background: #000;
  transition: all 0.3s ease;
}

.hamburger-lines.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-lines.active .line2 {
  opacity: 0;
}

.hamburger-lines.active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Side Navigation Styles */
.side-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 90%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: 999;
}

.side-nav ul {
  list-style: none;
  padding: 20px 0;
}

.side-nav ul li {
  margin-bottom: 20px;
}

.side-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: var(--font18);
}

.side-nav ul li .nav-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

/* Body styles when side-nav is open */
body.side-nav-open {
  overflow: hidden;
  /* Prevent scrolling when the side nav is open */
}

.main-navbar {
  background-color: var(--white);
}

/* Hamburger styles */
.hamburger-lines {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
  width: 18px;
}

.hamburger-lines .line {
  height: 2px;
  width: 100%;
  background: #000;
  transition: all 0.3s;
}

.hamburger-lines.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-lines.active .line2 {
  opacity: 0;
}

.hamburger-lines.active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Side navigation styles */

.side-nav ul {
  list-style: none;
  padding: 20px;
  text-align: center;
}

.side-nav ul li {
  margin-bottom: 20px;
  font-size: var(--font20);
  font-weight: 600;
  font-family: var(--font-outfit);
  line-height: 30px;
  color: var(--dark1c);
  padding-left: 48px !important;
}

.side-nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: var(--font18);
}

.side-nav ul li .nav-btn {
  background-color: var(--pink);
  font-size: var(--font18);
  font-family: var(--font-outfit);
  line-height: 26.68px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 63px;
  color: var(--dark1c);
}

/* Body styles when side-nav is open */
.side-nav.open {
  left: 0;
  /* Show the sidebar */
  box-shadow: 4px 0px 15px rgba(0, 0, 0, 0.6);
  /* Add shadow */
}

body.side-nav-open {
  overflow: hidden;
  /* Prevent scrolling when the side nav is open */
}

body.side-nav-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 998;
}

.loading-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  /*  Initially hide the loading effect   */
}

.iti--inline-dropdown {
  display: block;
}

.loading-effect .loader {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  z-index: 2000;
}

.loading-effect .loader img {
  height: 100px;
}

/* topbar */
.topbar {
  width: 100%;
  padding: 8px 0;
  background: var(--darkgreen);
}

.topbar-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-phone,
.topbar-email {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
}

.topbar-phone a,
.topbar-email a {
  color: var(--white);
  font-size: var(--font15);
  font-family: var(--font-outfit);
  font-weight: 400;
  text-decoration: none;
}

.topbar-socialmedia {
  display: flex;
  gap: 10px;
}

.topbar-socialmedia a img {
  width: 20px;
  height: 20px;
}

font {
  background-color: transparent !important;
  box-shadow: none !important;
}

.language-switcher button {
  margin: 10px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
}

.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.dropbtn {
  color: #333;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  background-color: white;
  border-radius: 4px;
  font-size: 16px;
}

.dropdown-content {
  display: none;
  /* Hidden by default */
  position: absolute;
  background-color: #fff;

  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  right: 0;
}

.dropdown-content.show {
  display: block;
  /* Show when 'show' class is added */
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--font-outfit);
}

.dropdown-content a:hover {
  background-color: #f7f7f7;
}

/* Optional: Hide Google Translate banner */
.skiptranslate {
  display: none !important;
}

/* Reset all styles for translated content */
.goog-te-gadget * {
  all: unset;
}

/* Prevent blue backgrounds on hover */
.goog-te-gadget *:hover {
  background-color: transparent !important;
  color: inherit !important;
}

/* Reset link styles */
.goog-te-gadget a {
  text-decoration: none !important;
  color: inherit !important;
  background: transparent !important;
}

.goog-te-gadget a:hover {
  text-decoration: underline;
  /* Optional: Add underline on hover */
  background-color: transparent !important;
}

body {
  top: 0px !important;
}

/* ---------------------floating icon----------------------- */

.floating-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

/* ---------------------footer------------------- */

.footer {
  background-image: url("/assets/images/footer-bg.png");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.footer-footer {
  padding: var(--py72);
  position: relative;
  z-index: 100;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 10;
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-logo img {
  /* max-height: 81px;
  width: auto;
  border-radius: 10px; */
}

.footer .row {
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}

.footer-menu {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.footer-menu a {
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font18);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  z-index: 100;
}

.bottom-footer-sec {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.bottom-footer p {
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font18);
  font-weight: 500;
}
.right-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font20);
  font-weight: 400;
  text-decoration: none;
}
.footer-email a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font20);
  font-weight: 400;
  text-decoration: none;
}

.left p {
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font20);
  font-weight: 500;
  max-width: 560px;
}

.right {
  display: flex;
  gap: 40px;
}

.right-address,
.individual-contact {
  display: flex;
  gap: 16px;
}

.right-address img,
.individual-contact img {
  height: 40px;
  width: auto;
}

.right-address p,
.individual-contact a {
  color: var(--white);
  font-family: var(--font-outfit);
  font-size: var(--font20);
  font-weight: 400;
  margin-bottom: 0;
  text-decoration: none;
}

.right-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-pdf {
  display: flex;
  gap: 8px;
  padding: 8px;
  width: 276px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  background: var(--darkgreen);
}
.footer-pdf p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

@keyframes scale-transition {
  from {
    opacity: 0;
    scale: 0.5;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes transform-transition {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.side-nav.side-nav-active {
  transform: translateX(0);
}

/* Dropdown hidden by default */
/* .dropdown {
  display: none;
  flex-direction: column;
  background-color: #fff;
} */

#drop-menu {
  margin-bottom: 12px;
}
.dropdown-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropdown-toggle::after {
  vertical-align: middle;
}

#drop-menu .dropdown-toggle p {
  margin-bottom: 0px;
  font-size: var(--font18) !important;
  font-weight: 500 !important;
  font-family: var(--font-outfit) !important;
  line-height: 30px !important;
  color: var(--dark1c) !important;
  padding-left: 40px !important;
  transition: color 1s !important;
  padding: 0 !important;
}
/* .dropdownitem .dropdown ul li {
  margin-bottom: 6px;
}
.dropdownitem .dropdown ul {
  padding: 6px;
}
.dropdownitem .dropdown ul li:last-child {
  margin-bottom: 0;
} */

/* new navbar css */
.navbar {
  padding: 16px 80px;
}

.navbar-color {
  background-color: var(--white);
}
.navbar-color .nav-link {
  font-family: var(--font-Gabarito);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark1c);
}
.navbar-toggler-icon {
  color: red;
}
.fixed-top {
  position: fixed;
  background-color: var(--white);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Add any other styles you need for the fixed navbar */
}

.menu-close,
.menu-open {
  display: none;
}
.commonmenu ul.commonmenu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-family: var(--font-jost);
  padding-left: 0px;
  margin-bottom: 0;
}
.commonmenu ul.commonmenu-nav .item a {
  font-family: var(--font-outfit);
  font-size: 16px;
  color: #1c1c1c;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
}
.commonmenu ul.commonmenu-nav > li {
  position: relative;
  float: left;
  width: auto;
}
.commonmenu ul li.dropdownitem > a:after {
  width: 18px;
  height: 24px;
  text-align: center;
  float: right;
  background-color: var(--dark1c);
  content: "";
  margin: 1px 0px 0px 3px;
  -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"></path></svg>');
  mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="12px" height="12px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"></path></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.commonmenu ul li .dropdown {
  display: none;
  position: absolute;
  min-width: 200px;
  z-index: 1000;
}

.commonmenu ul.commonmenu-nav .dropdown ul li {
  float: left;
  width: 100%;
}
.commonmenu ul.commonmenu-nav .dropdown ul li a {
  padding: 8px 0px;
}
.commonmenu ul li.dropdownitem ul li a,
.commonmenu ul li.dropdownitem ul li .dropdown ul li a {
  border-bottom: 1px dotted #eee;
}
.commonmenu ul li.dropdownitem ul li:last-child a,
.commonmenu ul li.dropdownitem ul li .dropdown ul li:last-child a {
  border-bottom: 0px !important;
}
/* Dropdown + Dropdown */
.commonmenu ul li.dropdownitem ul li a:before,
.commonmenu ul li.dropdownitem ul li .nav-dropdown ul li a:after {
  display: none !important;
}
.commonmenu ul li.dropdownitem ul li .nav-dropdown ul li:last-child a {
  border-bottom: 0px !important;
}
.commonmenu ul li.dropdownitem .dropdown ul li.dropdownitem {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1000;
}
.only-pc {
  display: block;
}
.only-mobile {
  display: none !important;
}
.only-for-phone {
  display: flex !important;
}
.avron-logo img {
  width: 90%;
  max-width: 120px;
  object-fit: contain;
}
.butn {
  padding: 8px 16px !important;
  background: var(--primary) !important;
  border-radius: 100px !important;
  color: var(--white) !important;
  font-family: var(--font-outfit) !important;
  font-size: var(--font20) !important;
  font-weight: 400;
  align-items: center;
  text-decoration: none;
  background-image: linear-gradient(90deg, #fdb612, #f36a30) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: var(--white) !important;
  margin-left: 0 !important;
  margin-right: 12px !important;
}
.butn:hover {
  color: white !important;
}

@media screen and (max-width: 1200px) {
  .butn:hover {
    color: white;
  }
  .only-for-phone {
    display: flex !important;
  }
  .only-pc {
    display: none !important;
  }
  .only-mobile {
    display: block !important;
  }

  .menu-open,
  .menu-close {
    cursor: pointer;
    color: #333;
    text-decoration: none;
    font-size: 26px;
  }
  .menu-open {
    display: block !important;
  }
  .menu-open {
    display: block !important;
    float: right;
  }
  .menu-close {
    display: none !important;
  }

  .mobile-menu-active .menu-close {
    display: block !important;
    z-index: 15;
    position: absolute;
    right: 13px;
    left: unset !important;
    top: 0px;
    float: left;
  }
  .commonmenu {
    position: relative;
    display: none;
  }
  .commonmenu.active {
    display: block;
  }
  .commonmenu-nav {
    display: none !important;
  }
  .commonmenu.active .commonmenu-nav {
    display: block !important;
  }
  .commonmenu.active {
    position: fixed;
    left: 0px;
    top: 0px;
    margin-top: 0px !important;
    width: 40%;
    height: 100vh;
    display: flex;
    z-index: 14;
  }
  .commonmenu.active .commonmenu-nav {
    background-color: #fff;
    float: left;
    margin-top: 0px;
    padding: 40px 20px;
    width: 100%;
    height: 100vh;
    transform-origin: top center !important;
  }
  .commonmenu.active .commonmenu-nav,
  .menu-close {
    animation: translateX 400ms 0ms ease-in-out forwards !important;
  }

  @keyframes translateX {
    0% {
      opacity: 0;
      transform: translateX(-160px);
    }
    80% {
      transform: translateX(-5px);
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  .commonmenu ul.commonmenu-nav > li {
    float: left;
    width: 100%;
  }
  .commonmenu ul.commonmenu-nav > li a {
    float: left;
    width: 100%;
    text-decoration: none;
    color: #333;
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
  }
  .butn:hover {
    color: white !important;
  }
  .commonmenu ul.commonmenu-nav > li a:hover {
    float: left;
    width: 100%;
    transition: all 0.25s ease-out;
    text-decoration: none;
    color: #000;
    padding: 10px;
  }
  .commonmenu ul li.dropdownitem > a:hover:after {
    background-color: rgb(103, 130, 252) !important;
  }
  .nav-dropdown.opened {
    color: #1c1c1c !important;
    border-bottom: 1px solid #545454 !important;
  }
  .commonmenu ul.commonmenu-nav > li:last-child a {
    border-bottom: 0px solid #ddd;
  }
  .commonmenu.active ul li .nav-dropdown.opened + .dropdown ul {
    list-style: none;
    float: left;
    margin-left: 0px;
    padding-left: 7px;
  }
  .commonmenu.active ul li .nav-dropdown.opened + .dropdown ul .dropdown ul {
    padding-left: 15px;
  }
  .commonmenu.active ul li .nav-dropdown.opened + .dropdown {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 5px 0px;
    min-width: unset;
    padding-top: 0px !important;
    float: left;
    width: 100%;
  }
  .commonmenu.active ul li.dropdownitem:hover + .dropdown + .dropdown {
    display: none;
  }

  #menu-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    float: left;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 13;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #menu-overlay.show {
    display: block !important;
  }
  .menu-open .open {
    width: 40px;
    height: 40px;
    float: right;
    background-color: var(--blue);
    -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="40px" height="40px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-filter-square" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"></path><path d="M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"></path></svg>');
    mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="40px" height="40px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-filter-square" viewBox="0 0 16 16"><path d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"></path><path d="M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"></path></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.2s ease-out;
  }
  .menu-close .close {
    width: 38px;
    height: 38px;
    float: right;
    background-color: #000;
    -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="38px" height="38px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-x close" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"></path></svg>');
    mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="38px" height="38px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-x close" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"></path></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.2s ease-out;
  }
  .mobile-menu-active .menu-open .open,
  .menu-open .open:hover {
    -webkit-mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="40px" height="40px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-filter-square-fill" viewBox="0 0 16 16"><path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm.5 5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1zM4 8.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm2 3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5z"></path></svg>');
    mask-image: url('data:image/svg+xml;charset=utf-8,<svg width="40px" height="40px" xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="bi bi-filter-square-fill" viewBox="0 0 16 16"><path d="M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm.5 5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1zM4 8.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm2 3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5z"></path></svg>');
  }
  /* .avron-logo img {
    width: 90%;
    max-width: 120px;
    object-fit: contain;
    margin-top: 12px;
  } */
  .butn {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1201px) {
  .commonmenu ul.commonmenu-nav > li a {
    font-weight: 500;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px !important;
    height: 100%;
    position: relative;
  }
  .commonmenu ul li.dropdownitem:hover .dropdown {
    display: block;
    position: absolute;
    margin: 0;
    /* padding: 5px 0px; */
    min-width: 220px;
    padding-top: 0px !important;
  }
  .commonmenu ul li.dropdownitem:hover > a {
    border-radius: 8px 8px 0px 0px !important;
  }
  .commonmenu ul li.dropdownitem ul li.dropdownitem:hover > a {
    border-radius: 8px !important;
  }

  .commonmenu ul li.dropdownitem:hover .dropdown .dropdown {
    display: none;
  }
  .commonmenu ul li.dropdownitem .dropdown li.dropdownitem:hover .dropdown {
    padding-left: 16px;
    position: absolute;
    margin: 0;
    padding-top: 0px !important;
    min-width: 200px;
    display: inline-table;
    top: 0 !important;
    left: 100% !important;
    right: auto !important;
  }
  .commonmenu ul li.dropdownitem .dropdown .dropdown .dropdown {
    display: none !important;
    visibility: hidden;
  }
  .commonmenu ul li.dropdownitem .dropdown ul {
    list-style: none;
    background-color: #fff;
    float: left;
    padding: 10px;
    border-radius: 0px 8px 8px 8px;
  }
  .commonmenu ul li.dropdownitem ul li a {
    color: #333 !important;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 0px;
    float: left;
    width: 100%;
    border-radius: 0px;
    font-size: 14px;
  }
  .commonmenu ul.commonmenu-nav .dropdown ul li a:hover {
    color: var(--sky-blue) !important;
    padding-left: 7px;
    transition: all 0.15s ease-out;
  }
}

@media screen and (max-width: 500px) {
  .commonmenu.active {
    width: 70%;
  }
}
@media screen and (max-width: 400px) {
  .commonmenu.active {
    width: 100%;
  }
}

@media (1200px <=width <=1600px) {
  .navbar {
    padding: 20px 50px;
  }
  .navbar {
    z-index: 1000;
  }
  .commonmenu ul.commonmenu-nav .item a {
    font-size: 14px !important;
  }
  .commonmenu ul.commonmenu-nav .item a {
    font-size: 14px !important;
    padding: 10px 8px !important;
  }
}
@media (568px <=width <=767px) {
  .navbar {
    display: flex;
    flex-wrap: nowrap !important;
    padding: 20px;
  }
}

@media (480px <=width <=567px) {
  .navbar {
    padding: 16px;
  }
  .navbar-brand img {
    width: 80%;
  }
  .navbar {
    display: flex;
    flex-wrap: nowrap !important;
  }
}

@media (320px <=width <=479px) {
  .navbar {
    padding: 16px;
  }
  .navbar-brand img {
    width: 80%;
  }
  .navbar {
    display: flex;
    flex-wrap: nowrap !important;
  }
}

/* Show dropdown when active */
@media (max-width: 991px) {
  .dropdown {
    display: none;
  }

  .dropdown.active {
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
  }
  .side-nav ul li a {
    color: #1c1c1c;
    font-weight: 500;
  }

  .side-nav.side-nav-active {
    transform: translateX(0);
  }
  .side-nav ul li {
    margin-bottom: 12px;
  }
}

@media (1200px <=width <=1400px) {
  .avron-logo a {
    max-width: 100px;
  }
  .butn:link,
  .butn:visited {
    margin-left: 0 !important;
    margin-right: 10px !important;
  }
  .dropbtn {
    padding: 10px 4px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 10px !important;
  }
}

@media (991px <=width <=1200px) {
  .butn:link,
  .butn:visited {
    margin-left: 0 !important;
    margin-right: 10px !important;
  }
  .dropbtn {
    padding: 10px 4px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 10px !important;
  }
}

@media screen and (min-width: 1024px) {
  .animate-text-css-scale {
    animation: scale-transition linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }

  .animate-text-css-transform {
    animation: transform-transition linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}

@media screen and (max-width: 991px) {
  .navbar .nav-link {
    padding-left: 0 !important;
  }

  .navbar .nav-btn {
    margin: 0 !important;
  }

  .hamburger-lines {
    display: flex;
  }

  .navbar-collapse {
    display: none;
  }
}

@media (min-width: 992px) {
  .side-nav ul li {
    padding-left: 0 !important;
  }
}

@media (768px <=width <=1023px) {
  .avron-logo a {
    margin-top: 0;
    margin-right: 10px !important;
    padding-right: 10px;
  }
  .footer-section {
    padding: 36px 0;
  }

  .side-nav ul li {
    padding-left: 0 !important;
  }

  .about-us .product .divisons {
    padding: 64px 0;
  }

  .contact-us {
    padding: 64px 32px;
  }

  .main-banner-content p,
  .about-us-content p,
  .product-title h2,
  .divisons-title h2 {
    font-size: var(--font16);
  }

  .main-banner-content h2,
  .about-us-content h2,
  .product-title h1,
  .divisons-title h1 {
    font-size: var(--font32);
  }

  .margin-btm {
    margin-bottom: 18px !important;
  }

  .butn:link,
  .butn:visited {
    margin-left: 0 !important;
  }
}

@media (320px <=width <=767px) {
  .navbar-brand img {
    max-height: 40px;
  }

  .topbar-phone span,
  .topbar-email span {
    display: none;
  }

  .topbar-contact {
    gap: 20px;
  }

  /* footer */
  .footer-section {
    padding: 64px 0;
  }

  .bottom-footer {
    padding-top: 16px;
  }

  .footer-menu {
    padding: 16px 0;
  }

  .footer-section .footer-info br {
    display: none;
  }

  .side-nav ul li {
    padding-left: 0 !important;
  }

  .contact-form-main-details .form-items {
    width: 100%;
  }

  .right {
    gap: 16px;
    flex-direction: column;
  }

  .right-content {
    gap: 16px;
  }

  .bottom-footer-sec {
    flex-direction: column-reverse;
  }

  .floating-icon img {
    height: 45px;
    width: 45px;
  }

  .margin-btm {
    margin-bottom: 12px !important;
  }

  .footer .row {
    padding-bottom: 24px;
  }

  .right-address,
  .individual-contact {
    align-items: center;
  }

  .butn:link,
  .butn:visited {
    margin-left: 0 !important;
  }
  .avron-logo img {
    margin: 0 !important;
    width: 80%;
    object-fit: contain;
  }
  .dropbtn {
    padding: 0;
    margin-top: 4px;
  }
  .avron-logo {
    max-width: 100px;
    margin-top: 4px;
  }
  .navbar {
    padding: 12px;
  }
  .navbar .container {
    padding: 0 !important;
  }
}
