/* ------------------------------------------------
  Project:   Induztry - Factory & Industry HTML5 Template
  Author:    ThemeHt
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Text color
  4. Background color
  5. Banner Slider
  6. List Icon
  7. Contact Form
  8. Extra
  9. Responsive Css
------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");


:root {
  --themeht-primary-color: #ff5e15;
  --themeht-secondary-color: #010101;
  --themeht-text-color: #0e0e0e;
  --themeht-body-color: #5e5e5e;
  --themeht-white-color: #ffffff;
  --themeht-bg-dark-color: #010101;
  --themeht-bg-light-color: #f4f9fd;
  --themeht-border-light-color: #dadada;
  --themeht-rgba-color: rgba(255, 255, 255, 0.9);
  --themeht-typography-body-font-family: "Inter", sans-serif;
  --themeht-typography-secondary-font-family: "Host Grotesk", sans-serif;
}

/* ------------------------
    General
------------------------*/

body {
  scroll-behavior: smooth;
  font-family: var(--themeht-typography-body-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
  color: var(--themeht-body-color);
  overflow-x: hidden;
}
.page-wrapper {
  overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: normal;
  margin-top: 0px;
  font-style: normal;
  margin-bottom: 20px;
  color: var(--themeht-text-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
.h1,
h1 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 700;
}
.h2,
h2 {
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
}
.h3,
h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}
.h4,
h4 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 600;
}
.h5,
h5 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
.h6,
h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
ul {
  margin-left: 0;
}

label {
  display: inline-block;
  color: var(--themeht-text-color);
  font-size: 16px;
  margin-bottom: 7px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

/* ------------------------
    Helper class
------------------------*/
p {
  line-height: 1.7;
}
.lead {
  font-weight: normal;
  font-size: 17px;
  line-height: 30px;
}
.z-index-0 {
  z-index: 0;
  position: relative;
}
.z-index-1 {
  z-index: 1;
  position: relative;
}
section,
.section {
  padding: 100px 0;
  position: relative;
}
.img-border {
  border: 10px solid var(--themeht-white-color);
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
  color: var(--themeht-primary-color);
}
.text-black {
  color: var(--themeht-text-color) !important;
}
.text-grey {
  color: var(--themeht-body-color);
}
.text-muted {
  color: #979797 !important;
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
  background-color: var(--themeht-white-color) !important;
}
.dark-bg {
  background-color: var(--themeht-bg-dark-color);
}
.light-bg {
  background-color: var(--themeht-bg-light-color);
}
.primary-bg {
  background-color: var(--themeht-primary-color);
}
.secondary-bg {
  background-color: var(--themeht-secondary-color);
}
.transparent-bg {
  background-color: inherit !important;
}
.border-light {
  border-color: var(--themeht-border-light-color) !important;
}

/* ------------------------
    Banner
------------------------*/
[data-bg-img] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner-slider {
  background-color: var(--themeht-bg-dark-color);
}
.banner-slider .slider-img {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
}
.slider-img::before {
  position: absolute;
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: 9;
}
.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
  transform: scale(0);
  width: 50px;
  height: 50px;
  background-image: none !important;
  border-radius: 100%;
  line-height: inherit;
  background: var(--themeht-primary-color);
  border: none;
}
.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
  background: var(--themeht-bg-dark-color);
}
.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
  font-size: 20px;
  color: var(--themeht-white-color);
  line-height: 50px !important;
}
.banner-slider .swiper-button-next:hover:after,
.banner-slider .swiper-button-prev:hover:after {
  color: var(--themeht-white-color);
}
.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
  transform: scale(1);
}
.banner-slider.swiper:hover .swiper-button-prev {
  left: 10px;
}
.banner-slider.swiper:hover .swiper-button-next {
  right: 10px;
}
#banner-pagination {
  position: absolute !important;
  right: 150px;
  left: inherit;
  margin: 0;
  text-align: right;
  width: auto;
  bottom: 50px;
  font-size: 18px;
  color: var(--themeht-white-color);
}
.banner-slider .themeht-btn + .themeht-btn {
  margin-left: 20px;
}
.banner-slider h6,
.banner-slider .banner-large-text {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}
.banner-slider h1 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}
.banner-slider p,
.banner-top a {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
}
.banner-slider .btn-box {
  position: relative;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}
