@charset "UTF-8";

:root {
  --theme-color: #e55100;
  --title-color: #141d38;
  --body-color: #737887;
  --smoke-color: #f5f5f5;
  --smoke-color2: #e2e8fa;
  --black-color: #000000;
  --black-color2: #080e1c;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849b;
  --yellow-color: #ffb539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #e0e0e0;
  --title-font: "Barlow", sans-serif;
  --body-font: "Roboto", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #ffffff;
}

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;
  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(--theme-color);
  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%);
  -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
=======================*/
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--white-color);
}

.th-preloader {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.th-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.th-preloader .animation-preloader .txt-loading {
  font-family: var(--title-font);
  font-size: 72px;
  line-height: 82px;
  font-weight: 700;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.th-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.th-preloader .animation-preloader .txt-loading .characters:before {
  -webkit-animation: characters 4s infinite;
  animation: characters 4s infinite;
  color: var(--theme-color);
  content: attr(preloader-text);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.th-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.feature-card .feature-img img {
  width: 50%;
}
@media (max-width: 525px) {
  .th-preloader .animation-preloader .txt-loading {
    font-size: 30px;
    line-height: 30px;
  }
}

/* Animation of letters loading from the preloader */
@-webkit-keyframes characters {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes characters {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 20.5px 20px;
  min-width: 144px;
  border-radius: 4px;
}

.th-btn:before,
.th-btn:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--title-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  -webkit-transform: scaleY(1.1);
  -ms-transform: scaleY(1.1);
  transform: scaleY(1.1);
}

.th-btn:before {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

.th-btn:after {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

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

.th-btn:hover::before,
.th-btn:hover:after,
.th-btn.active::before,
.th-btn.active:after {
  border-radius: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

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

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

.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
  background-color: var(--white-color);
}

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

.th-btn.style3:hover:before,
.th-btn.style3:hover:after {
  background-color: var(--white-color);
}

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

.th-btn.style4:hover {
  color: var(--title-color);
}

.th-btn.style4:hover:before,
.th-btn.style4:hover:after {
  background-color: var(--white-color);
}

.th-btn.style5 {
  background-color: var(--white-color);
  color: var(--title-color);
  box-shadow: none;
}

.th-btn.style5:hover {
  color: var(--white-color);
}

.th-btn.style5:hover:before,
.th-btn.style5:hover:after {
  background-color: var(--title-color);
}

.th-btn.style6 {
  background-color: var(--white-color);
  color: var(--title-color);
  box-shadow: none;
}

.th-btn.style6:hover {
  color: var(--white-color);
}

.th-btn.style6:hover:before,
.th-btn.style6:hover:after {
  background-color: var(--theme-color);
}

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

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

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

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    height: 20px;
    width: 20px;
  }

  100% {
    left: 50%;
    height: calc(300px * 1.5);
    width: calc(300px * 1.5);
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    height: 20px;
    width: 20px;
  }

  100% {
    left: 50%;
    height: calc(300px * 1.5);
    width: calc(300px * 1.5);
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    height: 20px;
    width: 20px;
  }

  100% {
    right: 50%;
    height: calc(300px * 1.5);
    width: calc(300px * 1.5);
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    height: 20px;
    width: 20px;
  }

  100% {
    right: 50%;
    height: calc(300px * 1.5);
    width: calc(300px * 1.5);
  }
}

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

/*category area ******************/
.category-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 55px 60px 20px 60px;
  border-radius: 30px;
  background: var(--white-color);
  box-shadow: 0px 20px 60px rgba(204, 204, 204, 0.3);
}

.category-wrap .title-area {
  margin-bottom: 55px;
  max-width: 637px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
}

.category-wrap .title-area .sec-title {
  font-size: 36px;
  font-weight: 700;
}

.category-wrap .title-area .sec-text {
  margin-bottom: 0;
}

.category-wrap .category-shape {
  position: absolute;
  padding: 0 60px;
  bottom: 35px;
  left: 0;
  right: 70px;
  text-align: center;
  margin: auto;
}

.category-wrap .icon-btn {
  position: absolute;
  width: 56px;
  height: 30px;
  right: -10px;
  top: -15px;
  line-height: 1;
  text-align: center;
  margin: auto;
  background: none;
  color: var(--theme-color);
  border: 1px solid #d5d7da;
  border-radius: 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.category-wrap .icon-btn:hover {
  background: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}

@media (max-width: 1399px) {
  .category-wrap {
    gap: 50px;
  }

  .category-wrap .title-area {
    max-width: 490px;
    margin-bottom: 65px;
  }
}

@media (max-width: 1199px) {
  .category-wrap {
    display: block;
    padding: 60px;
  }

  .category-wrap .title-area {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .category-wrap {
    padding: 50px 30px;
  }

  .category-wrap .title-area .sec-title {
    font-size: 30px;
  }
}

/* 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);
}

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

.z-index-common {
  z-index: 3;
}

/*-------------- feature 2 area start ----------*/
.feature-card-bg {
  position: relative;
  padding: 56px 60px;
  background-color: var(--white-color);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.feature-card-bg:after {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  content: "";
  border: 2px dashed #d5d7da;
}

@media (max-width: 1199px) {
  .feature-card-bg {
    border-radius: 30px;
  }

  .feature-card-bg.bg-mask {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .feature-card-bg:after {
    display: none;
  }
}

@media (max-width: 575px) {
  .feature-card-bg {
    padding: 40px;
  }
}

@media (max-width: 395px) {
  .feature-card-bg {
    padding: 40px 25px;
  }
}

.feature-card .feature-list {
  margin-top: -0.8em;
  margin-bottom: 35px;
}

.feature-card:not(:last-child) {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .feature-card .feature-img {
    margin-bottom: 40px;
  }
}

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

.th-header {
  z-index: 2;
  background: #ffffff;
}

.th-header.sticky {
  background-color: var(--white-color);
  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;
  }
}

.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: 14px;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 36px 0;
}

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

.hero-title {
  font-size: 54px;
  line-height: 64px;
  font-weight: 700;
  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;
  -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: 566px 0 375px;
  overflow: hidden;
}

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

@media (min-width: 1500px) {
  .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;
}

.hero-thumb-wrap {
  position: relative;
  text-align: center;
  margin-top: -352px;
  display: inline-block;
  padding: 72px 429px 0;
  z-index: 1;
}

.hero-thumb-wrap img {
  box-shadow: 7px -7px 20px 0px rgba(40, 40, 40, 0.25);
  border-radius: 10px;
}

.hero-thumb-wrap .hero-thumb8,
.hero-thumb-wrap .hero-thumb7,
.hero-thumb-wrap .hero-thumb5,
.hero-thumb-wrap .hero-thumb4,
.hero-thumb-wrap .hero-thumb3,
.hero-thumb-wrap .hero-thumb2 {
  position: absolute;
}

.hero-thumb-wrap .hero-thumb2 {
  bottom: 15px;
  left: 0;
}

.hero-thumb-wrap .hero-thumb3 {
  bottom: 0;
  right: 112px;
}

.hero-thumb-wrap .hero-thumb4 {
  top: 0;
  right: 0;
  z-index: -1;
}

.hero-thumb-wrap .hero-thumb5 {
  top: 0;
  left: 106px;
  z-index: -1;
}

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

.hero-thumb-wrap .hero-thumb7 {
  top: -100px;
  left: 0;
  z-index: -2;
}

.hero-thumb-wrap .hero-thumb8 {
  top: -100px;
  right: 50px;
  z-index: -2;
}

@media (max-width: 1500px) {
  .hero-thumb-wrap {
    padding: 72px 290px 0;
  }

  .hero-thumb-wrap .hero-thumb3 {
    right: 52px;
  }

  .hero-thumb-wrap .hero-thumb5 {
    left: 56px;
  }
}

@media (max-width: 1400px) {
  .hero-thumb-wrap {
    padding: 72px 00px 0;
    display: block;
  }

  .hero-thumb-wrap .hero-thumb3 {
    right: 52px;
  }

  .hero-thumb-wrap .hero-thumb5 {
    left: 56px;
  }
}

@media (max-width: 1100px) {
  .hero-thumb-wrap img {
    max-width: 380px;
  }

  .hero-thumb-wrap .hero-thumb1 img {
    max-width: none;
  }
}

@media (max-width: 991px) {
  .hero-thumb-wrap {
    padding: 72px 20px;
  }

  .hero-thumb-wrap img {
    max-width: 0px;
  }

  .hero-thumb-wrap .hero-thumb1 img {
    width: 100%;
  }

  .hero-thumb-wrap .hero-thumb3 {
    right: 0px;
  }

  .hero-thumb-wrap .hero-thumb5 {
    left: 0;
  }
}

@media (max-width: 767px) {
  .hero-thumb-wrap {
    /*display: none;*/
    padding-top: 50%;
  }
  .space,
  .space-top {
    padding-top: 10%;
  }
}

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

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

.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;
  z-index: 1;
}

.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 .new-tag {
  position: absolute;
  right: -15px;
  top: 0px;
  z-index: auto;
}

.thumb-box .new-tag:after {
  content: "";
  position: absolute;
  height: 42px;
  width: 35px;
  background: #433490;
  right: 9px;
  border-radius: 30px 25px 30px 30px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 35px;
  z-index: -1;
}

.thumb-box .new-tag span,
.thumb-box .new-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;
  position: relative;
  z-index: 1;
}

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

  .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 20px;
  }

  .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 14px;
  }

  .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-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-hero {
    padding: 100px 0 120px;
  }
}

