@charset "UTF-8";
:root {
  --theme-color: #F41E1E;
  --theme-color2: #524FF5;
  --title-color: #1D2229;
  --body-color: #6A6A6A;
  --smoke-color: #F8F8F8;
  --smoke-color2: #F6F6F6;
  --black-color: #000000;
  --black-color2: #141414;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #AFB1C3;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #D8DDE1;
  --th-border-color2: #2F343B;
  --title-font: "Kanit", sans-serif;
  --body-font: "Archivo", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1290px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #ffffff;
}

html::-webkit-scrollbar-track {
  background: rgba(252, 0, 18, 0.1);
  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);
  border-radius: 0px;
}

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.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
  border-radius: 0px;
}

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;
  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;
  }
}

.fixed-tag {
  position: fixed;
  z-index: 99999;
  top: 100px;
}

.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;
  text-align: center;
  border-bottom: 1px solid var(--th-border-color);
}

.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%);
      -ms-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);
      -ms-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);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .th-item-has-children > a:after {
  content: "";
  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);
  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: "";
}

.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
==================================*/
.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%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

.loader {
  color: var(--theme-color);
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
          animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em,  0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,  0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em,  -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,  -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,  -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,  -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,  0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em,  0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,  0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em,  -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,  -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,  -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,  -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,  0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

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

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

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 21px 40px;
  min-width: 170px;
  border-radius: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn:before, .th-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  height: 100%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.th-btn .icon {
  overflow: hidden;
  display: inline-block;
}

.th-btn i {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  position: relative;
  right: 2px;
}

.th-btn:hover:before {
  top: -70%;
  background-image: -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 20%, var(--theme-color) 20%, transparent 30%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-image: radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 20%, var(--theme-color) 20%, transparent 30%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  background-position: 50% 120%;
  -webkit-animation: greentopBubbles 0.6s ease;
          animation: greentopBubbles 0.6s ease;
}

.th-btn:hover:after {
  bottom: -70%;
  top: auto;
  background-image: -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-image: radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  -webkit-animation: greenbottomBubbles 0.6s ease;
          animation: greenbottomBubbles 0.6s ease;
}

.th-btn:hover, .th-btn:active {
  color: var(--title-color);
  box-shadow: none;
  --theme-color: var(--white-color);
}

.th-btn:hover i, .th-btn:active i {
  -webkit-animation: btn-icon-anim 0.9s both;
          animation: btn-icon-anim 0.9s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.th-btn.style-radius {
  border-radius: 30px;
}

.th-btn.style2:hover {
  background: var(--title-color);
  color: var(--white-color);
  --theme-color: var(--title-color);
}

.th-btn.style3 {
  background: var(--title-color);
  color: var(--white-color);
}

.th-btn.style3:hover {
  background: var(--theme-color);
  --theme-color: inherit;
}

.th-btn.style-border {
  background: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding: 20px 40px;
}

.th-btn.style-border:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--title-color);
}

.th-btn.style-border2 {
  background: transparent;
  border: 1px solid var(--theme-color);
  color: var(--white-color);
  padding: 20px 40px;
}

.th-btn.style-border2:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
  --theme-color: inherit;
}

.th-btn.style-border3 {
  background: transparent;
  border: 1px solid var(--title-color);
  color: var(--title-color);
  padding: 20px 40px;
}

.th-btn.style-border3:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
  --theme-color: inherit;
}

.th-btn.btn-fw {
  width: 100%;
}

.th-btn.btn-fw:before, .th-btn.btn-fw:after {
  display: none;
}

.th-btn.btn-fw:hover {
  background: var(--white-color);
  color: var(--title-color);
}

.th-btn.btn-fw-2 {
  width: 100%;
}

.th-btn.btn-fw-2:before, .th-btn.btn-fw-2:after {
  display: none;
}

.th-btn.btn-fw-2:hover {
  background: var(--title-color);
}

.th-btn.btn-sm {
  padding: 16px 25px;
  min-width: 152px;
}

@-webkit-keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes btn-icon-anim {
  0% {
    top: 0;
    right: 2px;
  }
  25% {
    top: -10px;
    right: -10px;
  }
  50% {
    top: 10px;
    opacity: 0;
    right: 17px;
  }
  100% {
    top: 0;
    right: 2px;
    opacity: 1;
  }
}

@keyframes btn-icon-anim {
  0% {
    top: 0;
    right: 2px;
  }
  25% {
    top: -10px;
    right: -10px;
  }
  50% {
    top: 10px;
    opacity: 0;
    right: 17px;
  }
  100% {
    top: 0;
    right: 2px;
    opacity: 1;
  }
}

.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);
      -ms-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);
  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;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(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;
  }
}

/* color scheme ---------------------------------- */
.color-scheme-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99;
  background: var(--black-color2);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.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);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.color-scheme-wrap .switchIcon svg {
  width: 20px;
}

.color-scheme-wrap .color-scheme-wrap-title {
  font-size: 22px;
  border-bottom: 2px solid var(--th-border-color);
  padding-bottom: 6px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.color-scheme-wrap .color-scheme-wrap-title i {
  font-size: 18px;
  margin-right: 3px;
}

.color-scheme-wrap .color-switch-btns {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 18px;
}

.color-scheme-wrap .color-switch-btns button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 24px;
  color: var(--theme-color);
  text-align: left;
}