.banner-slider .swiper-slide-active h6 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 500ms;
}
.banner-slider .swiper-slide-active h1 {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1000ms;
}
.banner-slider .swiper-slide-active p,
.banner-slider .swiper-slide-active .banner-top a {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1500ms;
}
.banner-slider .swiper-slide-active .btn-box {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 2000ms;
}
.banner-slider .swiper-slide-active .banner-large-text {
  opacity: 0.2;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1000ms;
}
.banner-content {
  padding: 200px 0 200px 150px;
  position: relative;
  z-index: 9;
}
.banner-slider h6 {
  color: var(--themeht-white-color);
  text-transform: uppercase;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 6px 20px 6px 6px;
}
.banner-slider h1 {
  font-weight: 700;
  font-size: 110px;
  line-height: 120px;
  color: var(--themeht-white-color);
}
.banner-slider h1 span {
  font-weight: 600;
  display: block;
}
.banner-content p {
  max-width: 80%;
  margin: 0;
  color: var(--themeht-white-color);
}
.banner-slider-one .banner-content {
  padding: 80px 0 150px 150px;
  position: relative;
  z-index: 9;
}
.slider-overlay {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #000000 70%, #ffffff 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.banner-slider-one .banner-content .banner-text {
  width: 65%;
}
#banner-pagination {
  bottom: 100px;
  position: absolute !important;
  left: inherit;
  right: 50px;
  width: auto;
  transform: translateY(-50%);
  margin: 0;
}
.banner-top {
  position: relative;
  display: inline-block;
}
.banner-large-text {
  font-size: 300px;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--themeht-white-color);
  font-weight: 800;
  font-family: var(--themeht-typography-secondary-font-family);
  opacity: 0.2;
}
.banner-top a {
  position: absolute;
  right: 100px;
  top: 50%;
  margin-top: -50px;
}
.banner-top .video-btn-icon > i {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 40px;
}
.banner-slider .banner-content h6 span {
  background: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  padding: 2px 8px;
  margin-right: 15px;
  display: inline-block;
}
.banner-3::before {
  position: absolute;
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: -1;
}
.banner-slider-two .banner-content {
  padding: 200px 0 200px 150px;
  position: relative;
  z-index: 9;
}
.banner-slider-two .banner-content .banner-text {
  width: 50%;
}
.banner-btn {
  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: 50px;
  margin-top: 40px;
}
.banner-btn .video-btn {
  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: 30px;
}
.video-btn-icon {
  position: relative;
  display: inline-block;
  z-index: 9;
}
.video-btn-icon:after,
.video-btn-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--themeht-white-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.video-btn-icon:after,
.video-btn-icon:before {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}
.video-btn-icon:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.video-btn-icon > i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--themeht-primary-color);
  color: var(--themeht-white-color);
  font-size: 30px;
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.video-btn span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--themeht-white-color);
}
.video-large .video-btn-icon > i {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 50px;
}
.banner-slider-two .video-btn-icon:after,
.banner-slider-two .video-btn-icon:before {
  background-color: var(--themeht-primary-color);
}

.about-sec1-box {
  position: relative;
  display: block;
}
.about-sec1-box .shape1 {
  position: absolute;
  top: -5px;
  right: 0;
  z-index: -1;
}
.about-sec1-box .shape2 {
  position: absolute;
  top: 135px;
  right: 0;
  z-index: -1;
}
.about-sec1-box .shape3 {
  position: absolute;
  left: -90px;
  bottom: -30px;
  z-index: -1;
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.about-sec1.img1 {
  position: relative;
  display: block;
  max-width: 430px;
  width: 100%;
}
.about-sec1.img1 img,
.about-sec1.img2 .about-sec1-inner img {
  width: 100%;
}
.about-sec1.img2 {
  position: absolute;
  bottom: -180px;
  right: 0;
  z-index: 2;
}
.about-sec1.img2:before {
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: 0;
  right: 0;
  background: var(--themeht-white-color);
  content: "";
  z-index: -1;
}
.round-text {
  width: 180px;
  height: 180px;
  z-index: 9;
  position: absolute;
  bottom: 80px;
  left: -80px;
  border-radius: 50%;
  background-color: var(--themeht-white-color);
  z-index: 5;
  -webkit-filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
  filter: drop-shadow(0px 10px 25px rgba(165, 165, 165, 0.3));
}
.round-text text {
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 1px;
  font-weight: 500;
  fill: var(--themeht-text-color);
}
.round-text svg {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation-name: rotate;
  -moz-animation-name: rotate;
  -ms-animation-name: rotate;
  -o-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 40s;
  -moz-animation-duration: 40s;
  -ms-animation-duration: 40s;
  -o-animation-duration: 40s;
  animation-duration: 40s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
.text-btn-icon {
  font-size: 45px;
  color: var(--themeht-white-color) !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--themeht-primary-color);
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-sec1-inner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}
.overlay-icon-box {
  position: absolute;
  top: 40px;
  left: 40px;
  bottom: 40px;
  right: 40px;
  background-color: var(--themeht-primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  line-height: 1;
  color: var(--themeht-white-color);
}

.about-section-2 .people {
  background: var(--themeht-primary-color);
  padding: 25px;
  position: absolute;
  right: 19px;
  top: -9px;
  z-index: 1;
}
.about-section-2 .people:before {
  background: var(--themeht-bg-dark-color);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  content: "";
  height: 30px;
  position: absolute;
  right: -20px;
  top: 0;
  width: 20px;
}
.about-section-2 .people h2 {
  color: var(--themeht-white-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.about-section-2 .people h2 span {
  color: var(--themeht-white-color);
  font-size: 36px;
  font-weight: 600;
  line-height: 33px;
}
.about-section-2 .people p {
  color: var(--themeht-white-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}
.form-section {
  position: relative;
  overflow: hidden;
}
.form-section:after {
  background: #ebebeb;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  z-index: -1;
}
.form-section:before {
  background: var(--themeht-bg-dark-color);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 60%;
  z-index: -1;
  content: "";
}
.form-section2:after {
  background: var(--themeht-bg-dark-color);
}
.form-section2:before {
  background: var(--themeht-bg-light-color);
}
.form-border {
  border: 13px solid #ffffff;
  z-index: 9;
}
.ht-image-right {
  position: absolute;
  bottom: 0px;
  right: -50px;
}
.image-title {
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--themeht-typography-secondary-font-family);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 160px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 160px;
}

.gear-anim {
  animation-name: rotateme-two;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme-two;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme-two;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme-two;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme-two;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
  position: absolute;
  left: -25px;
  top: -25px;
  line-height: 1em;
  font-size: 230px;
  color: var(--themeht-white-color);
  z-index: -1;
}

/* ------------------------
    Error
------------------------*/
.error-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: dash 5s linear alternate infinite;
}
.error-path path {
  stroke: var(--themeht-primary-color);
}
.error-path path:nth-child(2) {
  stroke: var(--themeht-primary-color);
}
.error-path path:nth-child(3) {
  stroke: var(--themeht-secondary-color);
}

/* ------------------------
    Timeline
------------------------*/
.main-timeline:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 2px dashed var(--themeht-primary-color);
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}
.timeline_item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.timeline-order-1 {
  order: 3;
}
.timeline-order-2 {
  order: 2;
  left: 30px;
}
.timeline-order-3 {
  order: 1;
}
.main-timeline .timeline-icon {
  width: 60px;
  height: 60px;
  position: relative;
  right: 30px;
  font-size: 30px;
  background: var(--themeht-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeht-white-color);
  border-radius: 50%;
  z-index: 9;
}
.main-timeline .date-content {
  width: 50%;
  position: relative;
}
.main-timeline .date-content:before {
  content: "";
  width: 50%;
  height: 1px;
  background: var(--themeht-border-light-color);
  margin: auto 0;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}
.main-timeline .timeline-order-1:before {
  content: "";
  width: 50%;
  height: 1px;
  background: var(--themeht-border-light-color);
  position: absolute;
  padding-right: 30px;
  margin-right: 50% !important;
}
.main-timeline .date {
  font-family: var(--themeht-typography-secondary-font-family);
  line-height: 1;
  font-weight: 700;
  font-size: 60px;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--themeht-white-color);
  z-index: 1;
  padding: 0 15px;
  -webkit-text-stroke: 1px var(--themeht-primary-color);
}
.main-timeline .timeline-content {
  padding: 30px;
  background: var(--themeht-white-color);
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
}
.main-timeline .timeline-content p {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .timeline {
    flex-direction: column !important;
  }
  .main-timeline:before {
    margin-left: 1px;
  }
  .main-timeline .timeline-icon {
    margin: auto 2px;
  }
  .main-timeline .timeline-content {
    padding: 40px 30px;
  }
  .timeline-order-1 {
    order: 2;
  }
  .timeline-order-2 {
    order: 1;
    left: -1em;
  }
  .timeline-order-3 {
    order: 3;
  }
  .timeline-order-1b {
    order: 2;
  }
  .timeline-order-2b {
    order: 1;
    left: -1em;
  }
  .timeline-order-3b {
    order: 3;
  }
  .main-timeline .timeline-order-1:before {
    width: 100%;
  }
  .main-timeline .timeline-order-1b:before {
    width: 100%;
  }
  .main-timeline .timeline-order-1b:before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--themeht-border-light-color);
    position: absolute;
    top: 0;
    padding-right: 30px;
    bottom: 0;
    margin-right: 50% !important;
  }
  .main-timeline .date {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 350px) {
  .timeline-icon {
    visibility: hidden;
  }
  .main-timeline .date-content:before {
    visibility: hidden;
  }
  .date-content {
    left: -15px;
  }
}

