@charset "UTF-8";
:root {
  --theme-color: #F96363;
  --title-color: #1C2359;
  --body-color: #5C5F71;
  --smoke-color: #E4E4E5;
  --smoke-color2: #F2F3FC;
  --smoke-color3: #C5DACC;
  --smoke-color4: #E9F5ED;
  --black-color: #000000;
  --black-color2: #0A0A0A;
  --gray-color: #D8DDE1;
  --white-color: #ffffff;
  --light-color: #B7BEC8;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --title-font: "Outfit", sans-serif;
  --title-font2: "Saira", sans-serif;
  --body-font: "Inter", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1620px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

html::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

html::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--black-color);
}

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

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  font-family: var(--body-font);
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 1.8;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 36px;
}

.h3,
h3 {
  font-size: 30px;
}

.h4,
h4 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 20px;
}

.h6,
h6 {
  font-size: 16px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 42px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
  .h5 {
    font-size: 18px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 30px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
}
.text-theme {
  color: var(--theme-color);
}

.bg-theme {
  background-color: var(--theme-color);
}

.bg-smoke {
  background-color: var(--smoke-color);
}

.bg-body {
  background-color: var(--body-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

@media (min-width: 1119px) {
  .row {
    --bs-gutter-x: 30px;
  }
}
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.th-menu-wrapper .th-menu-toggle:not(.hamburger-btn) img {
  max-width: 19px;
  top: -1px;
  position: relative;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 40px;
  padding-top: 37px;
  display: block;
  background-color: var(--smoke-color2);
  text-align: center;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(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: var(--white-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -1000px;
  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;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}

.th-mobile-menu ul li a:before {
  content: "〱";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  font-size: 14px;
  top: -3px;
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-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:after {
  content: "\f067";
  font-family: var(--icon-font);
  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);
  -webkit-box-shadow: 0 0 20px -8px rgba(255, 126, 2, 0.3);
          box-shadow: 0 0 20px -8px rgba(255, 126, 2, 0.3);
  border-radius: 50%;
}

.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:not(.hamburger-btn) {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
  margin: 15px 0;
}

.th-menu-toggle:not(.hamburger-btn) img {
  max-width: 25px;
  top: 3px;
  position: relative;
}

.th-menu-toggle:not(.hamburger-btn).style2 {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 28px;
  margin-left: 15px;
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}
/*=================================
    03. Utilities
==================================*/
/*
 * 2.0 -> Preloader
 * -----------------------------------------------
*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--white-color);
}
.preloader .th-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

/* Specific styles for .heart-rate container */
.heart-rate {
  width: 170px;
  height: 73px;
  position: relative;
  margin: 20px auto;
}

/* Styles for the fade-in animation */
.heart-rate .fade-in {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
  -webkit-animation: heartRateIn 2.5s linear infinite;
          animation: heartRateIn 2.5s linear infinite;
}

/* Styles for the fade-out animation */
.heart-rate .fade-out {
  position: absolute;
  width: 120%;
  /* Adjusted width to ensure animation space */
  height: 100%;
  background-color: #fff;
  top: 0;
  right: -120%;
  -webkit-animation: heartRateOut 2.5s linear infinite;
          animation: heartRateOut 2.5s linear infinite;
}

/* Keyframes for the heartRateIn animation */
@-webkit-keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes heartRateIn {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
  }
  100% {
    width: 0;
  }
}
/* Keyframes for the heartRateOut animation */
@-webkit-keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}
@keyframes heartRateOut {
  0% {
    left: -120%;
  }
  30% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}
/*===== Preloader One =======*/
/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  font-family: var(--body-font);
  border: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 1;
  padding: 20px 24px;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.5);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  will-change: transform;
}
.th-btn img {
  margin-right: 8px;
}
.th-btn:before, .th-btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--title-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--title-color)), color-stop(75%, var(--title-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--title-color) 25%, transparent 0, transparent 50%, var(--title-color) 0, var(--title-color) 75%, transparent 0);
  -webkit-transform: translateY(var(--progress, 100%));
          transform: translateY(var(--progress, 100%));
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: -1;
}
.th-btn:after {
  --progress: -100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--title-color)), color-stop(50%, var(--title-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--title-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--title-color) 0, var(--title-color) 50%, transparent 0, transparent 75%, var(--title-color) 0);
}
.th-btn:hover {
  color: var(--white-color);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.th-btn:hover:before, .th-btn:hover:after {
  --progress: 0;
}
.th-btn.style1:before, .th-btn.style1:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--white-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--white-color)), color-stop(75%, var(--white-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--white-color) 25%, transparent 0, transparent 50%, var(--white-color) 0, var(--white-color) 75%, transparent 0);
}
.th-btn.style1:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--white-color)), color-stop(50%, var(--white-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--white-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--white-color) 0, var(--white-color) 50%, transparent 0, transparent 75%, var(--white-color) 0);
}
.th-btn.style1:hover {
  color: var(--title-color);
}
.th-btn.style2 {
  background-color: var(--title-color);
}
.th-btn.style2:before, .th-btn.style2:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--theme-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--theme-color)), color-stop(75%, var(--theme-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--theme-color) 25%, transparent 0, transparent 50%, var(--theme-color) 0, var(--theme-color) 75%, transparent 0);
}
.th-btn.style2:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--theme-color)), color-stop(50%, var(--theme-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--theme-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--theme-color) 0, var(--theme-color) 50%, transparent 0, transparent 75%, var(--theme-color) 0);
}
.th-btn.style3 {
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 16px 24px;
}
.th-btn.style3:before, .th-btn.style3:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--theme-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--theme-color)), color-stop(75%, var(--theme-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--theme-color) 25%, transparent 0, transparent 50%, var(--theme-color) 0, var(--theme-color) 75%, transparent 0);
}
.th-btn.style3:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--theme-color)), color-stop(50%, var(--theme-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--theme-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--theme-color) 0, var(--theme-color) 50%, transparent 0, transparent 75%, var(--theme-color) 0);
}
.th-btn.style3:hover {
  color: var(--white-color);
}
.th-btn.th-border {
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.th-btn.th-border:before, .th-btn.th-border:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--white-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--white-color)), color-stop(75%, var(--white-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--white-color) 25%, transparent 0, transparent 50%, var(--white-color) 0, var(--white-color) 75%, transparent 0);
}
.th-btn.th-border:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--white-color)), color-stop(50%, var(--white-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--white-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--white-color) 0, var(--white-color) 50%, transparent 0, transparent 75%, var(--white-color) 0);
}
.th-btn.th-border:hover {
  color: var(--title-color);
}
.th-btn.th-border2 {
  background-color: transparent;
  border: 1px solid var(--title-color);
  color: var(--title-color);
}
.th-btn.th-border2:before, .th-btn.th-border2:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--title-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--title-color)), color-stop(75%, var(--title-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--title-color) 25%, transparent 0, transparent 50%, var(--title-color) 0, var(--title-color) 75%, transparent 0);
}
.th-btn.th-border2:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--title-color)), color-stop(50%, var(--title-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--title-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--title-color) 0, var(--title-color) 50%, transparent 0, transparent 75%, var(--title-color) 0);
}
.th-btn.th-border2:hover {
  color: var(--white-color);
}
.th-btn.black-border {
  background-color: transparent;
  border: 1px solid rgba(92, 95, 113, 0.2);
  border-radius: 8px;
  color: var(--title-color);
}
.th-btn.black-border:before, .th-btn.black-border:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, var(--title-color)), color-stop(0, transparent), color-stop(50%, transparent), color-stop(0, var(--title-color)), color-stop(75%, var(--title-color)), color-stop(0, transparent));
  background: linear-gradient(90deg, var(--title-color) 25%, transparent 0, transparent 50%, var(--title-color) 0, var(--title-color) 75%, transparent 0);
}
.th-btn.black-border:after {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(25%, transparent), color-stop(0, var(--title-color)), color-stop(50%, var(--title-color)), color-stop(0, transparent), color-stop(75%, transparent), color-stop(0, var(--title-color)));
  background: linear-gradient(90deg, transparent 0, transparent 25%, var(--title-color) 0, var(--title-color) 50%, transparent 0, transparent 75%, var(--title-color) 0);
}
.th-btn.black-border:hover {
  color: var(--white-color);
}
.th-btn.th-radius {
  border-radius: 30px;
}
.th-btn.fw-btn {
  width: 100%;
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    height: 20px;
    width: 20px;
  }
  100% {
    left: 50%;
    height: 750px;
    width: 750px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    height: 20px;
    width: 20px;
  }
  100% {
    left: 50%;
    height: 750px;
    width: 750px;
  }
}
@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    height: 20px;
    width: 20px;
  }
  100% {
    right: 50%;
    height: 750px;
    width: 750px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    height: 20px;
    width: 20px;
  }
  100% {
    right: 50%;
    height: 750px;
    width: 750px;
  }
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.scroll-top:after {
  content: "🡩";
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
}
.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}
.scroll-top svg path {
  fill: none;
}
.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* color scheme ---------------------------------- */
/* color scheme ---------------------------------- */
.color-scheme-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99;
  background: var(--white-color);
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
}
.color-scheme-wrap .switchIcon {
  position: absolute;
  left: 0;
  top: 10px;
  border: 0;
  background: var(--theme-color);
  color: var(--white-color);
  height: 45px;
  width: 45px;
  border-radius: 5px 0 0 5px;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.color-scheme-wrap .color-scheme-wrap-title {
  font-size: 22px;
  border-bottom: 1px solid var(--th-border-color);
  padding-bottom: 6px;
  color: var(--title-color);
  margin-bottom: 30px;
}
.color-scheme-wrap .color-scheme-wrap-title i {
  font-size: 18px;
  margin-right: 3px;
}
.color-scheme-wrap .color-switch-btns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}
.color-scheme-wrap .color-switch-btns button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 34px;
  color: var(--theme-color);
  text-align: left;
}
.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.space,
.space-top {
  padding-top: 120px;
}

