/*------------------- 3.6. Font -------------------*/
.font-icon {
    font-family: var(--icon-font);
  }
  
  .font-title {
    font-family: var(--title-font);
  }
  
  .font-body {
    font-family: var(--body-font);
  }
  
  .fw-extralight {
    font-weight: 100;
  }
  
  .fw-light {
    font-weight: 300;
  }
  
  .fw-normal {
    font-weight: 400;
  }
  
  .fw-medium {
    font-weight: 500;
  }
  
  .fw-semibold {
    font-weight: 600;
  }
  
  .fw-bold {
    font-weight: 700;
  }
  
  .fw-extrabold {
    font-weight: 800;
  }
  
  .fs-md {
    font-size: 18px;
  }
  
  .fs-xs {
    font-size: 14px;
  }
  
  .fs-40 {
    font-size: 40px;
  }
  
  /* Large devices */
  @media (max-width: 1199px) {
    .fs-40 {
      font-size: 34px;
    }
  }
  
  /* Medium devices */
  @media (max-width: 991px) {
    .fs-40 {
      font-size: 30px;
    }
    .fs-40.mt-n3 {
      margin-top: -0.6rem;
    }
    .fs-40.mt-n2 {
      margin-top: -0.2rem;
    }
  }
  
  /*------------------- 3.7. Background -------------------*/
  .bg-theme {
    background-color: var(--theme-color) !important;
  }
  
  .bg-theme2 {
    background-color: var(--theme-color2) !important;
  }
  
  .bg-smoke {
    background-color: var(--smoke-color) !important;
  }
  
  .bg-white {
    background-color: var(--white-color) !important;
  }
  
  .bg-black {
    background-color: var(--black-color) !important;
  }
  
  .bg-title {
    background-color: var(--title-color) !important;
  }
  
  .gr-bg1 {
    background-image: linear-gradient(255.4deg, rgba(146, 184, 253, 0.15) 5.09%, var(--smoke-color) 63%);
  }
  
  .gr-bg2 {
    background-image: linear-gradient(270deg, #EDF2FB 0%, #FFFFFF 100%);
  }
  
  .background-image,
  [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  
  .bg-fluid {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
  }
  
  .bg-auto {
    background-size: auto auto;
  }
  
  .bg-bottom-right {
    background-size: auto;
    background-position: bottom right;
  }
  
  .bg-top-center,
  .product-sec-bg1 {
    background-size: 100% 67% !important;
    background-position: top center;
  }
  
  /*------------------- 3.8. Text Color -------------------*/
  .text-theme {
    color: var(--theme-color) !important;
  }
  
  .text-theme2 {
    color: var(--theme-color2) !important;
  }
  
  .text-title {
    color: var(--title-color) !important;
  }
  
  .text-body {
    color: var(--body-color) !important;
  }
  
  .text-white {
    color: var(--white-color) !important;
  }
  
  .text-light {
    color: var(--light-color) !important;
  }
  
  .text-yellow {
    color: var(--yellow-color) !important;
  }
  
  .text-success {
    color: var(--success-color) !important;
  }
  
  .text-error {
    color: var(--error-color) !important;
  }
  
  .text-inherit {
    color: inherit;
  }
  
  .text-inherit:hover {
    color: var(--theme-color);
  }
  
  a.text-theme:hover,
  .text-reset:hover {
    text-decoration: underline;
  }
  
  /*------------------- 3.9. Overlay -------------------*/
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  
  .position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  [data-overlay] {
    position: relative;
    z-index: 2;
  }
  
  [data-overlay] [class^="col-"],
  [data-overlay] [class*="col-"] {
    z-index: 1;
  }
  
  [data-overlay]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  [data-overlay="theme"]:before {
    background-color: var(--theme-color);
  }
  
  [data-overlay="title"]:before {
    background-color: var(--title-color);
  }
  
  [data-overlay="white"]:before {
    background-color: var(--white-color);
  }
  
  [data-overlay="black"]:before {
    background-color: var(--black-color);
  }
  
  [data-overlay="overlay1"]:before {
    background-color: #041122;
  }
  
  [data-opacity="1"]:before {
    opacity: 0.1;
  }
  
  [data-opacity="2"]:before {
    opacity: 0.2;
  }
  
  [data-opacity="3"]:before {
    opacity: 0.3;
  }
  
  [data-opacity="4"]:before {
    opacity: 0.4;
  }
  
  [data-opacity="5"]:before {
    opacity: 0.5;
  }
  
  [data-opacity="6"]:before {
    opacity: 0.6;
  }
  
  [data-opacity="7"]:before {
    opacity: 0.7;
  }
  
  [data-opacity="8"]:before {
    opacity: 0.8;
  }
  
  [data-opacity="9"]:before {
    opacity: 0.9;
  }
  
  [data-opacity="10"]:before {
    opacity: 1;
  }
  
  /*------------------- 3.10. Animation -------------------*/
  .ripple-animation, .play-btn:after, .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 0;
    }
    30% {
      opacity: 0.4;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  .movingX {
    animation: movingX 8s linear infinite;
  }
  
  @keyframes movingX {
    0% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(50px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .jump {
    animation: jumpAni 7s linear infinite;
  }
  
  @keyframes jumpAni {
    0% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .jump-reverse {
    animation: jumpReverseAni 7s linear infinite;
  }
  
  @keyframes jumpReverseAni {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(30px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .spin {
    animation: spin 15s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0);
    }
    50% {
      transform: rotate(40deg);
    }
    100% {
      transform: rotate(0);
    }
  }
  
  @keyframes animate-positive {
    0% {
      width: 0;
    }
  }
  
  .scalein.th-animated {
    --animation-name: scalein;
  }
  
  .slidetopleft.th-animated {
    --animation-name: slidetopleft;
  }
  
  .slidebottomright.th-animated {
    --animation-name: slidebottomright;
  }
  
  .slideinleft.th-animated {
    --animation-name: slideinleft;
  }
  
  .slideinright.th-animated {
    --animation-name: slideinright;
  }
  
  .slideinup.th-animated {
    --animation-name: slideinup;
  }
  
  .slideindown.th-animated {
    --animation-name: slideindown;
  }
  
  .rollinleft.th-animated {
    --animation-name: rollinleft;
  }
  
  .rollinright.th-animated {
    --animation-name: rollinright;
  }
  
  .slidetopleft,
  .slidebottomright,
  .slideinleft,
  .slideinright,
  .slideindown,
  .slideinup,
  .rollinleft,
  .rollinright {
    opacity: 0;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: var(--animation-name);
  }
  
  .th-animated {
    opacity: 1;
  }
  
  @keyframes slideinup {
    0% {
      opacity: 0;
      transform: translateY(70px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes slideinright {
    0% {
      opacity: 0;
      transform: translateX(70px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slideindown {
    0% {
      opacity: 0;
      transform: translateY(-70px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes slideinleft {
    0% {
      opacity: 0;
      transform: translateX(-70px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  @keyframes slidebottomright {
    0% {
      opacity: 0;
      transform: translateX(100px) translateY(100px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }
  
  @keyframes slidetopleft {
    0% {
      opacity: 0;
      transform: translateX(-100px) translateY(-100px);
    }
    100% {
      transform: translateX(0) translateY(0);
    }
  }
  
  .scalein {
    animation: scalein 7s linear infinite;
  }
  
  @keyframes scalein {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes rollinleft {
    0% {
      opacity: 0;
      transform: translateX(-100%) rotate(-120deg);
    }
    to {
      transform: translateX(0) rotate(0deg);
    }
  }
  
  @keyframes rollinright {
    0% {
      opacity: 0;
      transform: translateX(100%) rotate(120deg);
    }
    to {
      transform: translateX(0) rotate(0deg);
    }
  }
  
  .fancy-animation {
    animation: morph 8s ease-in-out infinite;
  }
  
  @keyframes morph {
    0% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
  }
  
  @keyframes jumpIcon {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
    100% {
      transform: translateY(0);
    }
  }
  /*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

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

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.6rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.6rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: 50px;
  }
  .space,
  .space-bottom {
    padding-bottom: 50px;
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
}

/* header */

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .icon-btn {
  --btn-size: 45px;
  line-height: 43px;
  border: 1px solid #d0dbe9;
  transition: 0.4s;
}

.th-header .icon-btn:hover {
  border-color: var(--theme-color);
}

.th-header .th-btn {
  padding: 19px 29px;
}

.sticky-wrapper {

}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
 
}


.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: var(--title-color);
  text-transform: uppercase;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.menu-links .active > a {
       color: #FBBF24 !important;

}
.main-menu a:hover {
       color: #FBBF24 !important;
}
.main-menu a .new-label {
  font-size: 12px;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0px 5px;
  border-radius: 4px;
  margin-left: 4px;
  position: relative;
  top: -1px;
}

.main-menu > ul > li {
  margin: 0 13px;
}

.main-menu > ul > li > a {
  padding: 36.5px 0;
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}



.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 190px;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 1px;
}


.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  transform: translateX(-50%);
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 2px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
}

.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.main-menu.hide-icon ul.sub-menu li a {
  padding-left: 0;
}

.main-menu.hide-icon ul.sub-menu li a:before {
  display: none;
}

.category-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 190px;
  width: -moz-max-content;
  width: max-content;
  padding: 25px 30px;
  left: 0;
  margin-top: -10px;
  opacity: 0;
  z-index: -1;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transform-origin: top center;
  flex: none;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}

.category-menu ul {
  padding: 0;
  margin-bottom: 0;
}

.category-menu li {
  list-style: none;
  margin-bottom: 6px;
}

.category-menu li:last-child {
  margin-bottom: 0;
}

.category-menu a {
  text-transform: capitalize;
  color: var(--title-color);
  position: relative;
  padding-left: 23px;
}

.category-menu a:before {
  content: "\f07c";
  position: absolute;
  top: 4px;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 400;
}

.category-menu a:hover {
  color: var(--theme-color);
}

.category-menu-wrap {
  position: relative;
  height: 100%;
  padding: 0;
  display: flex;
  border: 1px solid #D0DBE9;
  border-radius: 5px;
}

.category-menu-wrap:hover .category-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}

.category-menu-wrap .search-form {
  display: flex;
}

.category-menu-wrap .search-form input {
  background: transparent;
  border: 0;
  padding-right: 10px;
  padding-left: 15px;
  height: 48px;
}

.category-menu-wrap .search-form input:hover, .category-menu-wrap .search-form input:focus, .category-menu-wrap .search-form input:active {
  border: 0;
}

.category-menu-wrap .search-form input::-moz-placeholder {
  color: #9FAAB7;
}

.category-menu-wrap .search-form input::placeholder {
  color: #9FAAB7;
}

.category-menu-wrap .search-form button {
  border: none;
  width: auto;
  height: 48px;
  line-height: 48px;
  background-color: transparent;
  color: var(--title-color);
  padding-right: 15px;
  display: inline-block;
  border-radius: 0;
}

.menu-expand {
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  background-color: transparent;
  padding: 10.5px 16px;
  border-radius: 0;
  border-right: 1px solid #D0DBE9;
  display: flex;
  align-items: center;
  min-width: 160px;
  line-height: initial;
}

.simple-icon {
  border: none;
  background-color: transparent;
  padding: 0;
  color: var(--body-color);
}

.simple-icon:hover {
  color: var(--theme-color);
}


.header-button .icon-btn {
  position: relative;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.header-links li:not(:last-child) {
  padding: 0 20px 0 0;
  margin: 0 17px 0 0;
}

.header-links li:not(:last-child):before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
}

.header-links li > i {
  margin-right: 10px;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  font-family: var(--body-font);
  color: var(--body-color);
}

.header-links i {
  color: var(--body-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
}

.header-social .social-title {
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
}

.header-social a {
  font-size: 14px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.header-social a:last-child {
  margin-right: 0;
}

.header-social a:hover {
  color: var(--theme-color);
}

.header-logo {
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-notice {
  margin-bottom: 0;
  display: inline-block;
}

.counter-list {
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 18px;
  background-color: var(--theme-color2);
  padding: 2px 20px;
  border-radius: 999px;
  margin-left: 15px;
  color: var(--white-color);
}

.counter-list li {
  display: inline-flex;
  gap: 4px;
  position: relative;
  color: var(--white-color);
}

.counter-list li:after {
  content: ":";
  position: absolute;
  top: 50%;
  right: -11.5px;
  transform: translateY(-50%);
  color: var(--white-color);
  font-weight: 600;
}

.counter-list li:last-child::after {
  display: none;
}

.counter-list .count-number,
.counter-list .count-name {
  color: var(--white-color);
  font-weight: 500;
}

.dropdown-link {
  position: relative;
  display: inline-block;
}

.dropdown-link > a {
  color: var(--white-color);
}

.dropdown-link > a i {
  margin-right: 3px;
  transition: 0.4s;
}

.dropdown-link > a:hover i {
  color: var(--white-color) !important;
}

.dropdown-toggle::after {
  content: "\f107";
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
}

.dropdown-menu {
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  border-color: var(--border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
}

.dropdown-menu a {
  color: var(--title-color) !important;
}

.dropdown-menu a:hover {
  color: var(--theme-color) !important;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  transform: rotate(45deg);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}



/* Header 1 ---------------------------------- */
.header-layout1 .header-top {
  --body-color: #fff;
  background-color: var(--title-color);
  z-index: 3;
}

.header-layout1 .header-top a:hover {
  color: var(--title-color);
}

.header-layout1 .header-top .header-links.header-right li:first-child {
  padding-right: 60px;
}

@media (min-width: 1921px) and (max-width: 2520px) {
  .header-layout1 .header-top .header-links.header-right li:first-child {
    padding-right: 0;
  }
}

@media (min-width: 1601px) and (max-width: 1870px) {
  .header-layout1 .header-top .header-links.header-right li:first-child {
    padding-right: 0;
  }
}

@media (max-width: 1600px) {
  .header-layout1 .header-top .header-links.header-right li:first-child {
    padding-right: 60px;
  }
}

@media (min-width: 1501px) and (max-width: 1550px) {
  .header-layout1 .header-top .header-links.header-right li:first-child {
    padding-right: 0;
  }
}

@media (min-width: 1055px) and (max-width: 1199px) {
  .header-layout1 .header-top .header-links.header-right li:first-child {
    padding-right: 0;
  }
}

.header-layout1 .header-top .header-links.header-right li:not(:last-child):before {
  display: none;
}

.header-layout1 .header-top .header-links.header-right li {
  /* Medium devices */
}

.header-layout1 .header-top .header-links.header-right li a i {
  transition: 0.4s;
}

.header-layout1 .header-top .header-links.header-right li a:hover {
  color: var(--theme-color2);
}

.header-layout1 .header-top .header-links.header-right li a:hover i {
  color: var(--title-color);
}

@media (max-width: 991px) {
  .header-layout1 .header-top .header-links.header-right li {
    display: none;
  }
  .header-layout1 .header-top .header-links.header-right li:first-child {
    display: block;
    margin: 0;
    padding: 0;
  }
}

.header-layout1 .header-top:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 437px);
  border-radius: 0 0 50px 0;
  background: var(--theme-color);
  z-index: -1;
  /* Hight Resoulation devices */
  /* Extra large devices */
  /* Medium Large devices */
  /* Medium devices */
}

@media (min-width: 1922px) {
  .header-layout1 .header-top:after {
    width: calc(100% - 757px);
  }
}

@media (min-width: 1921px) and (max-width: 2520px) {
  .header-layout1 .header-top:after {
    width: 100%;
    border-radius: 0;
  }
}

@media (min-width: 1601px) and (max-width: 1870px) {
  .header-layout1 .header-top:after {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 1600px) {
  .header-layout1 .header-top:after {
    width: calc(100% - 277px);
    border-radius: 0 0 50px 0;
  }
}

@media (min-width: 1501px) and (max-width: 1550px) {
  .header-layout1 .header-top:after {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 1500px) {
  .header-layout1 .header-top:after {
    width: calc(100% - 205px);
  }
}

@media (max-width: 1399px) {
  .header-layout1 .header-top:after {
    width: calc(100% - 220px);
  }
}

@media (min-width: 1055px) and (max-width: 1199px) {
  .header-layout1 .header-top:after {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 991px) {
  .header-layout1 .header-top:after {
    width: 100%;
    border-radius: 0;
  }
}

.header-layout1 .logo-area {
  /* background-color: var(--theme-color); */
  position: relative;
  z-index: 0;
}

.header-layout1 .logo-area:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: var(--white-color);
  height: 100%;
  width: calc(100% - 1px);
  border-radius: 0px 0 0 0;
  z-index: -1;
  /* Hight Resoulation devices */
  /* Extra large devices */
  /* Medium devices */
}

@media (min-width: 1922px) {
  .header-layout1 .logo-area:after {
    width: calc(100% - 1px);
  }
}

@media (min-width: 1921px) and (max-width: 2520px) {
  .header-layout1 .logo-area:after {
    width: 100%;
  }
}

@media (min-width: 1601px) and (max-width: 1870px) {
  .header-layout1 .logo-area:after {
    width: 100%;
  }
}

@media (max-width: 1600px) {
  .header-layout1 .logo-area:after {
    width: calc(100% - 60px);
  }
}

@media (min-width: 1501px) and (max-width: 1550px) {
  .header-layout1 .logo-area:after {
    width: 100%;
  }
}

@media (max-width: 1500px) {
  .header-layout1 .logo-area:after {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .header-layout1 .logo-area:after {
    border-radius: 0px 0 0 0;
  }
}

.header-layout1 .th-btn {
  padding: 18px 29px;
}

.header-layout1 .header-button .icon-btn {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .header-layout1 .header-button .icon-btn {
    display: none;
  }
}

.header-layout1 .sticky-wrapper.sticky .logo-area {
  background: var(--white-color);
}

.header-layout1 .sticky-wrapper.sticky .logo-area:after {
  display: none;
}
/* breadcrum */
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 31px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: '\f061';
  position: relative;
  margin-left: 10px;
  font-weight: 400;
  font-size: 15px;
  color: var(--white-color);
  font-family: var(--icon-font);
}

.breadcumb-menu li a:hover {
  color: var(--theme-color);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 20px;
  color: var(--white-color);
}

.breadcumb-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--white-color);
  margin: -0.2em 0 -0.26em 0;
}

.breadcumb-wrapper {
  background-color: var(--title-color);
  padding: 155px 0;
  text-align: center;
    margin-top: 0px;
  overflow: hidden;
}

.breadcumb-wrapper:before {
  z-index: -1;
}

.breadcumb-wrapper .breadcumb-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: right;
}

.breadcumb-wrapper .breadcumb-shape img {
  width: 100%;
}

.breadcumb-menu li:last-child {
    padding-right: 0;
    text-transform: math-auto;
    margin-right: 0;
}
/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 42px;
  }
  .breadcumb-wrapper {
    padding: 120px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding: 100px 0;
  }
  .breadcumb-menu {
    margin: 16px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
  .breadcumb-title {
    font-size: 38px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-wrapper {
    padding: 80px 0;
  }
  .breadcumb-title {
    font-size: 34px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-title {
    font-size: 32px;
  }
}