/* ------------------------
    List Icon
------------------------*/
.list-icon li {
  position: relative;
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
.list-icon li:last-child {
  margin-bottom: 0;
}
.list-icon li i {
  color: var(--themeht-primary-color);
  font-size: 20px;
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ------------------------
 Marquee Text
------------------------*/
.marquee-wrap {
  width: 100%;
  position: relative;
}
.marquee-wrap {
  overflow: hidden;
  display: flex;
}
.marquee-inner {
  display: flex;
  will-change: transform;
  animation: marquee 50s linear infinite;
}
.marquee-text {
  position: relative;
  white-space: nowrap;
}
.marquee-text span {
  font-size: 8.125rem;
  line-height: 122%;
  color: var(--themeht-secondary-color);
  font-family: var(--themeht-typography-secondary-font-family);
  font-weight: 900;
  vertical-align: middle;
  text-transform: uppercase;
}
.marquee-text i {
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin: 0 30px;
  color: var(--themeht-secondary-color);
  vertical-align: middle;
}
.marquee-text:nth-child(2n + 2) span {
  color: var(--themeht-white-color);
  text-shadow: -1px -1px 0 var(--themeht-text-color),
    1px -1px 0 var(--themeht-text-color), -1px 1px 0 var(--themeht-text-color),
    1px 1px 0 var(--themeht-text-color);
}
.marquee-text.text-white span {
  color: var(--themeht-white-color);
}
.marquee-text.text-white i {
  color: var(--themeht-white-color);
}
.marquee-text.text-white:nth-child(2n + 2) span {
  color: var(--themeht-primary-color);
  text-shadow: -1px -1px 0 var(--themeht-white-color),
    1px -1px 0 var(--themeht-white-color), -1px 1px 0 var(--themeht-white-color),
    1px 1px 0 var(--themeht-white-color);
}
.marquee-wrap.style-2:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  z-index: 9;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 1%,
    rgba(0, 0, 0, 1) 98%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}
.marquee-wrap.style-2:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 99%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}
.marquee-wrap.style-2 .marquee-text {
  margin: 0 30px;
}
.marquee-wrap.style-2 .marquee-text span {
  text-shadow: none;
  opacity: 0.2;
  color: white;
  font-size: 15rem;
  font-weight: 700;
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
  margin: 50px 0;
  padding: 50px 0;
  display: table;
  width: 100%;
  border-top: 2px dashed var(--themeht-border-light-color);
  border-bottom: 2px dashed var(--themeht-border-light-color);
}
.countdown > li {
  font-weight: 700;
  text-align: center;
  list-style-type: none;
  display: table-cell;
  width: auto;
}
.countdown > li span {
  font-size: 70px;
  font-weight: 700;
  line-height: 60px;
  display: inline-block;
}
.countdown > li p {
  font-size: 20px;
  display: inline-block;
  line-height: 30px;
  margin-bottom: 0;
  color: var(--themeht-text-color);
}
.coming-soon .subscribe-form {
  margin: 0 auto;
}

/* ------------------------
 Clients Logo
------------------------*/