.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(--title-color);
  border-color: var(--title-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);
}

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

@media (max-width: 991px) {
  .fixed-tag {
    display: none;
  }
}

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

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
.title-sm {
  font-weight: 400;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.title-sm:before {
  content: "";
  background: #fc5220;
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 8px;
  z-index: -1;
}
.card-style03 {
  padding: 0px 30px 30px 30px;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #f8f9fa;
  border: none;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.card-style03:hover {
  background-color: #fff;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.05);
}
.card-style03 .card-icon {
  position: relative;
  margin-top: -50px;
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-out 0s;
  margin-bottom: 30px;
}
.card-style03:hover .card-icon {
  /*background-color: #fc5220;*/
  background-color: #525252;
}
.card-style03 .card-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(18, 74, 47, 0.1);
  font-size: 35px;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.card-style03 .card-btn i {
  position: absolute;
  bottom: -9px;
  left: -7px;
}
.card-style03:hover .card-btn {
  background-color: #fc5220;
}
.card-style03 .hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.card-style03:hover .hover-icon {
  opacity: 1;
}
.card-style03:hover .main-icon {
  opacity: 0;
}

/* Company History */
.company-history {
  background: #f4ede6;
  padding: 66px 0 78px;
}
.company-history--title-only .ch-header {
  margin: 0 auto 42px;
}
.company-history--title-only .ch-header h2 {
  margin: 0;
  color: #1a2544;
  font-family: "Barlow", sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
}
.company-history--title-only .ch-header p,
.ch-divider {
  display: none;
}
.ch-track-wrap {
  margin-top: 8px;
}
.ch-track {
  width: 100%;
  height: 62px;
  background: #ff5722;
}
.ch-items {
  display: grid;
  grid-template-columns: repeat(var(--history-cols, 5), minmax(0, 1fr));
  gap: 24px;
  margin-top: -24px;
}
.ch-item {
  position: relative;
  padding-top: 38px;
  padding-bottom: 158px;
}
.ch-dot {
  position: absolute;
  top: -66px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #efe5d8;
  border: 2px solid #ec9a75;
}
.ch-line {
  position: absolute;
  top: -48px;
  left: 9px;
  width: 1px;
  height: calc(190px + var(--tail, 92px));
  background: #ea6a3d;
}
.ch-card {
  position: relative;
  padding: 0 16px 14px 4px;
  min-height: 200px;
}
.ch-card h3 {
  display: inline-flex;
  align-items: center;
  min-width: 104px;
  height: 50px;
  margin: 0 0 14px;
  padding: 0 24px 0 20px;
  border-radius: 0 30px 30px 0;
  background: #ff5722;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: clamp(34px, 2.3vw, 46px);
  font-weight: 800;
  line-height: 1;
}
.ch-card ul {
  margin: 0;
  padding-left: 18px;
}
.ch-card li {
  margin-bottom: 8px;
  color: #4d4034;
  font-size: 16px;
  line-height: 1.4;
}
.ch-step {
  position: absolute;
  left: -18px;
  top: calc(96px + var(--tail, 92px));
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #d56f43;
  background: #f5ebdd;
  color: #993d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-size: 34px;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(213, 111, 67, 0.18);
}

@media (max-width: 1399px) {
  .ch-card h3 {
    font-size: 32px;
    min-width: 96px;
    height: 46px;
  }
  .ch-card li {
    font-size: 16px;
  }
  .ch-step {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .company-history {
    padding: 52px 0 58px;
  }
  .company-history--title-only .ch-header {
    margin-bottom: 28px;
  }
  .ch-track-wrap {
    margin-top: 0;
  }
  .ch-track {
    display: none;
  }
  .ch-items {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 20px;
  }
  .ch-item {
    padding-top: 0;
    padding-left: 74px;
    padding-bottom: 0;
  }
  .ch-dot {
    top: 10px;
    left: 18px;
  }
  .ch-line {
    top: 28px;
    left: 27px;
    height: calc(100% + 20px);
  }
  .ch-item:last-child .ch-line {
    display: none;
  }
  .ch-card {
    min-height: auto;
    padding: 0 0 14px;
    background: #f7eee3;
    border: 1px solid #edc8b2;
    border-radius: 14px;
    overflow: hidden;
  }
  .ch-card h3 {
    width: 100%;
    min-width: 0;
    border-radius: 0;
    justify-content: flex-start;
    padding: 0 16px;
    margin: 0 0 10px;
    font-size: 30px;
  }
  .ch-card ul {
    padding: 0 16px 4px 30px;
  }
  .ch-step {
    left: 0;
    top: 8px;
    width: 46px;
    height: 46px;
    font-size: 16px;
    box-shadow: none;
  }
}

.vm-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f5f2 0%, #ffffff 55%, #f1f6ff 100%);
}
.vm-section:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -220px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(252, 82, 32, 0.18) 0%,
    rgba(252, 82, 32, 0) 70%
  );
  z-index: 0;
}
.vm-section:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  bottom: -200px;
  left: -160px;
  background: radial-gradient(
    circle,
    rgba(12, 74, 47, 0.16) 0%,
    rgba(12, 74, 47, 0) 70%
  );
  z-index: 0;
}
.vm-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 40px;
}
.vm-header h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.vm-header p {
  color: #5b6270;
  margin-bottom: 0;
}
.vm-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fc5220;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(252, 82, 32, 0.12);
  margin-bottom: 10px;
  font-weight: 700;
}
.vm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.vm-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  animation: vm-rise 0.9s ease forwards;
  animation-delay: 0.08s;
}
.vm-card:nth-child(2) {
  animation-delay: 0.22s;
}
.vm-card:before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px dashed rgba(15, 23, 42, 0.08);
  pointer-events: none;
}
.vm-card:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  top: -60px;
  right: -50px;
  border-radius: 40px;
  opacity: 0.25;
  transform: rotate(18deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}
