/* ------------------------------------------------
  Project:   Induztry - Factory & Industry HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

 
/* ------------------------
    General
------------------------*/
@charset "UTF-8";

:root {
  --theme-color: #2C62AC;
  --theme-color2: #52C306;
  --title-color: #0E121D;
  --body-color: #4D5765;
  --smoke-color: #F8F8F8;
  --black-color: #000000;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E4E4E4;
  --title-font: 'Exo', sans-serif;
  --body-font: 'Public Sans', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

a,
a:focus {
  text-decoration: none !important;
}
a,
a:visited {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
a:focus,
a:hover {
  color: var(--themeht-primary-color);
  text-decoration: none !important;
}
a,
button,
input {
  outline: medium none !important;
}
*::-moz-selection {
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  text-shadow: none;
}
::-moz-selection {
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  text-shadow: none;
}
::selection {
  background: var(--themeht-text-color);
  color: var(--themeht-white-color);
  text-shadow: none;
}

/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
img,
span,
input,
.social-icons li:hover a,
.themeht-btn,
.service-item,
.featured-item,
.featured-icon,
.portfolio-item,
.price-table,
.service-menu li a:before,
.team-social-icon,
.swiper-button-next,
.swiper-button-prev,
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after,
.site-main .comment-navigation .nav-links a i,
.site-main .posts-navigation .nav-links a i,
.site-main .post-navigation .nav-links a i {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

/* ------------------------
    Box Shadow
------------------------*/
.box-shadow,
#header-wrap.fixed-header,
.scroll-top,
.service-item.style-1,
.service-item.style-1 .service-icon,
.main-timeline .timeline-icon,
.post-card.post-classic,
.comment-respond,
.portfolio-meta-info,
.featured-item.style-1,
.counter-icon,
.price-table,
.tab .nav-tabs .nav-link {
  -webkit-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  -moz-box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}

/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {
  background: var(--themeht-bg-dark-color);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden !important;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.clear-loader {
  z-index: 999;
  box-sizing: border-box;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  text-align: center;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-inner {
  position: relative;
  width: 300px;
  height: 150px;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
}
.loader-box {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spin 4s linear infinite;
}
.loader-inner .loader-box .side {
  width: 70px;
  height: 70px;
  background: linear-gradient(to bottom right, #ffa500, #ff4500);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  clip-path: Jar(50% 0%, 0% 100%, 100% 100%);
}
.loader-inner .loader-box .side1 {
  transform: rotateZ(-30deg) rotateY(90deg);
  background: linear-gradient(to bottom right, #ff4500, #ffa500);
}
.loader-inner .loader-box .side2 {
  transform: rotateZ(30deg) rotateY(90deg);
  background: linear-gradient(to bottom right, #ffa500, #ff4500);
}
.loader-inner .loader-box .side3 {
  transform: rotateX(30deg);
  background: linear-gradient(to bottom right, #ffa500, #ff4500);
}
.loader-inner .loader-box .side4 {
  transform: rotateX(-30deg);
  background: linear-gradient(to bottom right, #ff4500, #ffa500);
}
.loader-inner .loader-box .shadow {
  width: 60px;
  height: 60px;
  background: #ff8c00;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotateX(90deg) translateZ(-40px);
  filter: blur(12px);
}

/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
  position: fixed;
  right: 7px;
  bottom: 50px;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--themeht-bg-light-color);
}
.scroll-top.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top::after {
  position: absolute;
  font-family: "bootstrap-icons";
  content: "\F145";
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  color: var(--themeht-text-color);
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top:hover::after {
  opacity: 0;
}
.scroll-top::before {
  position: absolute;
  font-family: "bootstrap-icons";
  content: "\F145";
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  opacity: 0;
  background-image: linear-gradient(
    298deg,
    var(--themeht-text-color),
    var(--themeht-text-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top:hover::before {
  opacity: 1;
}
.scroll-top svg path {
  fill: none;
}
.scroll-top svg.scroll-circle path {
  stroke: var(--themeht-text-color);
  stroke-width: 2;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ------------------------
    Subscribe Form
------------------------*/
.subscribe-form {
  margin: 0;
  padding: 0;
  position: relative;
}
.mc-form {
  width: 100%;
}
.mc-form input[type="email"] {
  width: 100%;
  border: 1px solid #383148;
  background: transparent;
  color: var(--themeht-text-color);
  font-size: 14px;
  padding: 0 20px;
  height: 60px;
}
.mc-form input[type="email"]:focus {
  border-color: 1px solid #383148;
}
.footer .mc-form input[type="email"]::-webkit-input-placeholder,
.dark-bg .mc-form input[type="email"]::-webkit-input-placeholder {
  color: var(--themeht-white-color);
}
.footer .mc-form input[type="email"]::-moz-placeholder,
.dark-bg .mc-form input[type="email"]::-moz-placeholder {
  color: var(--themeht-white-color);
}
.footer .mc-form input[type="email"]:-ms-input-placeholder,
.dark-bg .mc-form input[type="email"]:-ms-input-placeholder {
  color: var(--themeht-white-color);
}
.footer .mc-form input[type="email"].placeholder,
.dark-bg .mc-form input[type="email"].placeholder {
  color: var(--themeht-white-color) !important;
}
.footer-subscribe p {
  font-size: 15px;
  font-weight: 500;
  color: var(--themeht-white-color);
}
.footer-subscribe .mc-form input[type="email"],
.dark-bg .mc-form input[type="email"] {
  color: var(--themeht-white-color);
}
.subscribe-form {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.subscribe-form button {
  border: inherit;
  color: var(--themeht-white-color);
  line-height: inherit;
  position: absolute;
  right: 10px;
  top: auto;
  padding: 0;
  font-size: 18px;
  background: var(--themeht-primary-color);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe-form button:hover {
  background: var(--themeht-secondary-color);
}
.subscribe-form button.text-btn {
  width: auto;
  height: auto;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}

/* ------------------------
    Header
------------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
    :root {
      --main-container: 1220px;
    }
  }
  
  @media only screen and (min-width: 1300px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
      max-width: calc(var(--main-container) + var(--container-gutters));
      padding-left: calc(var(--container-gutters) / 2);
      padding-right: calc(var(--container-gutters) / 2);
    }
  }
  
  @media (min-width: 1700px) {
    .th-container {
      --main-container: 1420px;
    }
    .th-container3 {
      --main-container: 1710px;
    }
  }
  
  @media (min-width: 1600px) {
    .th-container {
      --main-container: 1420px;
    }
    .th-container2 {
      --main-container: 1380px;
    }
  }
  
  @media only screen and (max-width: 1600px) {
    .container-fluid.px-0 {
      padding-left: 15px !important;
      padding-right: 15px !important;
    }
    .container-fluid.px-0 .row {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
    .th-container3 {
      --main-container: 1500px;
    }
  }
  
  .th-container4 {
    max-width: 1562px;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    margin-left: unset;
  }
  
  .th-container4 .container {
    margin-left: auto;
    margin-right: 0;
  }
  
  @media (max-width: 1700px) {
    .th-container4 {
      margin-left: auto;
    }
    .th-container4 .container {
      margin-right: auto;
    }
  }
  
  /* Hight Resoulation devices */
  @media (min-width: 1922px) {
    .th-container4 {
      margin-left: auto;
    }
    .th-container4 .container {
      margin-right: auto;
    }
  }
  
  .th-container5 {
    max-width: 1562px;
    padding-left: 0;
    padding-right: 0;
    margin-right: unset;
    margin-left: auto;
  }
  
  .th-container5 .container {
    margin-left: 0;
    margin-right: auto;
  }
  
  @media (max-width: 1700px) {
    .th-container5 {
      margin-right: auto;
    }
    .th-container5 .container {
      margin-left: auto;
    }
  }
  
  @media (max-width: 1300px) {
    .th-container5 {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
  
  /* Hight Resoulation devices */
  @media (min-width: 1922px) {
    .th-container5 {
      margin-right: auto;
    }
    .th-container5 .container {
      margin-left: auto;
    }
  }
  
  @media (min-width: 1560px) {
    .th-container6 {
      max-width: 1620px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      padding-right: 0;
    }
    .th-container6 .container {
      --main-container: 1220px;
    }
  }
  
  
  /*------------------- 2.5. Mobile Menu -------------------*/
  .th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
  }
  
  .th-menu-wrapper .mobile-logo {
    padding-bottom: 30px;
    padding-top: 40px;
    display: block;
    text-align: center;
    background-color: var(--smoke-color);
  }
  
  .th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
  }
  
  .th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color:#2C62AC;
    border-radius: 50%;
  }
  
  .th-menu-wrapper .th-menu-toggle:hover {
    background-color: var(--title-color);
    color: var(--white-color);
  }
  
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid #2C62AC;
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
  }
  
  .th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
  }
  
  .th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  
  .th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 33px;
    text-align: left;
  }
  
  .th-mobile-menu .new-label {
    font-size: 13px;
    background-color: #2C62AC;
    color: var(--white-color);
    padding: 2px 5px;
    border-radius: 4px;
    position: relative;
    top: -1px;
  }
  
  .th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
  }
  
  .th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
  }
  
  .th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
  }
  
  .th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--title-color);
    padding-left: 18px;
  }
  
  .th-mobile-menu ul li a:before {
    content: '\f105';
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
  }
  
  .th-mobile-menu ul li.th-active > a {
    color: #2C62AC;
  }
  
  .th-mobile-menu ul li.th-active > a:before {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .th-mobile-menu ul li ul li {
    padding-left: 20px;
  }
  
  .th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
  }
  
  .th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
  }
  
  .th-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
    content: '\f067';
    font-family: var(--icon-font);
  }
  
  .th-mobile-menu ul .th-item-has-children > a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
  }
  
  .th-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
    content: '\f068';
  }
  
  .th-mobile-menu ul .th-item-has-children.th-active > a:after {
    content: "\f068";
  }
  
  .th-mobile-menu > ul {
    padding: 0 40px;
  }
  
  .th-mobile-menu > ul > li:last-child {
    border-bottom: none;
  }
  
  .th-menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 20px;
    border: none;
    background-color: #2C62AC;
    color: var(--white-color);
    display: inline-block;
    border-radius: 5px;
  }
  
  .th-menu-toggle:hover {
    background-color: var(--title-color);
  }
  
  .th-menu-toggle.style-text, .th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: var(--title-color);
    font-size: 20px;
  }
  
  .th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i {
    margin-right: 10px;
  }
  
  .th-menu-toggle.style-text-white {
    color: var(--white-color);
  }
  
  @media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
      width: 100%;
      max-width: 270px;
    }
    .th-mobile-menu > ul {
      padding: 0 20px;
    }
  }
  
  
  /*------------------- 3.2. Buttons -------------------*/
  .th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--themeht-primary-color);
    color: white;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 20.5px 29px;
    border-radius: 10px;
  }
  
  .th-btn:before, .th-btn:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    width: 0%;
    background-color: var(--title-color);
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }
  
  .th-btn:before {
    left: 0;
    border-radius: 0 20px 20px 0;
  }
  
  .th-btn:after {
    right: 0;
    border-radius: 20px 0 0 20px;
  }
  
  .th-btn:hover, .th-btn.active {
    color: var(--white-color);
  }
  
  .th-btn:hover::before, .th-btn:hover:after, .th-btn.active::before, .th-btn.active:after {
    width: 50%;
    border-radius: 0;
  }
  
  
  
  .th-btn.style-new {
    border-radius: 3px;
    box-shadow: 0px 8px 19px rgba(255, 76, 19, 0.3);
  }
  
  .icon-btn {
    display: inline-block;
    width: var(--btn-size, 50px);
    height: var(--btn-size, 50px);
    line-height: var(--btn-size, 50px);
    font-size: var(--btn-font-size, 16px);
    background-color: var(--icon-bg, #ffffff);
    color: var(--title-color);
    text-align: center;
    border-radius: 50%;
    border: none;
  }
  
  .icon-btn:hover {
    background-color: var(--themeht-primary-color);;
    color: var(--white-color);
  }
  
  .icon-btn.style2 {
    border: 2px solid var(--white-color);
    background: transparent;
    color: var(--white-color);
  }
  
  
  
  
  
  
  
  .th-social {
    display: inline-block;
  }
  
  .th-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 46px);
    background-color: var(--white-color);
    color: var(--body-color);
    font-size: 16px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
  }
  
  .th-social a:last-child {
    margin-right: 0;
  }
  
  .th-social a:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
  }
  
  .th-social.style2 a {
    border-radius: 3px;
    border: 1px solid #DBE3EE;
    background: var(--white-color);
    color: #4D5765;
  }
  
  .th-social.style2 a:hover {
    background:var(--themeht-primary-color);;
    color: var(--white-color);
  }
  
  .th-social.style3 a {
    display: inline-block;
    width: var(--icon-size, 38px);
    height: var(--icon-size, 38px);
    line-height: var(--icon-size, 38px);
    background: rgba(14, 18, 29, 0.08);
    color: #4D5765;
    border-radius: 50%;
  }
  
  
  
  .widget {
    padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
    border-radius: 0px;
    margin-bottom: 40px;
    position: relative;
    background-color: var(--smoke-color);
  }
  
  .wp-block-search__label,
  .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.1em 0 29px 0;
    padding-bottom: 16px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--border-color);
  }
  
  
  
  .recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 25px;
    line-height: 20px;
  }
  
  .recent-post:last-child {
    margin-bottom: 0;
  }
  
  .recent-post .media-img {
    margin-right: 20px;
    width: 80px;
    border-radius: 0px;
    overflow: hidden;
  }
  
  .recent-post .media-img img {
    width: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  
  .recent-post .post-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 -0.1em 0;
    font-family: var(--title-font);
    /* Medium Large devices */
  }
  
  @media (max-width: 1299px) {
    .recent-post .post-title {
      font-size: 17px;
    }
  }
  
  
  
  .sidemenu-area .widget_title,
  .sidebar-area .widget_title {
    position: relative;
  }
  
  .sidemenu-area .widget_title:before,
  .sidebar-area .widget_title:before {
    content: '';
    height: 3px;
    width: 50px;
    background-color:var(--themeht-primary-color);;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 1;
    -webkit-animation: lineMove 10s linear infinite;
            animation: lineMove 10s linear infinite;
  }
  
  .sidemenu-area .widget_shopping_cart .th-btn,
  .sidebar-area .widget_shopping_cart .th-btn {
    margin-right: 10px;
    padding: 8px 22px;
    font-size: 14px;
  }
  
  @-webkit-keyframes lineMove {
    0% {
      left: 0px;
    }
    50% {
      left: calc(100% - 50px);
    }
    100% {
      left: 0px;
    }
  }
  
  @keyframes lineMove {
    0% {
      left: 0px;
    }
    50% {
      left: calc(100% - 50px);
    }
    100% {
      left: 0px;
    }
  }
  
  
  
  .th-widget-about .about-logo {
    margin-bottom: 30px;
  }
  
  
  
  /*------------------- 4.2. Header  -------------------*/
  .th-header {
    position: relative;
    z-index: 41;
  }
  
  .th-header .icon-btn {
    --btn-size: 45px;
    line-height: 43px;
    border: 1px solid #d0dbe9;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .th-header .icon-btn:hover {
    border-color: var(--theme-color);
  }
  
  .th-header .th-btn {
    padding: 19px 29px;
  }
  
  .sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }
  
  .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);
    -webkit-animation: stickyAni 0.4s ease-in-out;
            animation: stickyAni 0.4s ease-in-out;
  }
  
  @-webkit-keyframes stickyAni {
    0% {
      -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
              transform: translate3d(0, -40px, 0) scaleY(0.8);
      opacity: 0.7;
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0) scaleY(1);
              transform: translate3d(0, 0, 0) scaleY(1);
      opacity: 1;
    }
  }
  
  @keyframes stickyAni {
    0% {
      -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
              transform: translate3d(0, -40px, 0) scaleY(0.8);
      opacity: 0.7;
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0) scaleY(1);
              transform: translate3d(0, 0, 0) scaleY(1);
      opacity: 1;
    }
  }
  
  .main-menu a {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: var(--title-color);
    text-transform: uppercase;
    font-family: var(--body-font);
  }
  
  .main-menu a:hover {
    color: var(--themeht-primary-color);
  }
  
  .main-menu a .new-label {
    font-size: 12px;
    background-color: var(--themeht-primary-color);
    color: var(--white-color);
    padding: 2px 5px;
    border-radius: 4px;
    position: relative;
    top: -1px;
    margin-left: 5px;
  }
  
  .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.menu-item-has-children > a:after {
    content: "\2b";
    position: relative;
    font-family: var(--icon-font);
    margin-left: 5px;
    top: 0px;
    font-size: 14px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    display: inline-block;
  }
  
  .main-menu ul li.menu-item-has-children > a:hover:after {
    content: "\f068";
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  
  .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 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
    z-index: 9;
  }
  
  .main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1) translateX(-50%);
        -ms-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
    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: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 7px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  
  .main-menu ul.sub-menu a,
  .main-menu ul.mega-menu a {
    font-size: 13px;
    line-height: 15px;
  }
  
  .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 a {
    position: relative;
    padding-left: 23px;
    text-transform: capitalize;
  }
  
  .main-menu ul.sub-menu li a:before {
    content: "\f7d9";
    position: absolute;
    top: 8px;
    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: 700;
  }
  
  .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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 20px 15px 23px 15px;
    left: 50%;
    -webkit-transform: scaleY(0) translateX(-50%);
        -ms-transform: scaleY(0) translateX(-50%);
            transform: scaleY(0) translateX(-50%);
  }
  
  .main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0 15px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  
 
  .main-menu ul.mega-menu li li {
    padding: 2px 0;
  }
  
  .main-menu ul.mega-menu li a {
    display: inline-block;
    text-transform: capitalize;
  }
  
  .main-menu ul.mega-menu > li > a {
    display: block;
    font-size: 16px;
    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%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 190px;
    width: -webkit-max-content;
    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;
    -webkit-transform-origin: top center;
        -ms-transform-origin: top center;
            transform-origin: top center;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    -webkit-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;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    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::-webkit-input-placeholder {
    color: #9FAAB7;
  }
  
  .category-menu-wrap .search-form input::-moz-placeholder {
    color: #9FAAB7;
  }
  
  .category-menu-wrap .search-form input:-ms-input-placeholder {
    color: #9FAAB7;
  }
  
  .category-menu-wrap .search-form input::-ms-input-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: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            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 {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-left: 15px;
  }
  
  .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: white;
    width: 1px;
    height: 16px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            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);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  .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-social a:hover i {
    color: var(--theme-color);
  }
  
  .header-logo {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  
  .header-notice {
    margin-bottom: 0;
    display: inline-block;
  }
  
  .counter-list {
    padding: 0;
    margin: 0;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    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: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 4px;
    position: relative;
    color: var(--white-color);
  }
  
  .counter-list li:after {
    content: ":";
    position: absolute;
    top: 50%;
    right: -11.5px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            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;
    -webkit-transition: 0.4s;
    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: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-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;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  
  /* Header default ---------------------------------- */
  .header-layout-default .header-top {
    --body-color: #fff;
    background-color: var(--title-color);
    padding: 12px 0px;
    position: relative;
    z-index: 3;
  }
  
  .header-layout-default .header-top a:hover {
    color: var(--title-color);
  }
  
  .header-layout-default .header-top .header-links a:hover {
    color: var(--theme-color);
  }
  
  .header-layout-default .menu-area {
    background-color: var(--white-color);
    position: relative;
    z-index: 2;
  }
  
  .header-layout-default .menu-area .logo-bg {
    position: absolute;
    height: 100%;
    width: 543px;
    border-radius: 0 0px 0 0;
    background: #dfdfdf;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    /* Hight Resoulation devices */
    /* Medium Large devices */
    /* Medium Large devices */
    /* Large devices */
    /* Extra small devices */
  }
  
  @media (min-width: 1922px) {
    .header-layout-default .menu-area .logo-bg {
      width: 880px;
    }
  }
  
  @media (max-width: 1700px) {
    .header-layout-default .menu-area .logo-bg {
      width: 420px;
    }
  }
  
  @media (max-width: 1399px) {
    .header-layout-default .menu-area .logo-bg {
      width: 320px;
    }
  }
  
  @media (max-width: 1299px) {
    .header-layout-default .menu-area .logo-bg {
      width: 320px;
    }
  }
  
  @media (max-width: 1199px) {
    .header-layout-default .menu-area .logo-bg {
      width: 380px;
    }
  }
  
  @media (max-width: 575px) {
    .header-layout-default .menu-area .logo-bg {
      width: 260px;
    }
  }
  
  .header-layout-default .main-menu > ul > li > a {
    padding: 31.5px 0;
  }
  
  .header-layout-default .th-btn {
    padding: 21px 29px;
  }
  
  .header-layout-default .header-button {
    margin-left: 0;
  }
  
  .header-layout-default .header-button .icon-btn {
    /* Medium Large devices */
  }
  
  @media (max-width: 1299px) {
    .header-layout-default .header-button .icon-btn {
      display: none;
    }
  }
  
  
  .info-box {
    display: inline-block;
  }
  
  .info-box-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .info-box-wrap:last-child {
    margin-bottom: 0;
  }
  
  .info-box_text {
    display: block;
    color: var(--body-color);
    margin-bottom: 0;
  }
  
  .info-box-title {
    font-size: 18px;
    font-weight: 600;
  }
  
  .info-box_link {
    color: var(--body-color);
    margin-bottom: -0.4em;
  }
  
  .info-box_link:hover {
    color: var(--theme-color);
  }
  
  .info-box_icon {
    color: var(--white-color);
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    font-size: 12px;
    height: 26px;
    width: 26px;
    background: var(--themeht-primary-color);;
    text-align: center;
  }
  
  
  
  
  /*------------------- 4.00. Popup Search  -------------------*/
  .popup-search-box {
    position: fixed;
    top: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.95);
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
  }
  
  .popup-search-box button.searchClose {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 40px;
    right: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--theme-color);
    background-color: transparent;
    font-size: 22px;
    border-radius: 50%;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    color: var(--theme-color);
  }
  
  .popup-search-box button.searchClose:hover {
    color: var(--body-color);
    background-color: #fff;
    border-color: transparent;
    border-color: transparent;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .popup-search-box form {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    padding-bottom: 40px;
    cursor: auto;
    width: 100%;
    max-width: 700px;
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    -webkit-transition: -webkit-transform ease 0.4s;
    transition: -webkit-transform ease 0.4s;
    transition: transform ease 0.4s;
    transition: transform ease 0.4s, -webkit-transform ease 0.4s;
    /* Large devices */
  }
  
  @media (max-width: 1199px) {
    .popup-search-box form {
      max-width: 600px;
    }
  }
  
  .popup-search-box form input {
    font-size: 18px;
    height: 70px;
    width: 100%;
    border: 2px solid var(--theme-color);
    background-color: transparent;
    padding-left: 30px;
    color: #fff;
    border-radius: 50px;
  }
  
  .popup-search-box form input::-moz-placeholder {
    color: #fff;
  }
  
  .popup-search-box form input::-webkit-input-placeholder {
    color: #fff;
  }
  
  .popup-search-box form input:-ms-input-placeholder {
    color: #fff;
  }
  
  .popup-search-box form input::-ms-input-placeholder {
    color: #fff;
  }
  
  .popup-search-box form input::placeholder {
    color: #fff;
  }
  
  .popup-search-box form button {
    position: absolute;
    top: 0px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    right: 12px;
    color: var(--white-color);
    cursor: pointer;
    width: 70px;
    height: 70px;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    -webkit-transform: scale(1.001);
        -ms-transform: scale(1.001);
            transform: scale(1.001);
  }
  
  .popup-search-box form button:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  
  .popup-search-box.show {
    opacity: 1;
    visibility: visible;
    width: 100.1%;
    height: 100%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    border-radius: 0;
  }
  
  .popup-search-box.show form {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  
  /*------------------- 4.00. Popup Side Menu  -------------------*/
  .sidemenu-wrapper {
    position: fixed;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
  }
  
  .sidemenu-wrapper .closeButton {
    display: inline-block;
    border: 2px solid;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 24px;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
  }
  
  .sidemenu-wrapper .closeButton:hover {
    color: var(--theme-color);
    border-color: var(--theme-color);
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  
  .sidemenu-wrapper .sidemenu-content {
    background-color: var(--white-color);
    width: 450px;
    margin-left: auto;
    padding: 80px 30px;
    height: 100%;
    overflow: scroll;
    position: relative;
    right: -500px;
    cursor: auto;
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    -webkit-transition: right ease 1s;
    transition: right ease 1s;
  }
  
  .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
  }
  
  .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
    width: 2px;
    background-color: #F5F5F5;
  }
  
  .sidemenu-wrapper .widget {
    padding: 0;
    border: none;
    background-color: transparent;
  }
  
  .sidemenu-wrapper.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
  }
  
  .sidemenu-wrapper.show .sidemenu-content {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

/* ------------------------
    Footer
------------------------*/
.footer {
  background-color: var(--themeht-bg-dark-color);
  overflow: hidden;
  position: relative;
  z-index: 9;
  clear: both;
  margin-top: 50px;
}
.footer-bg {
  background-repeat: no-repeat;
  background-position: left -100px center;
  background-size: cover;
}
.footer .widget-title {
  margin-bottom: 30px;
}
.footer-widget {
  margin-bottom: 0;
}
.footer-widget.widget ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-widget.widget ul li {
  list-style-type: none;
  margin-bottom: 15px;
}
.primary-footer {
  position: relative;
  z-index: 99;
  padding: 100px 0;
}
.secondary-footer {
  position: relative;
  color: var(--themeht-white-color);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.copyright {
  padding: 30px 0;
  position: relative;
}
.copyright a {
  text-decoration: underline !important;
  color: var(--themeht-primary-color);
}
.footer h5 {
  position: relative;
  color: var(--themeht-white-color);
}
.footer-menu li {
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-menu li:last-child {
  margin-bottom: 0;
}
.footer-menu li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--themeht-white-color);
}
.footer-menu li a:hover {
  color: var(--themeht-primary-color);
}
.footer-menu .list-inline li {
  display: inline-block;
  margin: 0 10px;
}

.media-icon.list-inline li {
  display: inline-block;
}
.media-icon li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--themeht-white-color);
  position: relative;
  padding-left: 40px;
  border-bottom: dashed 1px #374148;
}
.media-icon li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.media-icon li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 24px;
  color: var(--themeht-primary-color);
}
.media-icon li a {
  color: var(--themeht-white-color);
}
.media-icon li a:hover {
  color: var(--themeht-primary-color);
}

