/*=================================
01. Theme Base
==================================*/
@font-face {
  font-family: "Jun-Regular";
  src: url("../fonts/jun_regular/jun_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* recommended */
}
/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #0c5195;
  --theme-color2: #2495b0;
  --theme-color3: #423A2F;
  --title-color: #0D0D0C;
  --title-dark: #364440;
  --body-color: #6E7070;
  --smoke-color: #C0CDD1;
  --smoke-color2: #666666;
  --smoke-color3: #C2D6C2;
  --smoke-color4: #F5F7F9;
  --black-color: #000000;
  --black-color2: #1B1B1B;
  --black-color3: #1A1A1A;
  --black-color4: #23343E;
  --gray-color: #DDE8DD;
  --gray-color2: #E5E4E9;
  --gray-color3: #F3F5F6;
  --gray-color4: #EEF4EE;
  --gray-color5: #E4DFD8;
  --gray-color6: #968D81;
  --gray-color7: #ECE5DB;
  --white-color: #ffffff;
  --light-color: #A4B5BA;
  --light-color2: #FBF5EC;
  --yellow-color: #E2B93B;
  --success-color: #27AE60;
  --error-color: #EB5757;
  --th-border-color: #CDCDCD;
  --th-border-color2: #E6E6E6;
  --title-font: "Jun-Regular", sans-serif;
  --body-font: "Jun-Regular", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1350px;
  --container-gutters: 24px;
  --section-space: 80px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #ffffff;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  background: #fff;
}

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

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]) {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

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(--title-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%;
}

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

h1,
h2,
h3 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
}

h1 {
  font-size: 52px;
  line-height: 1.2;
}

@media (max-width: 1299px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 34px;
  line-height: 1.2;
}

h3 {
  font-size: 30px;
  line-height: 1.278;
}

/* Large devices */
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
    line-height: 1.3;
  }
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  h3 {
    font-size: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  h3 {
    font-size: 26px;
  }
}

/*------------------- 2.1. Container -------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}

@media only screen and (min-width: 1300px) {
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}

/*------------------- 2.2. Grid -------------------*/

@media (min-width: 1300px) {
  .row {
    --bs-gutter-x: 24px;
  }
}

.gy-50 {
  --bs-gutter-y: 50px;
}

.gy-60 {
  --bs-gutter-y: 60px;
}

@media (min-width: 1299px) {
  .gx-80 {
    --bs-gutter-x: 80px;
  }
}

/* Large devices */

/* Medium devices */
@media (max-width: 991px) {
  .gy-50 {
    --bs-gutter-y: 40px;
  }
}

/*------------------- 2.3. Input -------------------*/
.form-control,
textarea,
input {
  height: 50px;
  padding: 0 45px 0 0px;
  /* padding-right: 45px; */
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--gray-color);
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.form-control:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border: 0;
  border-bottom-color: var(--theme-color);
  /* background-color: var(--gray-color); */
}

.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-control::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-control::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}

.form-control:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-control::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}

textarea.form-control,
textarea {
  min-height: 100px;
  padding-top: 16px;
  padding-bottom: 17px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 16px;
  font-size: 16px;
  color: var(--body-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

.form-group.style-border textarea,
.form-group.style-border input {
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  /* color: var(--theme-color); */
}

.form-group.style-border textarea::-webkit-input-placeholder, .form-group.style-border input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border textarea::-moz-placeholder, .form-group.style-border input::-moz-placeholder {
  color: var(--body-color);
}

.form-group.style-border textarea:-ms-input-placeholder, .form-group.style-border input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border textarea::-ms-input-placeholder, .form-group.style-border input::-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border i {
  color: var(--body-color);
}

@media (max-width: 767px) {
  .form-group.style-border4:has(textarea) i {
    top: 22px;
  }
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

/*------------------- 2.4. Slick Slider -------------------*/
.swiper-wrapper.row {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.th-slider.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
  padding: 25px 0;
}

.swiper-fade .swiper-slide {
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  opacity: 0 !important;
}

.swiper-fade .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.swiper-pagination-bullets {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 53px 0 0px 0;
  line-height: 3px;
  height: 3px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 64px;
  --swiper-pagination-bullet-horizontal-gap: 12px;
  margin: 5px 7px;
  height: 3px;
  opacity: 1;
  border-radius: 0;
  background-color: var(--theme-color);
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.swiper-pagination-bullets .swiper-pagination-bullet:hover, .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color2);
}

.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiper-pagination-bullets.style2 .swiper-pagination-bullet {
  height: 2px;
  background: #8A9AA0;
}

.swiper-pagination-bullets.style2 .swiper-pagination-bullet:hover, .swiper-pagination-bullets.style2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.swiper-pagination-bullets.style3 {
  height: 16px;
  bottom: var(--swiper-pagination-bottom, 0px);
}

.swiper-pagination-bullets.style3 .swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid var(--light-color);
  border-radius: 50%;
}

.swiper-pagination-bullets.style3 .swiper-pagination-bullet:hover, .swiper-pagination-bullets.style3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.swiper-pagination-bullets.style4 {
  height: 10px;
}

.swiper-pagination-bullets.style4 .swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--light-color);
  border-radius: 50%;
  position: relative;
}