.space,
.space-bottom {
  padding-bottom: 120px;
}

.space-extra,
.space-extra-top {
  padding-top: 90px;
}

.space-extra,
.space-extra-bottom {
  padding-bottom: 90px;
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: 80px;
  }
  .space,
  .space-bottom {
    padding-bottom: 80px;
  }
  .space-extra,
  .space-extra-top {
    padding-top: 40px;
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: 40px;
  }
  .space-top-md-none {
    padding-top: 0;
  }
}
.th-header {
  position: relative;
  z-index: 2;
}

.th-header.sticky {
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-logo {
  position: relative;
  z-index: 1;
}

.main-menu {
  display: block;
}
.main-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-menu li {
  display: inline-block;
  margin: 0 30px;
  padding: 0;
}
.main-menu a {
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--title-color);
  font-weight: 600;
  display: inline-block;
  padding: 36px 0;
}
.main-menu a:hover {
  color: var(--theme-color);
}

.hero-title {
  font-weight: 600;
  font-size: 72px;
  text-transform: capitalize;
  color: var(--title-color);
  display: block;
  margin: auto;
}
@media (max-width: 1699px) {
  .hero-title {
    font-size: 60px;
  }
}

#homeSlide .slick-list {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -15px;
  margin-top: -15px;
}

.hero-logo {
  margin-bottom: 25px;
}

.hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-thumb {
  margin-top: 50px;
}

.hero-thumb-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 65px;
  position: absolute;
  top: 60px;
  width: 100%;
}
@media (max-width: 1499px) {
  .hero-thumb-img {
    display: none;
  }
}
.hero-thumb-img img {
  border-radius: 20px;
}

.hero-thumb-img2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 65px 160px 65px;
  margin: 0px 40px 0px 40px;
}
@media (max-width: 1199px) {
  .hero-thumb-img2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 0;
  }
}
.hero-thumb-img2 img {
  border-radius: 20px;
}

.hero-thumb-wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: -100px;
}
@media (max-width: 1499px) {
  .hero-thumb-wrapp {
    margin-top: -180px;
  }
}

.home-area {
  background-color: #F2F3FC;
  height: 923px;
  margin-bottom: 100px;
}
@media (max-width: 1199px) {
  .home-area {
    height: 100%;
    margin-bottom: 0;
    padding-bottom: 50px;
  }
}
@media (max-width: 375px) {
  .home-area {
    padding-bottom: 100px;
  }
}

.hero-thumb3 {
  border-radius: 20px;
}
.hero-thumb3 img {
  border-radius: 20px;
}

.th-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
  border-radius: 40px;
  margin: 0px 40px 0px 40px;
  z-index: 2;
}
.th-hero .hero-wrapp {
  position: relative;
  background-color: #F2F3FC;
  padding: 70px 0 40px 0;
  border-radius: 40px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .th-hero {
    margin: 0;
    border-radius: 0;
  }
  .th-hero .hero-wrapp {
    border-radius: 0;
  }
}
.th-hero .hero-big {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1410px;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-width: 1399px) {
  .th-hero .hero-big {
    width: 100%;
    left: 70%;
  }
}
@media (max-width: 991px) {
  .th-hero .hero-big {
    left: 55%;
  }
}
@media (max-width: 767px) {
  .th-hero .hero-big {
    top: 45%;
  }
}
@media (max-width: 600px) {
  .th-hero .hero-big {
    display: none;
  }
}
.th-hero .hero-big_text {
  font-weight: 600;
  font-size: 180px;
  line-height: 200px;
  color: rgba(53, 68, 63, 0.15);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(53, 68, 63, 0.15);
}
@media (max-width: 1399px) {
  .th-hero .hero-big_text {
    font-size: 100px;
    line-height: 200px;
  }
}
@media (max-width: 991px) {
  .th-hero .hero-big_text {
    font-size: 80px;
    line-height: 100px;
  }
}
.th-hero .header-shape {
  background-size: auto;
  background-repeat: repeat-x;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  -webkit-animation: headerShapeAnim 80s linear infinite;
          animation: headerShapeAnim 80s linear infinite;
}