.social-icons.footer-social {
  display: inline-block;
  margin-top: 35px;
}
.social-icons.footer-social li {
  margin: 0 20px 0 0;
}
.social-icons.footer-social li a {
  height: auto;
  width: auto;
  line-height: 1;
  font-size: 20px;
  color: var(--themeht-white-color);
  background-color: inherit;
  border: none;
}
.social-icons.footer-social li a:hover {
  background-color: inherit;
  color: var(--themeht-primary-color);
}

.subscribe-form {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 20px;
}
.subscribe-form button {
  height: auto;
  background: var(--themeht-primary-color);
  border: inherit;
  color: var(--themeht-white-color);
  line-height: inherit;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0;
  width: 50px;
  height: 50px;
}
.subscribe-form input[type="email"] {
  background: var(--themeht-bg-dark-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 60px;
  color: var(--themeht-white-color) !important;
}
.subscribe-form input[type="email"]::placeholder {
  color: var(--themeht-white-color) !important;
}
.subscribe-form input[type="email"]:focus {
  background: var(--themeht-bg-dark-color);
  border: 1px solid var(--themeht-primary-color) !important;
}
.subscribe-form button:hover {
  color: var(--themeht-secondary-color);
  background: var(--themeht-white-color);
}
.footer-number-inner {
  position: relative;
  display: block;
  background-color: #181515;
  padding: 12px 21px 15px;
}
.footer-number {
  position: relative;
  display: block;
  border: dashed 1px rgba(255, 255, 255, 0.12);
  padding: 6px;
  margin-top: 40px;
  margin-right: 25px;
}
.footer-number span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--themeht-white-color);
  display: block;
}
.footer-number a {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 3px;
  font-weight: 600;
  display: inline-block;
  color: var(--themeht-white-color);
  font-family: var(--themeht-typography-secondary-font-family);
}
.footer-number a:hover {
  color: var(--themeht-primary-color);
}
.footer-number i {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) skewX(-17deg);
  height: 58px;
  width: 60px;
  font-size: 30px;
  color: var(--themeht-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--themeht-primary-color);
}