.swiper-pagination-bullets.style4 .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  inset: 0px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.swiper-pagination-bullets.style4 .swiper-pagination-bullet:hover {
  background-color: var(--white-color);
}

.swiper-pagination-bullets.style4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white-color);
}

.swiper-pagination-bullets.style4 .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  inset: -12px;
}

.swiper-pagination-bullets.style5 {
  text-align: start;
}

.swiper-pagination-bullets.style5 .swiper-pagination-bullet {
  background: var(--light-color);
}

.swiper-pagination-bullets.style5 .swiper-pagination-bullet:hover, .swiper-pagination-bullets.style5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.slider-pagination.swiper-pagination-progressbar {
  width: -webkit-fill-available;
  position: relative;
  height: 1px;
  background: #D9D9D9;
  top: auto;
  bottom: 0px;
  margin: 70px 0px 0;
}

.slider-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 1px;
  top: auto;
  bottom: 0;
  background: var(--theme-color);
}

.slider-pagination-progressbar2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--light-color);
  z-index: 1;
}

.slider-pagination-progressbar2 .slider-progressbar-fill {
  width: 100%;
  height: 0;
  background-color: var(--theme-color);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

.slider-pagination.slider-pagination-progressbar3 {
  background: var(--light-color);
}

.slider-pagination.slider-pagination-progressbar3 .swiper-pagination-progressbar-fill {
  background-color: var(--theme-color2);
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  color: var(--theme-color);
  position: absolute;
  top: 50%;
  border: none;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 55px);
  height: var(--icon-size, 55px);
  line-height: var(--icon-size, 55px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 55px) / -2);
  z-index: 3;
  border-radius: 99px;
}

.slider-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}

.slider-arrow.slider-next {
  right: var(--pos-x, -120px);
  left: auto;
}

.slider-arrow:hover {
  background-color: var(--theme-color2);
  color: var(--theme-color);
}

.slider-arrow.style2 {
  border: 1px solid var(--white-color);
  --icon-size: 48px;
  line-height: 46px;
}

.slider-arrow.style2:hover {
  background: var(--title-dark);
  color: var(--white-color);
}

.slider-arrow.style2:hover img {
  -webkit-filter: grayscale(9) invert(1);
  filter: grayscale(9) invert(1);
}

.slider-arrow.style3 {
  border: 1px solid var(--white-color);
  background: var(--white-color);
  --icon-size: 48px;
  line-height: 46px;
}

.slider-arrow.style3:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.slider-arrow.style3:hover img {
  -webkit-filter: grayscale(9) invert(1);
  filter: grayscale(9) invert(1);
}

.slider-arrow.style4 {
  border: 1px solid var(--title-dark);
  background: transparent;
  line-height: 52px;
  /* Medium devices */
}

.slider-arrow.style4:hover {
  background: var(--title-dark);
}