.hero-shape {
  position: absolute;
  z-index: 2;
}
.hero-shape.style1 {
  top: 10%;
  left: 0%;
  -webkit-animation: jumpAni 10s linear infinite;
          animation: jumpAni 10s linear infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media (max-width: 17990px) {
  .hero-shape.style1 {
    display: none;
  }
}
.hero-shape.style2 {
  left: 0%;
  bottom: 0%;
  -webkit-animation: movingX 4s linear infinite;
          animation: movingX 4s linear infinite;
}
@media (max-width: 600px) {
  .hero-shape.style2 {
    display: none;
  }
}
.hero-shape.style3 {
  bottom: 13%;
  left: 26%;
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}
@media (max-width: 767px) {
  .hero-shape.style3 {
    display: none;
  }
}
.hero-shape.style4 {
  top: 10%;
  right: 2%;
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
}
.hero-shape.style5 {
  bottom: -1%;
  right: 2%;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: moving-flower-1 4s linear infinite;
          animation: moving-flower-1 4s linear infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  z-index: 1;
}
@media (max-width: 560px) {
  .hero-shape.style5 {
    display: none;
  }
}
.hero-shape.style6 {
  bottom: -1%;
  right: 10%;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: moving-flower-1 8s linear infinite;
          animation: moving-flower-1 8s linear infinite;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero-shape.style6 {
    right: 23%;
  }
}
@media (max-width: 560px) {
  .hero-shape.style6 {
    right: 0;
  }
}

.hero-icon-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 68px;
}
@media (max-width: 575px) {
  .hero-icon-list {
    gap: 10px;
  }
}

.title-content {
  max-width: 635px;
}
.title-content .number {
  font-weight: 600;
  font-size: 200px;
  text-transform: capitalize;
  color: #0D0D0C;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .title-content .number {
    font-size: 100px;
  }
}
.title-content .sec-title {
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 64px;
  text-transform: capitalize;
  color: #0D0D0C;
}
@media (max-width: 1699px) {
  .title-content .sec-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .title-content .sec-title {
    font-size: 40px;
  }
}
.title-content .sec-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: rgba(13, 13, 12, 0.7);
  max-width: 515px;
  display: block;
  margin: auto auto 45px auto;
}

@-webkit-keyframes headerShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}

@keyframes headerShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
.hero-thumb-wrap {
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: auto auto auto;
  z-index: 1;
  margin: 0 80px;
}
@media (max-width: 991px) {
  .hero-thumb-wrap {
    display: block;
  }
}
.hero-thumb-wrap .hero-thumb1 {
  margin-top: -80px;
}
.hero-thumb-wrap .hero-thumb1 img {
  -webkit-filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
          filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .hero-thumb-wrap .hero-thumb1 {
    display: none;
  }
}
.hero-thumb-wrap .hero-thumb2 {
  margin-top: 80px;
}
.hero-thumb-wrap .hero-thumb2 img {
  -webkit-filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
          filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
  border-radius: 20px;
}
.hero-thumb-wrap .hero-thumb3 {
  margin-top: -80px;
}
.hero-thumb-wrap .hero-thumb3 img {
  -webkit-filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
          filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .hero-thumb-wrap .hero-thumb3 {
    display: none;
  }
}