@media (min-width: 992px) {
  .footer-menu1 {
    padding-left: 30px !important;
  }
}

/* ------------------------
    Page Title
------------------------*/
.page-title {
  background: var(--themeht-bg-dark-color);
  position: relative;
  overflow: hidden;
  display: block;
  padding: 150px 0;
  z-index: 1;
}
.page-title h1 {
  font-size: 50px;
  color: var(--themeht-white-color);
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.breadcrumb {
  padding: 6px 10px;
  background: var(--themeht-white-color);
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--themeht-text-color);
  font-weight: 600;
  z-index: 9;
}
.breadcrumb-item {
  display: inline-block;
}
.breadcrumb-item a {
  color: var(--themeht-text-color);
}
.breadcrumb-item.active,
.breadcrumb-item a:hover {
  color: var(--themeht-primary-color);
}
.breadcrumb-item i {
  background: var(--themeht-primary-color);
  margin: 10px;
  padding: 2px 5px;
  color: var(--themeht-white-color);
}
.page-title::before {
  opacity: 0.9;
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #00000080 23%,
    rgb(255 255 255 / 0%) 60%
  );
  opacity: 0.7;
  z-index: -1;
}

.search-icon a {
  font-size: 18px;
  color: var(--themeht-white-color);
  line-height: 1;
}
.search-input {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  text-align: center;
  background: var(--themeht-white-color);
  border-bottom: 1px solid var(--themeht-primary-color);
  z-index: 9999;
  top: 0;
  display: none;
  padding: 80px 0;
}
.search-inner {
  padding: 15px 0;
  position: relative;
}
.search-input label {
  width: 100%;
}
.search-input .search-field {
  width: 100%;
  padding-right: 60px;
}
.search-input .search-form button[type="submit"] {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  font-size: 20px;
  right: 50px;
  color: var(--themeht-text-color);
  position: absolute;
  top: 25px;
}
.search-input .search-submit:hover {
  color: var(--themeht-primary-color);
}
.close-search {
  position: absolute;
  bottom: -40px;
  right: 0;
  cursor: pointer;
  font-size: 30px;
  color: var(--themeht-body-color);
}
.close-search:hover {
  color: var(--themeht-primary-color);
}