.color-scheme-wrap .color-switch-btns button svg {
  width: 16px;
}

.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.th-header {
  z-index: 2;
  background: var(--black-color2);
  position: absolute;
  width: 100%;
  top: 0;
}

.th-header.sticky {
  background-color: var(--black-color2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
          animation: stickyAni 0.4s ease-in-out;
  -webkit-clip-path: none;
          clip-path: none;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
            transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
            transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -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);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@-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);
  }
}

.header-logo {
  position: relative;
  z-index: 1;
  padding: 15px 0 25px;
}

.main-menu {
  display: block;
}

.main-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.main-menu li {
  display: inline-block;
  margin: 0 20px;
  padding: 0;
}

.main-menu a {
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 36px 0;
}

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

.hero-title {
  font-size: 74px;
  line-height: 1.2702em;
  font-weight: 500;
  text-transform: capitalize;
}

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

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

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

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

.th-hero {
  background-color: var(--smoke-color);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 350px 0 250px;
  overflow: hidden;
}

.hero-bg-shape1 {
  position: absolute;
  left: 100px;
  bottom: 35%;
}

.hero-bg-shape2 {
  position: absolute;
  right: 120px;
  top: 30%;
}

.fw-semibold {
  font-weight: 600;
}

@media (min-width: 1300px) {
  .th-container {
    max-width: 1720px;
  }
}

.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: 600;
  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;
  margin-bottom: 30px;
}

.thumb-box .thumb-img {
  position: relative;
  background: #F7F2ED;
  padding: 20px;
}

.thumb-box .thumb-img img {
  width: 100%;
}

.thumb-box .th-btn {
  width: calc(100% - 40px);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-perspective: 0dvh;
          perspective: 0dvh;
  position: absolute;
  bottom: 20px;
  left: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.thumb-box .th-btn:hover {
  background: var(--title-color);
}

.thumb-box .thumb-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--title-color);
  padding: 20px 5px 0 5px;
  margin-top: 0;
  margin-bottom: 3px;
}

.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);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.thumb-box .rtl-tag {
  position: absolute;
  right: -15px;
  top: 19px;
  z-index: 1;
}

.thumb-box .rtl-tag span,
.thumb-box .rtl-tag a {
  color: var(--white-color);
  font-weight: 800;
  display: inline-block;
  padding: 11px 30px 20px 33px;
  -webkit-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");
          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.home-pages:after {
  content: '';
  position: absolute;
  height: 42px;
  width: 35px;
  background: #0443B7;
  right: -10px;
  border-radius: 30px 25px 30px 30px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 59px;
  z-index: -1;
}

.thumb-box.style2 {
  border-radius: 10px;
  box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.08);
}

.thumb-box.style2 .thumb-img {
  padding: 0;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.thumb-box.style2 .thumb-img img {
  border-radius: 10px 10px 0 0;
}

.thumb-box.style2 .thumb-img .rtl-tag {
  top: -2px;
  right: -25px;
}

.thumb-box.style2 .label {
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: 1;
  background: var(--theme-color2);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
}

.thumb-box.style2 .btn-wrap {
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thumb-box.style2 .thumb-box-content {
  padding: 0 30px 30px;
}

.thumb-box.style2 .th-btn {
  width: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
      -ms-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;
  min-width: 170px;
}

.thumb-box.style2.home-pages:after {
  top: 38px;
}

@-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;
  }
}

.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);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 10px;
}

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

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

.responsive-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: 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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.responsive-tab-area {
  margin-top: 60px;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: 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 3px;
  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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: 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;
  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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 380px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -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);
  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;
  box-shadow: 0px 6px 30px rgba(192, 192, 192, 0.25);
}

.feature-grid_icon img {
  max-width: 60px;
}

.feature-grid_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: -0.25em;
}

.feature-grid_text {
  font-size: 14px;
  margin: 15px auto -0.5em auto;
}

.slick-track > [class*="col"] {
  -webkit-flex-shrink: 0;
      -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);
  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;
  -webkit-clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
          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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-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);
  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 {
  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: 992px) {
  .testi-box_quote {
    top: 12px;
    right: 12px;
  }
}

@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;
  }
  .hero-title {
    font-size: 56px;
    line-height: 1.2;
  }
  .th-hero {
    background-size: cover;
    padding: 250px 0 150px;
  }
  .hero-bg-shape1 {
    width: 150px;
    left: 50px;
  }
  .hero-bg-shape2 {
    width: 90px;
    right: 60px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .header-btn .th-btn {
    padding: 18px 20px;
    min-width: auto;
  }
  .th-hero {
    padding: 220px 0 120px;
  }
  .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;
  }
  .hero-bg-shape2,
  .hero-bg-shape1 {
    display: none;
  }
  .main-menu a {
    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-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(--theme-color);
  border-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);
      -ms-transform: translate(0, 150px);
          transform: translate(0, 150px);
}

/*# sourceMappingURL=style.css.map */