.hero-thumb1 img {
  -webkit-filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
          filter: drop-shadow(0px 50px 80px rgba(28, 45, 55, 0.2));
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .hero-thumb1 {
    display: none;
  }
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
}
.hero-circle img {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-animation: spin 40s linear infinite;
          animation: spin 40s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.sec-title.home-title {
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 80px;
  text-transform: capitalize;
  color: var(--white-color);
}
@media (max-width: 1299px) {
  .sec-title.home-title {
    font-size: 70px;
  }
}
@media (max-width: 1299px) {
  .sec-title.home-title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .sec-title.home-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .sec-title.home-title {
    font-size: 30px;
  }
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes movingX-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes movingX-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.spin {
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fw-semibold {
  font-weight: 600;
}

@media (min-width: 1300px) {
  .th-container {
    max-width: 1720px;
  }
}
.shadow-title {
  font-size: 170px;
  color: rgba(241, 242, 247, 0.6);
  line-height: 1;
  font-weight: 800;
  position: absolute;
  top: -0.45em;
  left: 0;
  width: 100%;
  z-index: -1;
}

.subtitle {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  display: block;
  margin-bottom: 20px;
}

.bg-white {
  background-color: var(--white-color);
}

.bg-smoke {
  background-color: var(--smoke-color);
}

.text-white {
  color: var(--white-color);
}

.sec-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: -0.24em;
}
.sec-title.bg-white {
  padding: 0 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.sec-title.bg-smoke {
  padding: 0 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.title-area {
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.title-area .sec-title {
  margin-bottom: 10px;
}

.sec-text {
  margin-bottom: 30px;
  font-size: 18px;
}

.thumb-box {
  text-align: center;
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(24, 64, 64, 0.2);
  -webkit-box-shadow: 0px 50px 80px rgba(28, 45, 55, 0.2);
          box-shadow: 0px 50px 80px rgba(28, 45, 55, 0.2);
  border-radius: 16px;
  padding: 24px;
}
@media (max-width: 991px) {
  .thumb-box {
    padding: 15px;
  }
}
.thumb-box .thumb-img {
  position: relative;
  overflow: hidden;
}
.thumb-box .thumb-img img {
  width: 100%;
  border-radius: 20px;
}
.thumb-box .th-btn {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background: transparent;
  border-radius: 8px;
  border: 1px solid #1C2359;
  color: #13182B;
  text-transform: capitalize;
  padding: 14px 25px;
  min-width: 146px;
}
@media (max-width: 1599px) {
  .thumb-box .th-btn {
    padding: 14px 15px;
  }
}
.thumb-box .th-btn:hover {
  color: var(--white-color);
}
.thumb-box .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .thumb-box .box-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.thumb-box .thumb-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #181A1E;
}
@media (max-width: 1399px) {
  .thumb-box .thumb-title {
    font-size: 16px;
  }
}
.thumb-box .thumb-title a {
  color: inherit;
}
.thumb-box .thumb-title a:hover {
  color: var(--theme-color);
}
.thumb-box .thumb-text {
  color: var(--theme-color);
  margin-bottom: -0.2em;
  margin-top: 3px;
  font-weight: 500;
}
.thumb-box:hover .th-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.thumb-box .rtl-tag {
  position: absolute;
  right: -15px;
  top: 19px;
  z-index: 1;
}
.thumb-box .rtl-tag a {
  color: var(--white-color);
  font-weight: 800;
  display: inline-block;
  padding: 11px 30px 20px 33px;
  clip-path: path("M101.464 0C112.742 0 122.398 9.64074 124.384 22.8834L124.583 24.2065L124.687 24.2765L130 60C127.407 50.3414 119.841 43.5887 111.134 43.5887L98.7621 43.5796V43.5658H33.021C1.7437 43.5658 5.08731 33.9248 3.10161 20.6824L0 0.000250373L101.464 0Z");
  background: var(--theme-color);
  font-size: 14px;
}
.thumb-box.upcomming:after {
  display: none;
}
.thumb-box.style2 {
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.08);
}
.thumb-box.style2 .thumb-img {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.thumb-box.style2 .btn-wrap {
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px 10px;
}
.thumb-box.style2 .thumb-box-content {
  padding-bottom: 30px;
}
.thumb-box.style2 .th-btn {
  width: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-perspective: 0dvh;
          perspective: 0dvh;
  position: initial;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  padding: 16.5px 20px;
  font-size: 14px;
}

.hero-discount-wrapp {
  position: absolute;
  top: 108px;
  right: 130px;
}
@media (max-width: 1199px) {
  .hero-discount-wrapp {
    right: 60px;
  }
}
@media (max-width: 767px) {
  .hero-discount-wrapp {
    position: relative;
    top: 5%;
    left: 20%;
    right: unset;
  }
}

.discount-wrapp {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: 2;
}
.discount-wrapp .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 106px;
  line-height: 106px;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.discount-wrapp .logo:hover > i {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.discount-wrapp .discount {
  position: absolute;
  left: 20%;
  top: 35%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  color: var(--theme-color);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  text-align: center;
  margin-top: -5px;
  margin-bottom: 0;
}

.discount-tag {
  display: inline-block;
  min-height: 170px;
  min-width: 170px;
  border-radius: 50%;
  z-index: 1;
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--title-color);
  text-align: center;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  animation: spin 10s infinite alternate-reverse;
}
.discount-tag span {
  --rotate-letter: 8deg;
  min-height: 80px;
  position: absolute;
  min-width: 80px;
  left: 24px;
  top: 0px;
  text-transform: uppercase;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotate(var(--rotate-letter));
          transform: rotate(var(--rotate-letter));
}
.discount-tag span.char2 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
          transform: rotate(calc(var(--rotate-letter) * 2));
}
.discount-tag span.char3 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
          transform: rotate(calc(var(--rotate-letter) * 3));
}
.discount-tag span.char4 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
          transform: rotate(calc(var(--rotate-letter) * 4));
}
.discount-tag span.char5 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
          transform: rotate(calc(var(--rotate-letter) * 5));
}
.discount-tag span.char6 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
          transform: rotate(calc(var(--rotate-letter) * 6));
}
.discount-tag span.char7 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
          transform: rotate(calc(var(--rotate-letter) * 7));
}
.discount-tag span.char8 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
          transform: rotate(calc(var(--rotate-letter) * 8));
}
.discount-tag span.char9 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
          transform: rotate(calc(var(--rotate-letter) * 9));
}
.discount-tag span.char10 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
          transform: rotate(calc(var(--rotate-letter) * 10));
}
.discount-tag span.char11 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
          transform: rotate(calc(var(--rotate-letter) * 11));
}
.discount-tag span.char12 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
          transform: rotate(calc(var(--rotate-letter) * 12));
}
.discount-tag span.char13 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
          transform: rotate(calc(var(--rotate-letter) * 13));
}
.discount-tag span.char14 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
          transform: rotate(calc(var(--rotate-letter) * 14));
}
.discount-tag span.char15 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
          transform: rotate(calc(var(--rotate-letter) * 15));
}
.discount-tag span.char16 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
          transform: rotate(calc(var(--rotate-letter) * 16));
}
.discount-tag span.char17 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
          transform: rotate(calc(var(--rotate-letter) * 17));
}
.discount-tag span.char18 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
          transform: rotate(calc(var(--rotate-letter) * 18));
}
.discount-tag span.char19 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
          transform: rotate(calc(var(--rotate-letter) * 19));
}
.discount-tag span.char20 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
          transform: rotate(calc(var(--rotate-letter) * 20));
}
.discount-tag span.char21 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
          transform: rotate(calc(var(--rotate-letter) * 21));
}
.discount-tag span.char22 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
          transform: rotate(calc(var(--rotate-letter) * 22));
}
.discount-tag span.char23 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
          transform: rotate(calc(var(--rotate-letter) * 23));
}
.discount-tag span.char24 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
          transform: rotate(calc(var(--rotate-letter) * 24));
}
.discount-tag span.char25 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
          transform: rotate(calc(var(--rotate-letter) * 25));
}
.discount-tag span.char26 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
          transform: rotate(calc(var(--rotate-letter) * 26));
}
.discount-tag span.char27 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
          transform: rotate(calc(var(--rotate-letter) * 27));
}
.discount-tag span.char28 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
          transform: rotate(calc(var(--rotate-letter) * 28));
}
.discount-tag span.char29 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
          transform: rotate(calc(var(--rotate-letter) * 29));
}
.discount-tag span.char30 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
          transform: rotate(calc(var(--rotate-letter) * 30));
}
.discount-tag span.char31 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
          transform: rotate(calc(var(--rotate-letter) * 31));
}
.discount-tag span.char32 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
          transform: rotate(calc(var(--rotate-letter) * 32));
}
.discount-tag span.char33 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
          transform: rotate(calc(var(--rotate-letter) * 33));
}
.discount-tag span.char34 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 34));
          transform: rotate(calc(var(--rotate-letter) * 34));
}
.discount-tag span.char35 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 35));
          transform: rotate(calc(var(--rotate-letter) * 35));
}
.discount-tag span.char36 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 36));
          transform: rotate(calc(var(--rotate-letter) * 36));
}
.discount-tag span.char37 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 37));
          transform: rotate(calc(var(--rotate-letter) * 37));
}
.discount-tag span.char38 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 38));
          transform: rotate(calc(var(--rotate-letter) * 38));
}
.discount-tag span.char39 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 39));
          transform: rotate(calc(var(--rotate-letter) * 39));
}
.discount-tag span.char40 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 40));
          transform: rotate(calc(var(--rotate-letter) * 40));
}
.discount-tag span.char41 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 41));
          transform: rotate(calc(var(--rotate-letter) * 41));
}
.discount-tag span.char42 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 42));
          transform: rotate(calc(var(--rotate-letter) * 42));
}
.discount-tag span.char43 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 43));
          transform: rotate(calc(var(--rotate-letter) * 43));
}
.discount-tag span.char44 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 44));
          transform: rotate(calc(var(--rotate-letter) * 44));
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
.home-pages-area {
  background-color: var(--title-color);
  padding-top: 426px;
  margin-top: -326px;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .home-pages-area {
    margin: 0;
    padding-top: 80px;
  }
}
.home-pages-area .container {
  max-width: 1766px;
  display: block;
  margin: auto;
}