.clients-logo {
  text-align: center;
}
.clients-logo img {
  width: 100px;
  -webkit-filter: contrast(0%);
  filter: contrast(0%);
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
}
.clients-logo:hover img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}
.client-text {
  text-align: center;
  position: relative;
}
.client-text:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  background: var(--themeht-border-light-color);
  width: 70%;
  height: 1px;
}
.client-text span {
  background: var(--themeht-white-color);
  padding: 5px 40px;
}
.client-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.client-swiper .swiper-slide {
  display: flex;
  align-items: center;
  width: auto !important;
  padding: 0 50px;
}

/* ------------------------
Extra
------------------------*/
.contact-info {
  padding: 50px 30px 30px;
  position: relative;
}
.contact-info:last-child {
  margin-bottom: 0;
}
.contact-info i {
  position: absolute;
  left: 50%;
  top: 0;
  line-height: 24px;
  font-size: 40px;
  color: var(--themeht-white-color);
  text-align: center;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--themeht-primary-color);
  margin-left: -45px;
  margin-top: -45px; /* border-radius: 50%; */
  border: 5px solid white;
}
.contact-info h4 {
  margin-top: 15px;
}
.contact-info p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 26px;
  color: var(--themeht-body-color);
  max-width: 300px;
  margin: 0 auto;
}
.contact-info a {
  color: var(--themeht-body-color);
  font-size: 18px;
  line-height: 26px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}
.contact-info a:hover {
  color: var(--themeht-primary-color);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
label {
  font-size: 14px;
  line-height: 1;
  color: var(--themeht-text-color);
}
.form-control {
  height: 55px;
  border-radius: 0;
  font-size: 14px;
  color: var(--themeht-text-color);
  background-color: var(--themeht-white-color);
  border: 1px solid var(--themeht-border-light-color);
}
textarea.form-control {
  height: 120px;
}
.form-control:focus {
  box-shadow: none;
  background: none;
  border-color: var(--themeht-primary-color);
}
select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  height: 55px !important;
  color: var(--themeht-body-color);
}
iframe {
  width: 100%;
  border: none;
  pointer-events: auto;
}
.iframe-h {
  height: 500px !important;
}
.iframe-h-2 {
  height: 600px !important;
}
.map iframe {
  border: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -moz-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -ms-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  -o-filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
  filter: brightness(100%) contrast(100%) saturate(50%) blur(0px)
    hue-rotate(0deg);
}
.help-block.with-errors {
  position: absolute;
  color: red;
  right: 15px;
  font-size: 10px;
  line-height: 14px;
}
.form-control::-webkit-input-placeholder {
  color: var(--themeht-body-color);
}
.form-control::-moz-placeholder {
  color: var(--themeht-body-color);
}
.form-control:-ms-input-placeholder {
  color: var(--themeht-body-color);
}
.form-control:-moz-placeholder {
  color: var(--themeht-body-color);
}

/* -------------------------------
   Background Position & Size
-------------------------------*/
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-pos-l {
  background-position: left;
}
.bg-pos-r {
  background-position: right;
}
.bg-pos-rt {
  background-position: right top;
}
.bg-pos-cr {
  background-position: center right;
}
.bg-pos-cl {
  background-position: center left;
}
.bg-pos-lt {
  background-position: left top;
}
.bg-pos-rb {
  background-position: right bottom;
}
.bg-pos-lb {
  background-position: left bottom;
}