.slider-arrow.style4:hover img {
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

@media (max-width: 991px) {
  .slider-arrow.style4 {
    line-height: 37px;
  }
}

.slider-arrow.style5 img{
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

.slider-arrow.style5 {
  border: 1px solid #fff;
  background: transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.slider-arrow.style5:hover {
  background: var(--theme-color);
}

.slider-arrow.style5:hover img {
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

.slider-arrow.style6 {
  border: 1px solid var(--white-color);
  background: transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.slider-arrow.style6 img {
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

.slider-arrow.style6:hover {
  background: var(--white-color);
}

.slider-arrow.style6:hover img {
  -webkit-filter: none;
  filter: none;
}

.slider-arrow.style7 {
  border: 1px solid var(--white-color);
  background: transparent;
  line-height: 52px;
  /* Medium devices */
}

.slider-arrow.style7 img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider-arrow.style7:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.slider-arrow.style7:hover img {
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

@media (max-width: 991px) {
  .slider-arrow.style7 {
    line-height: 37px;
  }
}

.slider-arrow.style8 {
  border: 1px solid var(--theme-color3);
  background: transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.slider-arrow.style8:hover {
  background: var(--theme-color3);
}

.slider-arrow.style8:hover img {
  -webkit-filter: invert(1) contrast(9);
  filter: invert(1) contrast(9);
}

.arrow-margin .slider-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap {
  position: relative;
}

.arrow-wrap .slider-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

.arrow-wrap:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slider-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -30px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .slider-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    display: none !important;
  }
}

.icon-box {
  /* Medium devices */
}

.icon-box .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.icon-box .slider-arrow:not(:last-child) {
  margin-right: 8px;
}

@media (max-width: 991px) {
  .icon-box .slider-arrow {
    display: inline-block !important;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }
  .slider-arrow.slider-next {
    margin-right: 0;
  }
  .slick-dots {
    margin: 40px 0 0 0;
  }
  .icon-box .slider-arrow {
    margin-right: 0;
  }
}

.slick-3d-active {
  margin-left: -12%;
  margin-right: -12%;
}

.slick-3d-active .slick-list {
  padding-left: 30% !important;
  padding-right: 30% !important;
}

.slick-3d-active .slick-track {
  max-width: 100% !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  -webkit-perspective: 100px;
  perspective: 100px;
}

.slick-3d-active .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
  display: block;
}

.slick-3d-active .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}

.slick-3d-active .slick-3d-next {
  opacity: 1;
  -webkit-transform: translate3d(50%, 0, -21px);
  transform: translate3d(50%, 0, -21px);
  z-index: 1;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.slick-3d-active .slick-3d-next2 {
  opacity: 1;
  -webkit-transform: translate3d(40%, 0, -23px);
  transform: translate3d(40%, 0, -23px);
  z-index: 0;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.slick-3d-active .slick-3d-prev {
  opacity: 1;
  -webkit-transform: translate3d(-50%, 0, -21px);
  transform: translate3d(-50%, 0, -21px);
}

.slick-3d-active .slick-3d-prev .testi-card {
  box-shadow: none;
}

.slick-3d-active .slick-3d-prev2 {
  opacity: 1;
  -webkit-transform: translate3d(-40%, 0, -23px);
  transform: translate3d(-40%, 0, -23px);
}

/*slider-drag-cursor**************/
.slider-drag-cursor {
  pointer-events: none;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: -2px;
  height: 36px;
  width: 36px;
  -webkit-transition: width .1s ease-in-out;
  transition: width .1s ease-in-out;
  background: rgba(28, 45, 55, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 100%;
  color: var(--white-color);
  display: none;
  cursor: none;
}
.slider-drag-cursor.active {
  display: block;
}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 18.5px 24px;
  min-width: 125px;
  border-radius: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.th-btn .btn-icon {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.th-btn.th-btn-icon:after {
  content: '';
  position: relative;
  background-image: url(../img/icon/arrow-right.png);
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: -webkit-linear-gradient(330deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}

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

.th-btn:focus:before, .th-btn:hover:before {
  -webkit-animation: shine 1.5s ease-out infinite;
  animation: shine 1.5s ease-out infinite;
}

.th-btn.btn-mask {
  border-radius: 0;
  /* -webkit-mask-image: url(../img/theme-img/btn-shape.png);
  mask-image: url(../img/theme-img/btn-shape.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%; */
  background: var(--theme-color);
  color: #fff;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  padding: 20px 24px;
  border-radius: 12px;
}

.th-btn.btn-mask:hover, .th-btn.btn-mask:active, .th-btn.btn-mask:focus {
  border-radius: 50px;
}


.th-btn.btn-mask2 {
  border-radius: 0;
  /* background-image: url(../img/theme-img/btn-shape2.png);
  background-size: 100% 100%; */
  border: 1px solid #fff;
  border-radius: 12px;
  background-color: transparent;
  color: var(--white-color);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  padding: 20px 24px;
}
/* 
.th-btn.btn-mask2.th-btn-icon:after {
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
} */

.th-btn.btn-mask2.th-btn-icon img {
  width: 16px;
}

.th-btn.btn-mask2:hover, .th-btn.btn-mask2:active, .th-btn.btn-mask2:focus {
  border-radius: 50px;
  background: var(--white-color);
  color: var(--title-color);
}

.th-btn.btn-mask2:hover:after, .th-btn.btn-mask2:active:after, .th-btn.btn-mask2:focus:after {
  -webkit-filter: brightness(1) invert(1);
          filter: brightness(1) invert(1);
}

@-webkit-keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 16px);
  margin-top: -0.3em;
  font-weight: 600;
}

.sub-title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--theme-color);
  margin-bottom: 28px;
  line-height: 1;
  padding: 8px 0px;
  position: relative;
}

.sub-title:after, .sub-title:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 32px;
  background: var(--theme-color);
}

.sub-title:before {
  top: 0;
  left: 0;
}

.sub-title:after {
  bottom: 0;
  left: 0;
}

.sec-text {
  font-size: 18px;
  line-height: 1.777;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .sec-text {
    font-size: 16px;
  }
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  margin-top: -0.32em;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 11px);
  position: relative;
  z-index: 2;
}

.title-area .sec-title {
  margin-bottom: 9px;
  color: var(--theme-color2);
}

.title-area.mb-0 .sec-title {
  margin-bottom: -0.24em;
}

/* .sec-btn {
  text-align: center;
} */

/* .sec-btn,
.title-line {
  margin-bottom: var(--section-title-space);
} */

.shadow-title {
  font-family: var(--title-font);
  font-size: 70px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  background: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin: -0.67em 0 -0.48em 0;
  display: block;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .shadow-title {
    font-size: 85px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .shadow-title {
    font-size: 64px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
  .sec-btn {
    --section-title-space: 55px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .shadow-title {
    font-size: 60px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
  .sec-btn {
    --section-title-space: 50px;
  }
}

/* Small devices */

/* Extra small devices */
@media (max-width: 575px) {
  .shadow-title {
    font-size: 52px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .shadow-title {
    font-size: 40px;
  }
}

/*------------------- 3.4. Common -------------------*/

/*------------------- 3.6. Font -------------------*/

.fs-18 {
  font-size: 18px !important;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

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

.bg-smoke4 {
  background-color: var(--smoke-color4) !important;
}

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

/*------------------- 3.8. Text Color -------------------*/

.text-theme2 {
  color: var(--theme-color2) !important;
}

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

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

/*animation bubble****************/

.img-shine {
  position: relative;
}

.img-shine:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.img-shine:hover:after {
  -webkit-animation: imgShine 1s;
  animation: imgShine 1s;
}

@-webkit-keyframes imgShine {
  100% {
    left: 125%;
  }
}

@keyframes imgShine {
  100% {
    left: 125%;
  }
}

/*------------------- 4.1. Widget  -------------------*/

.wp-block-archives a:not(:hover) {
  color: inherit;
}

.widget {
  padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 30px);
  background-color: var(--theme-color);
  margin-bottom: 15px;
  position: relative;
  border-radius: 8px;
  border: 0;
}

/* Medium Large devices */

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
}

.footer-widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.th-widget-contact {
  /* max-width: 260px;
  margin-bottom: -0.4em; */
  display: flex;
  align-items: center;
  gap: 30px;
}

.th-widget-contact .info-box_text {
  line-height: 1.75em;
  margin-top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.th-widget-contact .info-box_text .icon {
  color: var(--body-color);
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 40px;
  height: 40px;
  line-height: 37px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
}

.th-widget-contact .info-box_text .details p {
  margin-bottom: 0;
  margin-top: -4px;
  color: #fff;
  font-size: 22px;
}

.hero-style4 ul {
  padding: 0;
  margin-bottom: 40px;
}
.hero-style4 ul li {
  list-style: none;
  font-weight: 500;
  color: var(--title-color);
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
}

.th-widget-contact .info-box_text span {
  color: #fff;
  font-size: 15px;
}
.th-widget-contact .info-box_text a {
  gap: 15px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.th-widget-contact .info-box_text a:hover {
  color: var(--theme-color2);
}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .menu-area {
  position: absolute;
  z-index: 2;
  width: 100%;
  /* background-color: #fff;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.th-header.header-layout1 {
  margin: 15px;
}

.main-menu ul li:has(.sub-menu) > a:after, .main-menu ul li:has(.mega-menu) > a:after {
  content: "\f107";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 400;
  top: 0;
  font-size: 0.9em;
  color: var(--white-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul li:has(.sub-menu) > a:hover:after, .main-menu ul li:has(.mega-menu) > a:hover:after {
  content: "\f106";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--theme-color2);
}

.main-menu ul.sub-menu li:has(.sub-menu) > a:after, .main-menu ul.sub-menu li:has(.mega-menu) > a:after {
  content: "\f105";
  float: right;
  top: 1px;
  display: inline-block;
  color: var(--title-color);
}

.main-menu ul.sub-menu li:has(.sub-menu) > a:hover:after, .main-menu ul.sub-menu li:has(.mega-menu) > a:hover:after {
  content: "\f105";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.simple-icon:has(.badge) {
  padding-right: 8px;
}

.header-logo {
  max-width: 250px;
  /* padding-top: 15px;
  padding-bottom: 15px; */
}

/* Header 1 ---------------------------------- */
.header-layout1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: var(--theme-color);
}

@media (min-width: 1600px) {
  .header-layout1 {
    --main-container: 1604px;
  }
}

/* Header 2 ---------------------------------- */

.header-layout2 .main-menu ul li:has(.sub-menu) > a:after,
.header-layout2 .main-menu ul li:has(.mega-menu) > a:after {
  color: var(--title-color);
}

.header-layout6 .main-menu ul li:has(.sub-menu) > a:after,
.header-layout6 .main-menu ul li:has(.mega-menu) > a:after {
  color: var(--title-color);
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --th-border-color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  background-color: #212428;
  overflow: hidden;
}

.copyright-wrap {
  padding: 20px 0;
  /* background-size: 100% auto;
  background-color: rgba(23, 26, 30, 0.4); */
}

.copyright-wrap .copyright-text {
  color: var(--theme-color);
}

.copyright-text {
  margin: 0;
}

/* Medium devices */
@media (max-width: 991px) {
  .copyright-text {
    text-align: center;
  }
}
/* Footer Area Default---------------------------------- */

/* Footer Area 1---------------------------------- */

.footer-layout1 .copyright-wrap .copyright-text {
  color: #fff;
}

@media (max-width: 1500px) {
  .footer-layout1 .footer-wrap {
    margin: 0 40px 40px;
  }
}

@media (max-width: 1399px) {
  .footer-layout1 .footer-wrap {
    margin: 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .footer-layout1 .footer-wrap {
    margin: 0;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/* Blockquote ---------------------*/

blockquote:not(:has(> cite)) p:last-child,
.wp-block-quote:not(:has(> cite)) p:last-child {
  margin-bottom: -0.3em;
}

blockquote p:has(cite),
.wp-block-quote p:has(cite) {
  padding-bottom: 10px;
}

/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* .th-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
} */

/* Hero 1 ---------------------------------- */
.hero-title {
  margin-bottom: 15px;
  font-size: 42px;
}

.hero-title span {
  display: block;
}

/* Extra small devices */

.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.info-box_link {
  display: inline-block;
  color: var(--body-color);
}

.info-box_link:hover {
  color: var(--theme-color);
}

/*------------------- 4.00. About  -------------------*/
/* About 1 ---------------------------------- */

.img-box {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

/*------------------- 4.00. Testimonial  -------------------*/
/* Testimonial Area 1 ---------------------------------- */

.testi-card {
  position: relative;
  margin-right: 110px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .testi-card {
    margin-right: 0;
  }
}

.testi-card .testi-grid_review {
  color: var(--yellow-color);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
}

.testi-card_text {
  font-size: 24px;
  line-height: 2em;
  font-weight: 400;
  margin: 5px 0 15px 0;
  color: #1B1B1B;
  /* Medium Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .testi-card_text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .testi-card_text {
    font-size: 16px;
  }
}

.testi-card .quote-icon {
  margin-bottom: 0px;
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .testi-card .quote-icon {
    width: 90px;
  }
}

@media (max-width: 375px) {
  .testi-card .quote-icon {
    width: 60px;
  }
}

.testi-card_name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.testi-card_profile {
  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: 16px;
}

/* Testimonial Area 2 ---------------------------------- */

/* Testimonial Area 3 ---------------------------------- */
.testi-slider3 {
  margin: 0 -120px;
}

.testi-slider3 .swiper-wrapper {
  margin: 0 0 0 -350px;
}

@media (max-width: 1500px) {
  .testi-slider3 {
    margin: 0 -240px;
  }
  .testi-slider3 .swiper-wrapper {
    margin: 0 0 0 -315px;
  }
}

@media (max-width: 1299px) {
  .testi-slider3 {
    margin: 0;
  }
  .testi-slider3 .swiper-wrapper {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .testi-slider3 {
    margin: 0 40px;
  }
}

@media (max-width: 575px) {
  .testi-slider3 {
    margin: 0 15px;
  }
}

.testi-card.style3 {
  background: var(--white-color);
  margin-right: 0;
  border-radius: 24px;
  padding: 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  /* Extra small devices */
}

.testi-card.style3 .testi-grid_review {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.testi-card.style3 .testi-grid_review i{
  font-size: 13px;
}

.testi-card.style3 .testi-card_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8em;
  color: var(--body-color);
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 0;
  /* Medium Large devices */
}

@media (min-width: 1500px) and (max-width: 1600px) {
  .testi-card.style3 .testi-card_text {
    height: 160px;
  }
}

@media (max-width: 1399px) {
  .testi-card.style3 .testi-card_text {
    font-size: 18px;
  }
}

.testi-card.style3 .testi-card_profile {
  position: relative;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  /* padding-top: 56px; */
}

.testi-card.style3 .testi-card_profile .quote-icon {
  position: absolute;
  right: 0;
  top: 0;
}

.testi-card.style3 .testi-card_profile .quote-icon img {
  width: 64px;
}

.testi-card.style3 .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.testi-card.style3 .testi-card_name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0px;
  color: var(--theme-color);
}

@media (max-width: 575px) {
  .testi-card.style3 {
    padding: 30px;
  }
  .testi-card.style3 .testi-card_text {
    padding-bottom: 28px;
    font-size: 16px;
  }
  .testi-card.style3 .testi-card_profile {
    padding-top: 36px;
  }
  .testi-card.style3 .testi-card_name {
    font-size: 18px;
  }
}

/*------------------- 4.00. Simple Sections  -------------------*/

.btn-wrap {
  display: flex;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 30px;
}

/*------------------- 4.00. Service -------------------*/
/* Service Area 1 ---------------------------------- */
.service-card .service-card-icon img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card .box-title {
  margin-top: 30px;
}

.service-card:hover .service-card-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*------------------- 4.00. Project -------------------*/
/* Portfolio Area -------------------------------*/
.project-area-1 {
  background-attachment: fixed;
}

.project-wrap1 .project-number-pagination {
  position: absolute;
  z-index: 9;
  left: 146px;
  top: 50%;
  -webkit-transform: translate(0, calc(-50% + 20px));
  -ms-transform: translate(0, calc(-50% + 20px));
  transform: translate(0, calc(-50% + 20px));
  display: inline-block;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .project-wrap1 .project-number-pagination {
    display: none;
  }
}

.project-wrap1 .project-number-pagination .tab-btn {
  position: relative;
  margin: 110px 0;
  cursor: pointer;
}

.project-wrap1 .project-number-pagination .tab-btn:before, .project-wrap1 .project-number-pagination .tab-btn:after {
  content: '';
  position: absolute;
  height: 155px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  top: 0px;
  left: 50%;
}

.project-wrap1 .project-number-pagination .tab-btn:before {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  background: #D9D9D9;
}

.project-wrap1 .project-number-pagination .tab-btn:nth-child(2) {
  margin-bottom: 0;
}

.project-wrap1 .project-number-pagination .tab-btn:nth-child(2):after {
  display: none;
}

.project-wrap1 .project-number-pagination .tab-btn:first-child {
  margin-top: 0;
}

.project-wrap1 .project-number-pagination .tab-btn span {
  display: block;
  color: var(--title-color);
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: var(--white-color);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.project-wrap1 .project-number-pagination .tab-btn span:after {
  content: '';
  position: absolute;
  inset: -17px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.project-wrap1 .project-number-pagination .tab-btn.active span {
  opacity: 1;
}

.project-slider-area {
  margin-right: -312px;
  /* Hight Resoulation devices */
  /* Extra small devices */
}

@media (min-width: 1922px) {
  .project-slider-area {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .project-slider-area {
    margin-right: 0;
  }
}

.project-slider1 {
  padding-right: 560px;
}

@media (min-width: 1922px) {
  .project-slider1 {
    padding-right: 0;
  }
}

@media (max-width: 1299px) {
  .project-slider1 {
    padding-right: 500px;
  }
}

@media (max-width: 1199px) {
  .project-slider1 {
    padding-right: 580px;
  }
}

@media (max-width: 991px) {
  .project-slider1 {
    padding-right: 500px;
  }
}

@media (max-width: 767px) {
  .project-slider1 {
    padding-right: 400px;
  }
}

@media (max-width: 575px) {
  .project-slider1 {
    padding-right: 0;
  }
}

.project-slider1 .slider-pagination {
  text-align: start;
}

.project-slider1 .slider-pagination .swiper-pagination-bullet {
  background: var(--white-color);
}

.project-slider1 .slider-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.project-slider1 .slider-pagination .swiper-pagination-bullet:hover, .project-slider1 .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color2);
}

.portfolio-card {
  position: relative;
  width: 100%;
}

.portfolio-card .portfolio-img {
  z-index: 2;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

@media (min-width: 768px) {
  .portfolio-card .portfolio-img {
    height: 400px;
  }
}

.portfolio-card .portfolio-img img {
  object-fit: cover;
  height: 100%;
}

.portfolio-card .portfolio-img img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}

.portfolio-card .portfolio-img .portfolio-card-shape {
  background: rgba(28, 45, 55, 0.7);
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
  padding: 25px 50px;
  position: absolute;
  inset: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.portfolio-card .icon-btn {
  --btn-size: 56px;
  line-height: 54px;
  background: var(--theme-color2);
  border-color: var(--theme-color2);
  font-size: 18px;
  position: absolute;
  right: 50%;
  top: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.portfolio-card .icon-btn img {
  width: 22px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.portfolio-card .icon-btn:hover img {
  -webkit-filter: brightness(0) grayscale(9) invert(2);
  filter: brightness(0) grayscale(9) invert(2);
}

.portfolio-card .portfolio-content {
  background-color: transparent;
  z-index: 3;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
  padding-top: 22px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .portfolio-card .portfolio-content {
    padding-top: 28px;
  }
}

.portfolio-card:hover .portfolio-img:after {
  -webkit-animation: imgShine 1s;
  animation: imgShine 1s;
}

.portfolio-card:hover .portfolio-img .portfolio-card-shape {
  opacity: 1;
}

.portfolio-card:hover .portfolio-content {
  opacity: 1;
  visibility: visible;
}

/* Appointment 2---------------------------------- */
.appointment-wrap2 {
  border-radius: 16px;
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--smoke-color4);
}

.appointment-wrap2 .form-title {
  font-weight: 600;
  font-family: var(--body-font);
  font-size: 22px;
  margin-bottom: 26px;
}

@media (max-width: 375px) {
  .appointment-wrap2 {
    padding: 40px 30px;
  }
}

/*------------------- 4.00. Aminities  -------------------*/
/* Aminities 1 ---------------------------------- */
.aminities-slider {
  text-align: center;
  /* Medium devices */
}

@media (max-width: 991px) {
  .aminities-slider {
    margin-bottom: 0;
  }
}

.aminities-slider .slider-pagination.swiper-pagination-progressbar {
  bottom: 8px;
  margin: 70px 40px 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .aminities-slider .slider-pagination.swiper-pagination-progressbar {
    margin: 50px 0 0;
  }
}

.aminities-slider .slider-arrow {
  top: auto;
  bottom: 0px;
  left: 0;
  background: transparent;
  width: auto;
  height: auto;
  line-height: normal;
}

.aminities-slider .slider-arrow.slider-next {
  right: 0;
  left: auto;
}

.aminities-card {
  position: relative;
  text-align: center;
  padding: 44px 20px;
  display: block;
  position: relative;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .aminities-card {
    padding: 34px 20px;
  }
}

.aminities-card:after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--theme-color);
  z-index: -1;
}

.aminities-card .aminities-card-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.aminities-card .aminities-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.aminities-card .aminities-card-icon {
  margin-bottom: 8px;
  position: relative;
}

.aminities-card .aminities-card-icon:after {
  content: '';
  position: relative;
  height: 68px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  margin: 8px auto 0;
}

.aminities-card .aminities-card-icon img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 50px;
  filter: brightness(0) invert(1);
}

.aminities-card .box-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 0;
  font-family: var(--body-font);
}
/* 
.aminities-card:hover:after {
  opacity: 0.6;
} */

.aminities-card:hover .aminities-card-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mr-15 {
  margin-right: 15px;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space {
  padding-bottom: var(--section-space);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space {
    padding-bottom: var(--section-space-mobile);
  }
}

/*=================================
Update 1
==================================*/
/* Home 4 ---------------------------------- */
.hero-4 {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-thumb4-1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
}

@media (min-width: 991px) {
  .hero-thumb4-1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    z-index: -1;
  }
  .hero-4 {
    height: 100vh;
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 2555, 1) 1%, rgba(255, 255, 255, 0) 35%);
    pointer-events: none;
    z-index: 1;
  }
}

.hero-style4 .sub-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  /* padding: 0; */
  margin-bottom: 20px;
}

.hero-style4 .sub-title:before, .hero-style4 .sub-title:after {
  display: none;
}

.hero-style4 .hero-title {
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 16px;
  font-size: 50px;
}

@media (max-width: 991px) {
  .hero-style4 {
    padding: 140px 0 30px;
    text-align: center;
  }
  .hero-thumb4-1 img{
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  .hero-style4 {
    padding: 120px 0 20px;
  }
  .hero-style4 .sub-title {
    font-size: 16px;
  }
}

/* Home 9 ---------------------------------- */

@media (max-width: 1500px) {
  .hero-style9 .property-search-form .form-group:has(i) input {
    padding-left: 25px;
  }
}

@media (max-width: 1199px) {
  .hero-style9 .property-search-form .form-group:has(i) i {
    left: 20px;
  }
  .hero-style9 .property-search-form .form-group:has(i) input {
    padding-left: 50px;
  }
}

/* Service Area 7 ---------------------------------- */
.service-card.style7 {
  border: 1px solid var(--theme-color);
  border-radius: 10px;
  background: var(--white-color);
  padding: 10px 10px 40px;
  text-align: center;
  overflow: hidden;
  z-index: 3;
  position: relative;
  /* height: 220px; */
}

.service-card.style7:hover .service-card-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-card.style7 .service-card-icon {
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-top: 30px;
  padding-bottom: 25px;
}

.service-card.style7 .service-card-icon img {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 60px;
}

.service-card.style7 .box-title {
  margin-top: -0.32em;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: var(--theme-color);
}

/* Project Area 5 ---------------------------------- */
.project-slider5 {
  margin-right: -492px;
  position: relative;
  margin-left: -90px;
}

.project-slider5 .th-slider {
  padding-left: 90px;
  position: relative;
}

.project-slider5 .th-slider:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 90px;
  background: var(--white-color);
  left: 0px;
  top: 0;
  z-index: 1;
}

@media (min-width: 1922px) {
  .project-slider5 {
    margin-left: 0;
  }
  .project-slider5 .th-slider {
    padding-left: 0;
  }
  .project-slider5 .th-slider:after {
    display: none;
  }
}

@media (max-width: 1500px) {
  .project-slider5 {
    margin-right: 0;
  }
}

.project-slider5 .slider-pagination-progressbar2 {
  height: calc(100% - 64px);
  z-index: 2;
  top: 50%;
  left: 8px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  /* Hight Resoulation devices */
  /* Extra large devices */
}

@media (min-width: 1922px) {
  .project-slider5 .slider-pagination-progressbar2 {
    display: none;
  }
}

@media (max-width: 1500px) {
  .project-slider5 .slider-pagination-progressbar2 {
    display: none;
  }
}

.project-slider5 .slider-pagination2 {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  /* Hight Resoulation devices */
}

.project-slider5 .slider-pagination2 .divider {
  display: none;
}

@media (min-width: 1922px) {
  .project-slider5 .slider-pagination2 {
    display: none;
  }
}

.project-slider5 .slider-pagination2 span {
  display: block;
  width: 100%;
  line-height: 1;
  color: var(--theme-color);
}

.project-slider5 .slider-pagination {
  display: none;
  /* Hight Resoulation devices */
  /* Extra large devices */
  /* Small devices */
}

@media (min-width: 1922px) {
  .project-slider5 .slider-pagination {
    display: block;
  }
}

@media (max-width: 1500px) {
  .project-slider5 .slider-pagination {
    display: block;
  }
}

@media (max-width: 767px) {
  .project-slider5 .slider-pagination {
    margin-top: 40px;
  }
}

.portfolio-card.style5 .portfolio-img {
  border-radius: 30px;
  overflow: hidden;
}

/* hero area 13 ---------------------------------- */

@media (max-width: 1199px) {
  .hero-13 .property-search-form .form-group:has(> i) input {
    padding-left: 25px;
  }
}

/*aminities-card2********************/
.aminities-card.style2 {
  border-radius: 50%;
  overflow: hidden;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.aminities-card.style2:after {
  background: var(--smoke-color4);
}

.aminities-card.style2 .aminities-card-img {
  border-radius: 50%;
}

.aminities-card.style2 .aminities-card-icon img {
  -webkit-filter: brightness(0.1);
  filter: brightness(0.1);
}

.aminities-card.style2 .aminities-card-icon:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--theme-color);
  opacity: 0.2;
}

.aminities-card.style2 .box-title {
  color: var(--theme-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.aminities-card.style2:hover:after {
  background: var(--theme-color);
  opacity: 0.7;
}

.aminities-card.style2:hover .aminities-card-icon img {
  -webkit-filter: brightness(9);
  filter: brightness(9);
}

.aminities-card.style2:hover .aminities-card-icon:after {
  background: var(--theme-color2);
  opacity: 1;
}

.aminities-card.style2:hover .box-title {
  color: var(--white-color);
}

/*------------------- Global -------------------*/
/* rtl Support */

[dir="rtl"] .main-menu ul li:has(.sub-menu) > a:after, [dir="rtl"] .main-menu ul li:has(.mega-menu) > a:after {
  margin-right: 6px;
  margin-left: 0;
}

@media (max-width: 1500px) {
  [dir="rtl"] .hero-style9 .property-search-form .form-group:has(i) input {
    padding-right: 25px;
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  [dir="rtl"] .hero-style9 .property-search-form .form-group:has(i) i {
    right: 20px;
  }
  [dir="rtl"] .hero-style9 .property-search-form .form-group:has(i) input {
    padding-right: 50px;
  }
}

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

.about-section {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  position: relative;
}
.about-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}

.portfolio-content .box-title {
  font-size: 26px;
}

.portfolio-content p {
  color: #fff;
  font-size: 18px;
}

.cover-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.tp-contact-main-icon {
  width: 50px;
  height: 50px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 50px;
  border-radius: 100px;
  flex-shrink: 0;
}

.tp-contact-main-info a,
.tp-contact-main-info p {
  color: var(--title-color);
}
.tp-contact-main-info {
  padding: 40px 25px;
}
.tp-contact-main-info h3 {
  font-size: 22px;
  margin-bottom: 25px;
}
.fs-12 {
  font-size: 12px;
}

.w-25 {
  width: 25px !important;
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 5px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
  font-size: 20px;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us svg {
  width: 45px !important;
  margin-right: 15px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0 0 0 / .6)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  /* background-color: #fff;
  padding: 25px; */
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width: 1200px) {
  .popup-content {
    width: 40%;
  }
}

@media(max-width: 547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #333;
  z-index: 99;
  float: right;
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 15px;
  right: 18px;
}
.close:hover{
  color: #000;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.iti {
  width: 100%;
}
.w-20{
  width: 20px !important;
}

@media (max-width: 575px) {
  .th-widget-contact {
    gap: 15px;
  }
  .hero-title {
    font-size: 24px !important;
  }
  .hero-text{
    font-size: 18px !important;
  }
  h2 {
    font-size: 22px !important;
    line-height: 1.3;
  }
  /* .img-box {
    margin-bottom: 25px;
  } */
  .appointment-wrap2 .form-title {
    margin-bottom: 12px !important;
  }
  .xs-pb-0 {
    padding-bottom: 0 !important;
  }
}


/* .payment-plan {
  text-align: center;
  font-family: sans-serif;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.circle {
  background: #000;
  color: white;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover .circle {
  transform: scale(1.1);
  background: gold;
  color: black;
} */

.bg-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


.hero-video-wrap {
  --icon-size: 116px;
  /* Medium devices */
}

.hero-video-wrap .play-btn i:hover {
  background: var(--white-color);
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .hero-video-wrap {
    padding-bottom: 120px;
  }
}



.sticky-video-expand {
  position: relative;
}

/* Container that sticks and expands */
@media (min-width: 768px) {
  .video-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    overflow: hidden;
    margin-top: -50px;
  }
  /* Inner video wrapper (starts at 1000px) */
  .video-inner {
    width: 1000px;
    height: 80vh;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .video-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 25px;
    margin: 15px; */
  }
}

.video-inner video{
  width: 100%;
}

.why-sec2{
  background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.border-radius-25 { 
  border-radius: 25px;
}



/* Hero Section */
.th-hero-wrapper.hero-3 {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures video covers the whole area */
  z-index: -2;
}

/* Overlay Gradient for readability */
.th-hero-wrapper.hero-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  ); */
  z-index: -1;
}

.th-hero-wrapper.hero-3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #000 0%, #fff0 100%);
  z-index: 1;
  pointer-events: none;
}

/* Big Background Text */
/* .hero-big-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 8px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
} */

/* Container Alignment */
.hero-style1 {
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Hero Title */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title {
  display: block;
  color: #ffffff;
  /* font-size: 46px; */
}

/* Hero Paragraph */
.hero-text {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.m-0-auto {
  margin:  0 auto;
}

.hero-style1 ul li{
  color: #fff;
}

.hero-style1 ul li img {
  width: 35px;
  filter: brightness(1) invert(1);
  margin-right: 10px;
}
.hero-style1 ul {
  display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
}

.hero-3 .header-logo img {
  position: relative;
  z-index: 9;
}

.mt-3 {
  margin-top: 30px !important;
}