.th-icon-box {
  display: inline-block;
  margin-left: 20px;
}

.icon-btn {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  font-size: 18px;
  text-align: center;
  margin-top: 0px;
  border-radius: 999px;
}

.icon-btn.arrow-right {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 10px;
}

.icon-btn:hover {
  background-color: var(--title-color);
  -webkit-box-shadow: 0px 20px 40px 0px rgba(34, 34, 34, 0.08);
          box-shadow: 0px 20px 40px 0px rgba(34, 34, 34, 0.08);
  color: #fff;
}

.features-area {
  background-color: #f1f2f7;
}

.responsive-sec {
  position: relative;
  z-index: 2;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.responsive-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.responsive-area .device-xl,
.responsive-area .device-ml,
.responsive-area .device-lg,
.responsive-area .device-xs {
  position: relative;
  z-index: 2;
}
.responsive-area .device-xl {
  z-index: 1;
}
.responsive-area .device-ml {
  margin-right: -130px;
}
.responsive-area .device-lg {
  margin-left: -130px;
}
.responsive-area .device-xs {
  margin-left: -20px;
  margin-bottom: -10px;
  z-index: 3;
}

.slider-xl,
.slider-ml,
.slider-lg,
.slider-xs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slider-xl {
  padding: 3%;
}

.slider-ml {
  padding: 2.5% 10%;
}

.slider-lg {
  padding: 3.4% 4.8%;
}
.slider-lg img {
  border-radius: 5px;
}

.slider-xs {
  padding: 6% 6%;
}
.slider-xs img {
  border-radius: 10px;
}

.responsive-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.responsive-tab-area {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  max-width: 1026px;
  margin-left: auto;
  margin-right: auto;
}
.responsive-tab-area .tab-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
  font-family: var(--body-font);
}
.responsive-tab:before, .responsive-tab:after {
  content: "";
  height: 2px;
  width: 50px;
  margin: 0 5px;
  display: inline-block;
  background-color: var(--theme-color);
}
.responsive-tab .tab-btn {
  height: 54px;
  width: 70px;
  padding: 2px 4px;
  background-image: url("../img/responsive/device-thumb.png");
  background-size: cover;
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.responsive-tab .tab-btn.active {
  background-image: url("../img/responsive/device-thumb-active.png");
}
.responsive-tab .indicator {
  display: none;
}

#feature-contact {
  background-size: auto;
  background-position: top left;
  background-repeat: no-repeat;
}