.vm-card:hover {
  transform: translateY(-6px) scale(1.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.14);
  border-color: rgba(252, 82, 32, 0.35);
}
.vm-card:hover:after {
  transform: translate(-8px, 8px) rotate(10deg);
  opacity: 0.45;
}
.vm-card--mission:hover {
  border-color: rgba(12, 74, 47, 0.35);
}
.vm-card:hover:before {
  border-color: rgba(15, 23, 42, 0.12);
}
.vm-card .vm-media img {
  transition: opacity 0.35s ease;
}
.vm-card:hover .vm-badge {
  background: rgba(252, 82, 32, 0.16);
  color: #fc5220;
}
.vm-card--mission:hover .vm-badge {
  background: rgba(12, 74, 47, 0.16);
  color: #0c4a2f;
}
.vm-card--vision {
  border-top: 4px solid #fc5220;
}
.vm-card--mission {
  border-top: 4px solid #0c4a2f;
}
.vm-card--vision:after {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(252, 82, 32, 0.6) 0%,
    rgba(252, 82, 32, 0) 70%
  );
}
.vm-card--mission:after {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(12, 74, 47, 0.55) 0%,
    rgba(12, 74, 47, 0) 70%
  );
}
.vm-media {
  width: 120px;
  height: 120px;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff1eb, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-card--mission .vm-media {
  background: linear-gradient(145deg, #eef9f2, #ffffff);
}
.vm-media img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.vm-content {
  position: relative;
  z-index: 1;
}
.vm-content h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  margin: 6px 0 10px;
}
.vm-content p {
  color: #5b6270;
  margin-bottom: 0;
}
.vm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #1a1f2b;
  background: rgba(15, 23, 42, 0.06);
  padding: 6px 12px;
  border-radius: 999px;
}