.bg-fix {
  background-attachment: fixed;
}
.border-15 {
  border-width: 15px !important;
}
.border-primary {
  border-color: var(--themeht-primary-color) !important;
}
.section-p-custom {
  padding: 120px 120px 120px 250px;
}
.image-video-sec {
  padding: 400px 0 120px;
}
.bg-dark-gradient-overlay {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.bg-dark-gradient-overlay:before {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(7%, #141622),
    to(transparent)
  );
  background: linear-gradient(to top, #141622 7%, transparent 100%);
  opacity: 0.75;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}
.ht-video {
  position: absolute;
  object-fit: cover;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -9;
}
.testimonial-left-sec .featured-item {
  width: 55%;
  background: var(--themeht-bg-dark-color);
  padding: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 15px solid var(--themeht-white-color);
  border-right: 15px solid var(--themeht-white-color);
}
.testimonial-left-sec .featured-item.style-2 .featured-icon {
  font-size: 90px;
}
.testimonial-left-sec .video-large {
  transform: translate(-50%, -50%);
}


/* Icon Line */
.peticon{
  width: 100px;
}
.peticon2{
  width: 100px;
}

/* pet button */
.petbtn{
  left: 45%;
    margin-top: 40px;
}


#nta-wa-gdpr {
  vertical-align: text-top !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nta-wa-gdpr {
  font-size: 11px;
  padding: 5px;
  margin-left: -5px;
  margin-right: -5px;
  border-radius: 4px;
}
.nta-wa-gdpr a {
  text-decoration: underline;
  color: inherit;
}
.pointer-disable {
  pointer-events: none;
}
.nta-woo-products-button:before,
.nta-woo-products-button:after {
  content: "";
  display: block;
  clear: both;
}
.wa__button {
  border-bottom: none !important;
}
.wa__btn_w_img:hover {
  text-decoration: none;
}
.wa__button,
.wa__btn_popup,
.wa__button *,
.wa__btn_popup *,
.wa__btn_popup :before,
.wa__button :before,
.wa__button :after,
.wa__btn_popup :after,
.wa__popup_chat_box,
.wa__popup_chat_box *,
.wa__popup_chat_box :before,
.wa__popup_chat_box :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wa__button {
  position: absolute;
  width: 300px;
  min-height: 64px;
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
  -moz-box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
  box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.09);
}
.wa__btn_txt {
  display: inline-block;
  font-size: 12px;
  line-height: 1.33em;
}
.wa__btn_w_icon .wa__btn_txt {
  padding: 16px 20px 15px 71px;
}
.wa__button_text_only .wa__btn_txt,
.wa__r_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt,
.wa__sq_button.wa__btn_w_img.wa__button_text_only .wa__btn_txt {
  padding-top: 25px;
  padding-bottom: 24px;
}
.wa__btn_w_icon .wa__btn_txt .wa__btn_title {
  padding-left: 2px;
  font-size: 14px;
}
.wa__cs_info {
  margin-bottom: 2px;
}
.wa__btn_status {
  color: #f5a623;
  font-size: 9px;
  padding: 2px 0 0;
  font-weight: 700;
}
.wa__cs_info .wa__cs_name,
.wa__cs_info .wa__cs_status {
  display: inline-block;
}
.wa__cs_info .wa__cs_name {
  font-size: 12px;
  line-height: 1.36em;
}
.wa__stt_online .wa__cs_info .wa__cs_name {
  color: #d5f0d9;
}
.wa__stt_offline .wa__cs_info .wa__cs_name {
  color: #76787d;
}
.wa__cs_info .wa__cs_status {
  width: 36px;
  height: 14px;
  margin-left: 3px;
  padding: 1px;
  font-size: 9px;
  line-height: 1.34em;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.98);
  position: relative;
  top: -1px;
  left: 0px;
  text-align: center;
}
.wa__stt_online .wa__cs_info .wa__cs_status {
  background: #62c971;
}
.wa__stt_offline .wa__cs_info .wa__cs_status {
  background: #b9bbbe;
}
.wa__stt_online {
  background: #2db742;
  cursor: pointer;
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  backface-visibility: hidden;
  will-change: transform;
}
.wa__stt_online .wa__btn_txt {
  position: relative;
  z-index: 4;
}
.wa__r_button.wa__stt_online:before {
  border-radius: 50vh;
}
.wa__sq_button.wa__stt_online:before {
  border-radius: 5px;
}
.wa__stt_online:before {
  content: "";
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
}
.wa__button.wa__stt_online:focus,
.wa__button.wa__stt_online:active,
.wa__button.wa__stt_online:hover {
  box-shadow: 0px 4px 8px 1px rgba(32, 32, 37, 0.19);
  -webkit-transform: translate(0, -3px);
  -moz-transform: translate(0, -3px);
  -ms-transform: translate(0, -3px);
  transform: translate(0, -3px);
}
.wa__button.wa__stt_online:focus:before,
.wa__button.wa__stt_online:active:before,
.wa__button.wa__stt_online:hover:before {
  opacity: 1;
}
.wa__stt_online.wa__btn_w_icon .wa__btn_icon img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.wa__stt_offline {
  background: #ebedf0;
  color: #595b60;
  box-shadow: none;
  cursor: initial;
}
.wa__stt_offline.wa__btn_w_icon .wa__btn_txt {
  padding: 8px 20px 6px 71px;
}
.wa__stt_offline.wa__r_button.wa__btn_w_img .wa__btn_txt {
  padding: 8px 20px 8px 100px;
}
.wa__stt_offline.wa__sq_button.wa__btn_w_img .wa__btn_txt {
  padding: 8px 20px 8px 70px;
}
.wa__btn_w_icon .wa__btn_icon {
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.wa__btn_w_icon .wa__btn_icon img {
  width: 41px;
  height: 69px;
}
.wa__btn_w_img {
  position: relative;
  width: 300px;
  margin: 20px 0 20px;
}
.wa__btn_w_img .wa__cs_img {
  position: absolute;
  top: 50%;
  left: 0px;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.wa__cs_img_wrap {
  width: 56px;
  height: 56px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #000;
  position: relative;
  overflow: hidden;
}
.wa__btn_w_img .wa__cs_img img {
  max-width: 100%;
  height: auto;
  -webkit-transition: 0.2s ease transform;
  -moz-transition: 0.2s ease transform;
  transition: 0.2s ease transform;
}
.wa__btn_w_img .wa__cs_img:after {
  content: "";
  background: #fff
    url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center
    no-repeat;
  background-size: 21px;
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 20px;
  right: -14px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
  -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
  box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}
.wa__stt_offline.wa__btn_w_img .wa__cs_img:after {
  content: "";
  background: #fff
    url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center
    no-repeat;
  background-size: 21px;
  display: block;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 20px;
  right: -14px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
  -moz-box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
  box-shadow: 0px 4px 6px 0px rgba(39, 38, 38, 0.3);
}
.wa__btn_w_img .wa__btn_txt {
  padding: 14px 20px 12px 103px;
}
.wa__r_button {
  border-radius: 50vh;
}
.wa__sq_button {
  border-radius: 5px;
}
.wa__sq_button.wa__btn_w_img {
  width: 270px;
  margin-left: 30px;
}
.wa__r_button.wa__btn_w_img .wa__cs_img {
  left: -5px;
}
.wa__sq_button.wa__btn_w_img .wa__cs_img {
  left: -35px;
}
.wa__sq_button.wa__btn_w_img .wa__btn_txt {
  padding: 10px 20px 10px 70px;
  display: table-cell;
  vertical-align: middle;
  height: 66px;
}
.wa__btn_txt .wa__btn_title {
}
.wa__r_button.wa__btn_w_img .wa__btn_txt {
  padding: 8px 20px 8px 100px;
  display: table-cell;
  vertical-align: middle;
  height: 66px;
}
.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status {
  margin-left: 3px;
}
.wa__popup_chat_box {
  position: fixed;
  bottom: 10rem;
  left: 5rem;
  width: 350px;
  max-width: calc(100% - 50px);
  border-radius: 1.5rem;
  webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  -webkit-transform: translate(0, 50px);
  -moz-transform: translate(0, 50px);
  -ms-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: 1s ease all;
  -moz-transition: 1s ease all;
  transition: 1s ease all;
  will-change: transform, visibility, opacity;
  visibility: hidden;
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
}
.wa__popup_chat_box:hover,
.wa__popup_chat_box:focus,
.wa__popup_chat_box:active {
  -webkit-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
  -moz-box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
  box-shadow: 0px 10px 10px 4px rgba(32, 32, 37, 0.23);
}
.wa__popup_chat_box.wa__active {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
}
.wa__popup_chat_box .wa__popup_heading {
  position: relative;
  padding: 15px 43px 17px 74px;
  color: #fff;
  background: rgb(86, 166, 30);
  background: -moz-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
}
.wa__popup_chat_box .wa__popup_heading_sm {
  padding: 12px 15px 17px 74px;
}
.wa__popup_chat_box .wa__popup_heading:before {
  content: "";
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png")
    center top no-repeat;
  background-size: 33px;
  filter: invert(1) grayscale(100%) brightness(2);
  display: block;
  width: 55px;
  height: 33px;
  position: absolute;
  top: 20px;
  left: 12px;
}
.wa__popup_chat_box .wa__popup_heading_sm:before {
  top: 19px;
  left: 11px;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_title {
  padding-top: 2px;
  padding-bottom: 3;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro {
  padding-top: 4px;
  font-size: 12px;
  line-height: 20px;
}
.wa__popup_chat_box .wa__popup_heading_sm .wa__popup_intro {
  padding-top: 0px;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:hover,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:focus,
.wa__popup_chat_box .wa__popup_heading .wa__popup_intro a:active {
  text-decoration: underline;
}
.wa__popup_chat_box .wa__popup_notice {
  font-size: 12px;
  font-weight: 500;
  padding: 0 3px;
}
.wa__popup_chat_box .wa__popup_content {
  background: #fff;
  padding: 13px 20px 21px 19px;
  text-align: center;
}
.wa__popup_chat_box .wa__popup_content_left {
  text-align: left;
}
.wa__popup_chat_box .wa__popup_avatar {
  position: absolute;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 10px;
  top: 9px;
}
.wa__popup_chat_box .wa__popup_avatar.nta-default-avt {
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  border-radius: unset;
}
.wa__popup_chat_box .wa__stt {
  padding: 13px 40px 12px 74px;
  position: relative;
  text-decoration: none;
  display: table;
  width: 100%;
  background: #f5f7f9;
  border-radius: 7px;
}
.wa__popup_chat_box .wa__stt:after {
  content: "";
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0 0
    no-repeat;
  position: absolute;
  right: 14px;
  top: 26px;
  width: 20px;
  height: 20px;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  background-size: 100% 100%;
}
.wa__popup_chat_box .wa__stt.wa__stt_offline:after {
  background-image: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png");
}
.wa__popup_chat_box .wa__stt.wa__stt_online {
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.wa__popup_chat_box .wa__stt.wa__stt_online:hover,
.wa__popup_chat_box .wa__stt.wa__stt_online:active,
.wa__popup_chat_box .wa__stt.wa__stt_online:focus {
  background: #fff;
  -webkit-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
  -moz-box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
  box-shadow: 0px 7px 15px 1px rgba(55, 62, 70, 0.07);
}
.wa__popup_content_list .wa__popup_content_item {
  margin: 14px 0 0;
  -webkit-transform: translate(0, 20px);
  -moz-transform: translate(0, 20px);
  transform: translate(0, 20px);
  will-change: opacity, transform;
  opacity: 0;
}
.wa__popup_chat_box.wa__pending
  .wa__popup_content_list
  .wa__popup_content_item {
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  transition: 0.4s ease all;
  -webkit-transition-delay: 2.1s;
  -moz-transition-delay: 2.1s;
  transition-delay: 2.1s;
}
.wa__popup_chat_box.wa__pending
  .wa__popup_content_list
  .wa__popup_content_item:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.wa__popup_chat_box.wa__pending
  .wa__popup_content_list
  .wa__popup_content_item:nth-child(2) {
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.wa__popup_chat_box.wa__pending
  .wa__popup_content_list
  .wa__popup_content_item:nth-child(3) {
  -webkit-transition-delay: 0.7s;
  -moz-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_name {
  font-size: 16px;
  color: #363c47;
  line-height: 1.188em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_duty {
  font-size: 12px;
  color: #333;
  padding: 2px 0 0;
  line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__member_status {
  color: #f5a623;
  font-size: 10px;
  padding: 5px 0 0;
  line-height: 1.125em !important;
}
.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
  display: table-cell;
  vertical-align: middle;
  min-height: 48px;
  height: 48px;
}
.wa__popup_content_list .wa__popup_content_item .wa__stt_offline {
  border-left-color: #c0c5ca;
}
.wa__popup_avt_list {
  font-size: 0;
  margin: 7px 0 24px;
}
.wa__popup_avt_list .wa__popup_avt_item {
  display: inline-block;
  position: relative;
  width: 46px;
}
.wa__popup_avt_list .wa__popup_avt_img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  left: -7px;
}
.wa__popup_call_btn {
  background: #2db742;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  width: 275px;
  max-width: 100%;
  font-size: 16px;
  padding: 14px 10px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  margin: 25px 0 15px;
  -webkit-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
  -moz-box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
  box-shadow: 0px 8px 17px 2px rgba(13, 15, 18, 0.2);
}
.wa__popup_call_btn.wa__popup_call_btn_lg:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0 0
    no-repeat;
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  vertical-align: top;
  top: 0px;
  margin-right: -19px;
  left: -31px;
  -webkit-transition: 0.2s ease background-image;
  -moz-transition: 0.2s ease background-image;
  transition: 0.2s ease background-image;
}
.wa__popup_call_btn.wa__popup_call_btn_lg:hover:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:focus:before,
.wa__popup_call_btn.wa__popup_call_btn_lg:active:before {
  background-image: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png");
}
.wa__popup_chat_box_gray {
  border-radius: 2px 2px 8px 8px;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray {
  background: #f8f8f8;
  border-top: 3px solid #2db742;
  color: #868c9a;
  font-weight: 500;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_title {
  color: #595b60;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray:before {
  content: "";
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png")
    center top no-repeat;
  background-size: 33px;
  display: block;
  width: 55px;
  height: 33px;
  position: absolute;
  top: 20px;
  left: 12px;
}
.wa__popup_chat_box_gray .wa__popup_heading_gray .wa__popup_intro a {
  color: #595b60;
}
.wa__popup_chat_box_ct {
  width: 384px;
  text-align: center;
}
.wa__popup_chat_box_ct .wa__popup_heading_ct {
  text-align: center;
  padding: 18px 0 18px;
}
.wa__popup_chat_box_ct .wa__popup_heading_ct:before {
  content: "";
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png")
    center top no-repeat;
  background-size: 30px;
  display: block;
  width: 30px;
  height: 31px;
  position: absolute;
  top: 15px;
  left: 72px;
}
.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_title {
  padding-left: 22px;
  padding-bottom: 14px;
}
.wa__popup_chat_box_ct .wa__popup_heading_ct .wa__popup_intro {
  margin-top: -5px;
  line-height: 12px;
}
.wa__popup_chat_box_ct .wa__popup_ct_avt_list:after {
  content: "";
  clear: both;
  display: block;
}
.wa__popup_chat_box_ct .wa__popup_ct_content {
  background: #fff;
  padding: 0 0 14px;
}
.wa__popup_chat_box_ct .wa__popup_ct_content .wa__popup_notice {
  padding-top: 18px;
  padding-bottom: 15px;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item {
  width: 33%;
  float: left;
  font-size: 10px;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item a {
  text-decoration: none;
  color: #989b9f;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__popup_ct_txt {
  padding-top: 8px;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_name {
  color: #363c47;
  font-size: 13px;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_duty {
  color: #989b9f;
  padding: 3px 0 0;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_online {
  color: #2db742;
  font-size: 9px;
  line-height: 12px;
  display: inline-block;
  padding: 3px 0 0 16px;
  background: url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") 0
    3px no-repeat;
  background-size: 12px auto;
  -webkit-background-size: 12px auto;
  -moz-background-size: 12px auto;
}
.wa__popup_chat_box_ct .wa__popup_ct_content_item .wa__member_stt_offline {
  color: #f5a623;
  font-size: 9px;
  line-height: 12px;
  padding: 2px 0 0;
}
.wa__popup_chat_box_ct .wa__popup_ct_avatar img {
  border-radius: 50%;
}
.wa__popup_chat_box_ct .wa__popup_ct_call_btn {
  width: 97px;
  font-size: 11px;
  padding: 9px 10px 11px;
  margin: 15px 0 15px;
}
.wa__btn_popup {
  position: fixed;
  cursor: pointer;
  bottom: 3rem;
  left: 2rem;
  z-index: 9999;
}
.wa__btn_popup .wa__btn_popup_icon {
  width: 56px;
  height: 56px;
  margin: 10px;
  background: rgb(86, 166, 30);
  background: -moz-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}
.wa__btn_popup .wa__btn_popup_icon:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent
    url("https://cdn-icons-png.flaticon.com/128/1384/1384095.png") center center
    no-repeat;
  background-size: 30px auto;
  -webkit-background-size: 30px auto;
  -moz-background-size: 30px auto;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  transition: 0.4s ease all;
  filter: invert(1) grayscale(100%) brightness(2);
}
.wa__btn_popup .wa__btn_popup_icon:after {
  content: "";
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent
    url("https://cdn-icons-png.flaticon.com/128/2976/2976286.png") center center
    no-repeat;
  background-size: 14px auto;
  -webkit-background-size: 14px auto;
  -moz-background-size: 14px auto;
  transition: 0.4s ease all;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -webkit-transform: scale(0) rotate(-360deg);
  -moz-transform: scale(0) rotate(-360deg);
  -ms-transform: scale(0) rotate(-360deg);
  transform: scale(0) rotate(-360deg);
  filter: invert(1) grayscale(100%) brightness(2);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:before {
  opacity: 0;
  -webkit-transform: scale(0) rotate(360deg);
  -moz-transform: scale(0) rotate(360deg);
  -ms-transform: scale(0) rotate(360deg);
  transform: scale(0) rotate(360deg);
}
.wa__btn_popup.wa__active .wa__btn_popup_icon:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  -moz-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
.wa__btn_popup .wa__btn_popup_txt {
  position: absolute;
  width: 120px;
  left: 100%;
  background: rgb(86, 166, 30);
  background: -moz-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(86, 166, 30, 1) 0%,
    rgba(105, 202, 59, 1) 100%
  );
  font-size: 14px;
  text-align: left;
  color: #ffffff;
  top: 0;
  padding: 5px 1rem 5px 1rem;
  margin-right: 15px;
  border-radius: 1.5rem;
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  transition: 0.4s ease all;
  webkit-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 16px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}
.wa__btn_popup .wa__btn_popup_txt span {
  display: block;
}
.wa__btn_popup.wa__active .wa__btn_popup_txt {
  -webkit-transform: translate(0, 15px);
  -moz-transform: translate(0, 15px);
  -ms-transform: translate(0, 15px);
  transform: translate(0, 15px);
  opacity: 0;
  visibility: hidden;
}


/* email & Brochure */
/* @import url("https://fonts.googleapis.com/css?family=Roboto"); */
@-webkit-keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}
@keyframes come-in {
  0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
  }
  30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
  }
  70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
  }
}

.floating-container {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 0;
  left: 0;
  margin: 35px 25px;
  z-index: 9999;
}
.floating-container:hover {
  height: 300px;
}
.floating-container:hover .floating-button {
  box-shadow: 0 10px 25px rgba(0, 60, 255, 0.6);
  -webkit-transform: translatey(5px);
          transform: translatey(5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
  -webkit-animation: come-in 0.4s forwards 0.2s;
          animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
  -webkit-animation: come-in 0.4s forwards 0.4s;
          animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
  -webkit-animation: come-in 0.4s forwards 0.6s;
          animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
  position: absolute;
  width: 65px;
  height: 65px;
  background: #0557b4;
  bottom: 0;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  line-height: 65px;
  text-align: center;
  font-size: 23px;
  z-index: 100;
  box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.floating-container .float-element {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 15px auto;
  color: white;
  font-weight: 500;
  text-align: center;
  line-height: 50px;
  z-index: 0;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.floating-container .float-element .material-icons {
  vertical-align: middle;
  font-size: 16px;
}
.floating-container .float-element:nth-child(1) {
  background: #42A5F5;
  box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(2) {
  background: #4CAF50;
  box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(3) {
  background: #FF9800;
  box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}




/* .theme-title h2{
  color: var(--themeht-primary-color);
} */


.bestsustainability{
  color: var(--themeht-primary-color);
}


/* .gmailbtn{
  padding: 14px 65px 14px 60px !important;
} */

/* Preloader ke liye CSS styling */
        .preloads {
            position: fixed; /* Screen par ek jagah fix rahega */
            top: 0;
            left: 0;
            width: 100vw; /* Poori screen ki chaudai */
            height: 100vh; /* Poori screen ki unchai */
            background-color: #030303; /* Preloader ka background color (safed) */
            display: flex; /* GIF ko center mein laane ke liye */
            justify-content: center; /* GIF ko horizontally center karega */
            align-items: center; /* GIF ko vertically center karega */
            z-index: 99999; /* Yeh sabse upar dikhega */
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; /* Dheere se gayab hone ka effect */

        }

        /* Preloader ko gayab karne ke liye class */
        .preloads-hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* GIF ka size set karne ke liye */
        .preloads img {
            width: 150px; /* Aap is size ko apni zaroorat ke hisab se badal sakte hain */
        }

         .floating-widget {
            position: fixed;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column; /* Stack items vertically */
            align-items: flex-start; /* Align to the left */
            z-index: 1000;
        }

        /* Toggle button styling */
        .toggle-btn {
            background-color: var(--themeht-primary-color);
            color: white;
            width: 60px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            border-top-right-radius: 12px;
            border-bottom-right-radius: 12px;
            box-shadow: 2px 2px 10px rgba(54, 54, 54, 0.116);
            font-size: 20px;
            transition: border-radius 0.1s 0.3s; /* Transition for corners */
            position: relative;
            z-index: 2; /* Ensure it's above menu items */
        }

        /* Menu container styling */
        .menu-items {
            max-height: 0; /* Animate height */
            overflow: hidden;
            transition: max-height 0.4s ease-in-out;
            
            border-bottom-right-radius: 12px;
        }

        /* Styling for when the widget is open */
        .floating-widget.open .menu-items {
            max-height: 115px; /* Height for 2 items */
        }
        
        .floating-widget.open .toggle-btn {
             /* When open, only top-right is rounded */
             border-bottom-right-radius: 0;
             border-bottom-left-radius: 0;
             box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.15);
        }


        /* Individual menu item styling */
        .menu-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: white;
            height: 60px;
            width: 60px; /* Initial width */
            justify-content: flex-start; /* Align content to the left */
            transition: width 0.3s ease; /* Animate the width */
            white-space: nowrap; /* Prevent text from wrapping */
            overflow: hidden; /* Hide overflowing content */
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
        }
        
        /* Expand menu item on hover */
        .menu-item:hover {
            width: 150px; /* Expanded width */
            color: white;
        }

        .menu-item .icon {
            font-size: 24px;
            min-width: 60px; /* Fixed width for the icon container */
            text-align: center;
            color: white;
        }
        
        .menu-item .text {
            padding-left: 10px;
            font-size: 16px;
            color: white;
        }

        /* Specific colors for each item */
        .menu-item.gmail {
            background-color: #D44638; /* Gmail Red */
        }

        .menu-item.brochure {
            background-color: #FF8C00;
        }
        
        /* Ensure the last item has rounded corners */
        .menu-items a:last-child.menu-item {
            border-bottom-right-radius: 12px;
        }


/* Gallery CSS */
/* Custom styles for better hover effect and tooltips */
        .gallery-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }
        .gallery-image {
            transition: transform 0.3s ease-in-out;
        }
        .gallery-image-container:hover .gallery-image {
            transform: scale(1.1);
        }

        /* Custom tooltip mate navi style */
        .tooltip-text {
            visibility: hidden;
            opacity: 0;
            width: max-content;
            max-width: 90%;
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 8px 12px;
            position: absolute; /* Positioning have JavaScript thi handle thashe */
            z-index: 10;
            transition: opacity 0.2s ease; /* Fakt opacity mate transition */
            pointer-events: none; /* Tooltip mouse events ma adchan na kare te mate */
            font-size: 0.875rem;
            /* bottom, left, ane transform CSS mathi kadhi nakhya chhe */
        }

        .gallery-image-container:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        /* Elements ne chupavva mate hidden class */
        .hidden {
            display: none;
        }