.filter-menu {
  margin: 20px 0 60px 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.filter-menu .th-btn {
  padding: 17px 30px;
  min-width: 140px;
}

.feature-box {
  text-align: center;
  margin-bottom: 40px;
}

.feature-box_icon {
  width: 160px;
  height: 160px;
  line-height: 160px;
  -webkit-box-shadow: 0px 13px 35px 0px rgba(56, 62, 75, 0.08);
          box-shadow: 0px 13px 35px 0px rgba(56, 62, 75, 0.08);
  background-color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 5px;
}

.feature-box_icon img {
  max-width: 80px;
}

.feature-box_title {
  margin-bottom: 0;
}

.feature-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 380px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.feature-group a {
  text-align: center;
  display: block;
  color: var(--title-color);
  font-weight: 500;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.feature-group a .icon {
  display: block;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  line-height: 50px;
  text-align: center;
  margin: 0 auto 8px auto;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
.feature-group a:hover {
  color: var(--theme-color);
}
.feature-group a:hover .icon {
  background-color: var(--title-color);
}

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

.feature-grid {
  text-align: center;
  padding: 30px 15px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
          box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
  margin-top: 50px;
}
.feature-grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-grid_icon {
  margin: -80px auto 15px auto;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: var(--white-color);
  text-align: center;
  border-radius: 99px;
  -webkit-box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
          box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
}
.feature-grid_icon img {
  max-width: 60px;
}
.feature-grid_title {
  color: var(--black-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -0.25em;
}
.feature-grid_text {
  color: rgba(13, 13, 12, 0.7);
  font-size: 14px;
  margin: 15px auto -0.5em auto;
}

.slick-track > [class*=col] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.slick-track {
  min-width: 100%;
}

.slick-slide img {
  display: inline-block;
}

.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}

.testi-box {
  --theme-color: #7CB342;
  position: relative;
  z-index: 2;
  padding: 40px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 2px 15px rgba(0, 6, 18, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 6, 18, 0.1);
  border-radius: 8px;
  margin-top: 30px;
}
.testi-box:after {
  content: "";
  height: 4px;
  width: 64%;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 0;
  right: 1px;
  clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
  border-radius: 0 0px 10px 0;
  z-index: 2;
}
.testi-box_quote {
  position: absolute;
  right: 35px;
  top: 35px;
  z-index: -1;
}
.testi-box_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 25px;
  margin-top: -70px;
}
.testi-box_avater {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 2px 15px rgba(0, 6, 18, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 6, 18, 0.1);
  border-radius: 8px;
}
.testi-box_avater img {
  max-width: 110px;
  padding: 5px;
}
.testi-box_name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
  margin-top: -0.3em;
}
.testi-box_desig {
  margin-bottom: -0.2em;
  display: block;
  color: var(--theme-color);
}
.testi-box_text {
  color: rgba(13, 13, 12, 0.7);
  margin-bottom: -0.5em;
  margin-top: 25px;
}
.testi-box_review {
  color: var(--theme-color);
  font-size: 16px;
  margin-top: 15px;
}
.testi-box_review i {
  margin-right: 4px;
}
.testi-box_review i:last-child {
  margin-right: 0 !important;
}

@media (max-width: 1199px) {
  .hero-circle img {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .testi-box_quote {
    top: 12px;
    right: 12px;
  }
  .hero-circle img {
    max-width: 850px;
  }
}
@media (max-width: 576px) {
  .testi-box {
    padding: 40px 20px 20px 20px;
  }
  .testi-box_quote {
    top: 0px;
    right: 0px;
  }
  .testi-box_name {
    font-size: 24px;
  }
  .testi-box_profile {
    gap: 25px;
  }
  .testi-box_text {
    margin-top: 20px;
  }
}
@media (max-width: 375px) {
  .testi-box_text {
    font-size: 14px;
  }
}
#testiSec {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .main-menu li {
    margin: 0 16px;
  }
  .main-menu a {
    font-size: 16px;
  }
  .hero-title {
    font-size: 56px;
    line-height: 1.2;
  }
  .th-hero {
    background-size: cover;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .header-btn .th-btn {
    padding: 21px 18px;
  }
  .hero-title {
    font-size: 48px;
  }
  .filter-menu .th-btn {
    padding: 16px 20px;
    font-size: 14px;
    min-width: 120px;
  }
  .sec-title {
    font-size: 44px;
  }
  .header-logo img {
    width: 150px;
  }
  .main-menu li {
    margin: 0 12px;
  }
  .th-btn {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
  }
  .filter-menu .th-btn {
    padding: 16px 20px;
    font-size: 14px;
    min-width: 100px;
  }
  .title-area {
    margin-bottom: 40px;
  }
  .shadow-title {
    font-size: 130px;
  }
  .responsive-tab-area .tab-text {
    display: none;
  }
  .feature-group {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-grid-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .header-logo img {
    max-width: none;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .shadow-title {
    display: none;
  }
  .hero-circle img {
    max-width: 740px;
  }
  .hero-title {
    font-size: 40px;
    margin-bottom: 35px;
  }
  .hero-btns {
    margin-top: 15px;
  }
  .feature-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .th-hero {
    background-size: cover;
    background-position: center center;
  }
  .hero-logo {
    margin-bottom: 20px;
  }
  .filter-menu {
    gap: 10px;
  }
  .filter-menu .th-btn {
    min-width: 92px;
  }
}
.th-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid;
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
}
.th-social a:last-child {
  margin-right: 0;
}
.th-social a:hover {
  background-color: var(--black-color);
  border-color: var(--black-color);
  color: var(--theme-color);
}

@media (max-width: 575px) {
  .filter-menu {
    gap: 5px;
  }
  .filter-menu .th-btn {
    min-width: auto;
  }
  .hero-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
  }
  .hero-logo img {
    max-width: 150px;
  }
  .feature-grid-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 440px) {
  .hero-title {
    font-size: 30px;
  }
  .responsive-tab:before, .responsive-tab:after {
    display: none;
  }
}
@media (max-width: 380px) {
  .hero-title {
    font-size: 28px;
  }
  .th-btn {
    padding: 20px;
  }
  .feature-grid {
    padding: 30px 10px;
  }
  .feature-grid_title {
    font-size: 18px;
  }
}
.theme-feature-wrap {
  max-width: 320px;
  margin: auto;
}
.theme-feature-wrap .wrap-content {
  margin-top: 25px;
}
.theme-feature-wrap .theme-feature_title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}
.theme-feature-wrap .theme-feature_text {
  margin-bottom: -0.3em;
}