@keyframes vm-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vm-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .vm-card:hover {
    transform: none;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  }
}

@media (max-width: 991px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .vm-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vm-media {
    margin: 0 auto;
  }
}

/* Core Values */
.core-values {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(140deg, #ffffff 0%, #f8fafc 55%, #eef2ff 100%);
  overflow: hidden;
}
.core-values:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -240px;
  left: -220px;
  background: radial-gradient(
    circle,
    rgba(252, 82, 32, 0.12) 0%,
    rgba(252, 82, 32, 0) 70%
  );
}
.core-values:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  bottom: -220px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(12, 74, 47, 0.12) 0%,
    rgba(12, 74, 47, 0) 70%
  );
}
.cv-header {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 40px;
}
.cv-header h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 10px;
}
.cv-header p {
  color: #5b6270;
  font-size: clamp(16px, 1.3vw, 20px);
  margin-bottom: 0;
}
.cv-kicker {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #1a1f2b;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 31, 43, 0.08);
  margin-bottom: 10px;
  font-weight: 700;
}
.cv-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}
.cv-card {
  position: relative;
  min-height: 380px;
  background: var(--cv-accent, #fc9b3f);
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease;
  transition-delay: var(--delay, 0ms);
}

@media (max-width: 1200px) {
  .cv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
  @media (max-width: 768px) {
    .cv-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .cv-card {
      min-height: auto;
      background: #fff7ef;
      color: #1a1f2b;
      border: 1px solid #f4c9b2;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
      position: relative;
      padding: 14px 16px 16px 86px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .cv-card:before {
      content: "";
      position: absolute;
      left: 28px;
      top: 24px;
      width: 1px;
      height: calc(100% + 20px);
      background: #c65124;
      opacity: 0.9;
    }
    .cv-card:after {
      content: "";
      position: absolute;
      left: 19px;
      top: 10px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fc5220;
      box-shadow: 0 0 0 6px rgba(252, 82, 32, 0.2);
    }
    .cv-grid .cv-card:last-child:before {
      display: none;
    }
    .cv-face {
      position: static;
      height: auto;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a1f2b;
    }
    .cv-icon {
      position: static;
      transform: none;
      margin: 0;
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid #f4c9b2;
      box-shadow: 0 10px 18px rgba(252, 82, 32, 0.18);
    }
    .cv-icon img {
      width: 28px;
      height: 28px;
      filter: none;
    }
    .cv-name {
      display: none;
    }
    .cv-detail {
      position: static;
      transform: none;
      background: transparent;
      color: #1a1f2b;
      padding: 0;
    }
    .cv-detail:before {
      display: none;
    }
    .cv-detail h3 {
      margin: 6px 0 8px;
    }
    .cv-detail p {
      color: #4b5563;
      margin: 0;
    }
    .cv-card:hover .cv-detail {
      transform: none;
    }
    .cv-card.is-visible:hover {
      transform: translateY(0);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    }
    .cv-header h2 {
      font-size: clamp(24px, 6vw, 32px);
    }
  .cv-header p {
    font-size: clamp(14px, 3.5vw, 16px);
  }
  .cv-kicker {
    font-size: 12px;
    padding: 5px 12px;
  }
    .cv-name {
      font-size: clamp(15px, 3.6vw, 18px);
    }
    .cv-detail h3 {
      font-size: clamp(18px, 4.2vw, 22px);
  }
  .cv-detail p {
    font-size: clamp(13px, 3.2vw, 15px);
  }
}
  @media (max-width: 520px) {
    .cv-grid {
      grid-template-columns: 1fr;
    }
    .cv-card {
      min-height: auto;
      padding: 12px 14px 14px 78px;
    }
  .cv-header h2 {
    font-size: clamp(22px, 7vw, 28px);
  }
  .cv-header p {
    font-size: clamp(13px, 4vw, 15px);
  }
    .cv-kicker {
      font-size: 11px;
      letter-spacing: 1.6px;
    }
    .cv-name {
      font-size: clamp(14px, 4.2vw, 16px);
    }
  .cv-detail h3 {
    font-size: clamp(17px, 4.6vw, 20px);
  }
  .cv-detail p {
    font-size: clamp(12px, 3.8vw, 14px);
  }
    .cv-face {
      padding: 0;
    }
    .cv-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
    }
    .cv-icon img {
      width: 24px;
      height: 24px;
    }
    .cv-detail {
      padding: 0;
    }
    .cv-card:before {
      left: 24px;
    }
    .cv-card:after {
      left: 16px;
    }
  }
.cv-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 24px 50px rgba(16, 24, 40, 0.16);
}
.cv-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.2);
}
.cv-face {
  position: relative;
  height: 100%;
  padding: 26px;
  color: #ffffff;
  display: block;
}
.cv-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.cv-name {
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}
.cv-detail {
  position: absolute;
  inset: 0;
  background: #ffffff;
  color: #1a1f2b;
  padding: 26px;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.cv-detail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--cv-accent, #fc9b3f);
}
.cv-detail h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 14px 0 10px;
}
.cv-detail p {
  color: #4b5563;
  font-size: clamp(15px, 1.2vw, 18px);
  margin: 0;
}
.cv-card:hover .cv-detail {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .core-values .cv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .core-values .cv-card {
    min-height: auto;
    background: var(--cv-accent, #fc9b3f);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
    position: relative;
    padding: 16px 16px 16px 120px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .core-values .cv-card:before {
    display: none;
  }
  .core-values .cv-card:after {
    display: none;
  }
  .core-values .cv-card:last-child:before {
    display: none;
  }
  .core-values .cv-face {
    position: absolute;
    left: 18px;
    top: 18px;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1f2b;
  }
.core-values .cv-icon {
  position: static;
  transform: none;
  margin: 0;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #ffeede 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.core-values .cv-icon img {
  width: 38px;
  height: 38px;
  filter: brightness(0) saturate(100%);
}
@media (hover: hover) and (pointer: fine) {
  .core-values .cv-card:hover .cv-icon {
    transform: scale(1.05);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}
  .core-values .cv-name {
    display: none;
  }
    .core-values .cv-detail {
      position: static;
      transform: none;
      background: transparent;
      color: #ffffff;
      padding: 0;
    }
    .core-values .cv-card:nth-child(even) {
      padding: 16px 120px 16px 16px;
    }
    .core-values .cv-card:nth-child(even) .cv-face {
      left: auto;
      right: 18px;
    }
  .core-values .cv-detail:before {
    display: none;
  }
  .core-values .cv-detail h3 {
    margin: 4px 0 6px;
    font-size: clamp(18px, 4.2vw, 22px);
  }
  .core-values .cv-detail p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(13px, 3.2vw, 15px);
  }
  .core-values .cv-card:hover .cv-detail {
    transform: none;
  }
  .core-values .cv-card.is-visible:hover {
    transform: translateY(0);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
  }
}

  @media (max-width: 520px) {
    .core-values .cv-card {
      padding: 14px 14px 14px 110px;
    }
    .core-values .cv-card:nth-child(even) {
      padding: 14px 110px 14px 14px;
    }
    .core-values .cv-card:nth-child(even) .cv-face {
      right: 14px;
      left: auto;
    }
  .core-values .cv-icon {
    width: 68px;
    height: 68px;
  }
  .core-values .cv-icon img {
    width: 34px;
    height: 34px;
  }
  .core-values .cv-card:before {
    display: none;
  }
  .core-values .cv-card:after {
    display: none;
  }
}