.theme-option-area {
  margin-bottom: 66px;
}

.theme-option-thumb {
  margin-top: -196px;
  -webkit-transform: translate(0, 150px);
          transform: translate(0, 150px);
}

.line {
  background-color: transparent;
  border-bottom: 1px solid #fff;
}

.th-feature {
  position: fixed;
  top: 44px;
  left: -50px;
  z-index: 99999;
  background-color: var(--theme-color);
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 40px;
  min-width: 230px;
  height: 40px;
  display: block;
  text-align: center;
  color: var(--white-color);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
  text-transform: capitalize;
}
@media (max-width: 1599px) {
  .th-feature {
    font-size: 12px;
    line-height: 28px;
    height: 28px;
    top: 23px;
    left: -75px;
  }
}
.th-feature:hover {
  color: var(--white-color);
}
.th-feature.style2 {
  background-color: #FF6600;
  left: unset;
  right: -52px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 57px;
  min-width: 260px;
}
@media (max-width: 1599px) {
  .th-feature.style2 {
    top: 33px;
    right: -75px;
  }
}
@media (max-width: 375px) {
  .th-feature.style2 {
    top: 65px;
    right: -58px;
  }
}
@media (max-width: 320px) {
  .th-feature.style2 {
    display: none;
  }
}

@media (max-width: 375px) {
  .th-header .header-logo {
    margin-left: 70px;
  }
}
@media (max-width: 375px) {
  .th-menu-toggle {
    display: none;
  }
}

/* custom-mouse-pointer-end */
.cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--theme-color);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 999999;
  -webkit-transform: translate(calc(-50% + 15px), -50%);
          transform: translate(calc(-50% + 15px), -50%);
}
.cursor.hover {
  display: none;
}

.cursor2 {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--theme-color);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor2.hover {
  display: none;
}

@-webkit-keyframes moving-flower-1 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}

@keyframes moving-flower-1 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
@-webkit-keyframes moving-flower-2 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
@keyframes moving-flower-2 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
@-webkit-keyframes moving-flower-3 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
@keyframes moving-flower-3 {
  0%, 100% {
    -webkit-transform: rotate(-5deg) scale(1);
            transform: rotate(-5deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(5deg) scale(1.1);
            transform: rotate(5deg) scale(1.1);
  }
}
.fixed-tag {
  position: fixed;
  z-index: 99999;
  top: 100px;
}
@media (max-width: 991px) {
  .fixed-tag {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
