@charset "UTF-8";
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #BE9F4E;
  --theme-color2: #0B1325;
  --title-color: #212529;
  --body-color: #212529;
  --smoke-color: #FFF6EE;
  --smoke-color2: #F5F5F5;
  --black-color: #000000;
  --black-color2: #121212;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #bdbdbd;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --dark-color: #021526;
  --title-font: "Montserrat", sans-serif;
  --body-font: "Montserrat", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1320px;
  --container-gutters: 30px;
  --section-space: 80px;
  --section-space-mobile: 60px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

/*------------------- 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;
  background-color: var(--smoke-color2);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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:empty {
  display: none;
}

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

h3 a,
p a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

h1 {
  font-size: 84px;
  line-height: 1.119;
}

h2 {
  font-size: 42px;
  line-height: 1.185;
}

h3 {
  font-size: 42px;
  line-height: 1.417;
}

h4 {
  font-size: 36px;
  line-height: 1.27;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  h1 {
    font-size: 70px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  h1 {
    font-size: 32px;
  }
}

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

/* Hight Resoulation devices */

@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-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

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

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

@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
}
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
textarea,
input {
  height: 50px;
  padding: 0 25px 0 0;
  padding-right: 45px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff !important;
  border-radius: 0;
  font-size: 14px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: transparent;
}

select:focus,
.form-control:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--th-border-color);
  background-color: transparent;
}

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

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

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

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

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

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

select::-ms-input-placeholder, .form-control::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: #fff;
}
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

textarea.form-control, textarea {
  min-height: 110px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

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

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

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

.form-group > i.fa-chevron-down {
  width: 17px;
  /* background-color: var(--smoke-color2); */
}

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

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

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

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

.swiper-fade .swiper-slide-prev {
  opacity: 0;
}

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

.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  margin: 5px 7px;
  opacity: 1;
  background-color: var(--theme-color);
  position: relative;
  cursor: pointer;
}

.swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid transparent;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
  border-radius: inherit;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

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

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 4px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  margin: 0px;
  opacity: 1;
  background-color: var(--theme-color);
  position: relative;
  cursor: pointer;
  width: 20%;
  border-radius: 0;
  background-color: var(--th-border-color);
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet::before {
  inset: 0;
  border: 2px solid var(--theme-color);
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  top: 50%;
  border: none;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 56px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 56px) / -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(--white-color);
}

.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);
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .arrow-wrap .slider-arrow {
    display: none;
  }
}

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

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

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

/* 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;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 40px 0 0 0;
  }
  .icon-box .slider-arrow {
    margin-right: 0;
  }
}

.default.show-all {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .default.show-all {
    display: initial;
  }
}
/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  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: 16px 25px;
  min-width: 170px;
  border-radius: 30px;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.th-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  width: 0%;
  right: 0;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.th-btn svg {
  /* font-size: 0.95em; */
  width: 20px;
  margin-left: 6px;
  color: inherit;
  transition: color 0.4s ease-out;
}
.th-btn i {
  font-size: 0.95em;
  margin-left: 6px;
}

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

.th-btn:hover::before {
  width: 51%;
  border-radius: 0;
}

.th-btn:hover::after {
  width: 50%;
  border-radius: 0;
}

.th-btn.style4 {
  color: var(--white-color);
  box-shadow: none;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.th-btn.style4:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn.style4:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  width: 0%;
  right: 0;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn.style4:hover {
  box-shadow: none;
}

.th-btn.style4:hover::before {
  width: 50%;
  border-radius: 0;
}

.th-btn.style4:hover::after {
  width: 50%;
  border-radius: 0;
}

.link-btn {
  font-weight: 600;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-top: 20px;
  text-transform: capitalize;
  color: var(--title-color);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.link-btn:hover {
  color: var(--theme-color);
}

.link-btn:hover::before {
  width: 0%;
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 11px);
  margin-top: -0.2em;
}

.sub-title {
  font-family: var(--title-font);
  color: var(--theme-color);
  margin-bottom: 25px;
  position: relative;
  margin-top: -0.4em;
  padding-top: 0;
  letter-spacing: normal;
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.sub-title:has(img) {
  margin-top: 0;
}

/* Large devices */

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

.box-title a {
  color: inherit;
}

.box-title a:hover {
  color: var(--theme-color);
}

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

.title-area .sec-title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
}
.title-area h3.sec-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
}

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

/*------------------- 3.4. Common -------------------*/
.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-mockup.z-index-3 {
  z-index: 3;
  pointer-events: none;
  filter: invert(1);
}

.shape-mockup.z-index-1 {
  z-index: 1;
  pointer-events: none;
}

.shape-mockup .svg-img {
  height: 110px;
  width: 110px;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

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

.z-index-2 {
  position: relative;
  z-index: 2;
}

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

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/*------------------- 4.00. Color Scheme -------------------*/
/* color scheme ---------------------------------- */

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

.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.box-text {
  margin-bottom: -0.5em;
}

.btn-group {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .btn-group {
    gap: 20px;
  }
}

@media (max-width: 375px) {
  .btn-group {
    display: block;
  }
}
/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

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

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

[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

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

.text-white {
  color: var(--white-color) !important;
}
/*------------------- 3.10. Animation -------------------*/

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

/*=================================
Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/

.wp-block-archives a:not(:hover) {
  color: inherit;
}
/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.th-header .menu-area {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}

.header-logo {
  max-width: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Header layout 1 ---------------------------------- */

/* Extra small devices */
@media (max-width: 575px) {
  .header-logo img {
    max-width: 100px;
  }
}
/* Header 1 ---------------------------------- */

/* Header 2 ---------------------------------- */
.header-layout2 {
  background-color: var(--title-color);
  border-bottom: 1px solid #FFFFFF14;
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  --body-color: #788094;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.copyright-wrap .copyright-text {
  color: var(--title-color);
  line-height: 1.4;
}

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

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

.footer-layout1 .copyright-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
  /* background-color: var(--theme-color2); */
}
/* footer 2 ---------------------------------- */
.footer-wrapper.footer-layout1 {
  overflow: initial;
}

.info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box_icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  line-height: 56px;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--theme-color);
  border-radius: 30px;
  text-align: center;
  margin-right: 15px;
  border: 0;
}

.info-box_text {
  display: block;
  color: #fff;
  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: #fff;
}

.info-box_link:hover {
  color: var(--theme-color);
}
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.7. Comments  -------------------*/

.th-comment-form:has(#wp-temp-form-div),
.th-comments-wrap:has(#wp-temp-form-div) {
  padding: 0;
  box-shadow: none;
  display: none;
}

ul.comment-list:has(> .th-comment-item ~ .th-comment-item):first-child > .th-post-comment {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--th-border-color);
}

ul.comment-list .th-comment-item:has(.children) .th-post-comment {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--th-border-color);
}
/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Hero 1 ---------------------------------- */

.hero-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: -0.2em;
  color: var(--white-color);
  font-family: var(--title-font);
}

@media (max-width: 1399px) {
  .hero-title {
    font-size: 77px;
  }
}

.client-group-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
}

@media (max-width: 1399px) {
  .client-group-wrap {
    left: 310px;
  }
}

@media (max-width: 1299px) {
  .client-group-wrap {
    bottom: 2px;
    left: 280px;
  }
}

@media (max-width: 1199px) {
  .client-group-wrap {
    position: inherit;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .client-group-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .client-group-wrap {
    margin-top: 15px;
    gap: 5px;
  }
}

.client-group-wrap__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 22px;
}

@media (max-width: 1199px) {
  .client-group-wrap__content {
    margin-top: 13px;
  }
}

@media (max-width: 991px) {
  .client-group-wrap__content {
    -webkit-box-flex: initial;
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}

@media (max-width: 575px) {
  .client-group-wrap__content {
    margin-top: 0;
  }
}

.client-group-wrap__box-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

.client-group-wrap__box-review {
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  color: var(--yellow-color);
  gap: 1px;
}

.client-group-wrap__box-review p {
  color: var(--body-color);
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1;
  padding-left: 5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.client-group-wrap__box-review span {
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0px;
  font-family: var(--body-font);
}
/* Extra small devices */
@media (max-width: 330px) {
  .hero-title {
    font-size: 29px;
  }
}
/* Hero 3 -------------------------------------*/
.th-hero-wrapper.hero-3 {
  padding-top: 250px;
  padding-bottom: 60px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: linear-gradient(270deg, #004870 0%, #0A2947 100%); */
}
.th-hero-wrapper.hero-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0B1325 0%, #fff0 150%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1499px) {
  .th-hero-wrapper.hero-3 {
    padding-top: 220px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1399px) {
  .th-hero-wrapper.hero-3 {
    padding-top: 160px;
    padding-bottom: 40px;
  }
}
.hero-style3 {
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-style3 {
    padding: 80px 0;
  }
  .th-hero-wrapper.hero-3 {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .th-hero-wrapper.hero-3 {
    padding-top: 100px;
    padding-bottom: 10px;
  }
  .checklist li:not(:last-child) {
    margin: 0 !important;
  }
}

.hero-style3 .hero-title {
  margin-bottom: 21px; 
}

@media (max-width: 1299px) {
  .hero-style3 .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {
  .hero-style3 .hero-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .hero-style3 .hero-title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style3 .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .hero-style3 .hero-title {
    font-size: 28px;
  }
}

.hero-style3 .hero-text {
  max-width: 600px;
  color: rgba(255, 255, 255, 1);
  /* color: var(--theme-color); */
  margin-bottom: 20px;
}

@media (max-width: 1299px) {
  .hero-style3 .hero-text {
    max-width: 470px;
  }
}

@media (max-width: 991px) {
  .hero-style3 .hero-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px;
  }
}

.hero-style3 .client-group-wrap {
  position: static;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.hero-style3 .client-group-wrap .client-group-wrap__content {
  margin-top: -2px;
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style3 {
    padding: 40px 0 25px;
  }
  .hero-style3 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-style3 .client-group-wrap {
    margin-top: 36px;
  }
}
/*------------------- 4.00. Contact  -------------------*/
/* Contact Page ---------------------------------- */

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* background: rgba(0, 0, 0, 0.12); */
  padding: 42px;
  border-radius: 10px;
}

.contact-form .sec-title {
  margin-bottom: 5px;
  font-size: 28px;
}

@media (max-width: 991px) {
  .contact-form {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .contact-form {
    padding: 40px 20px;
  }
}

/* Contact 1 ---------------------------------- */
@media (max-width: 375px) {
  .contact-from-1-wrap {
    padding: 10px;
  }
}

.contact-from-1-wrap .info-box {
  /* max-width: 270px; */
  margin-bottom: 28px;
}

.contact-from-1-wrap .info-box_icon {
  background: #fff;
  color: var(--theme-color2);
}

.contact-from-1-wrap .info-box .info-contnt {
  margin-top: -.35em;
}

.contact-from-1-wrap .info-box .info-contnt .footer-info-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--theme-color);
}

.info-box_icon i {
  -webkit-transition: .4s;
  transition: .4s;
}

.info-box:hover .info-box_icon i {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.contact-img {
  margin-top: 45px;
  border-radius: 24px;
}
.contact-img iframe {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .contact-img {
    margin-top: 40px;
  }
}

/* About 3 ---------------------------------- */
.about-img-box3__counter {
  width: 280px;
  height: 274px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 20px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-img-box3__counter {
    width: inherit;
    height: inherit;
  }
}

.about-img-box3__counter h1 {
  color: var(--white-color);
  font-size: 70px;
}

@media (max-width: 1199px) {
  .about-img-box3__counter h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about-img-box3__counter h1 {
    font-size: 30px;
  }
}

.about-img-box3__counter h1 .counter-number {
  font-size: 84px;
  padding-right: 6px;
}

@media (max-width: 1199px) {
  .about-img-box3__counter h1 .counter-number {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .about-img-box3__counter h1 .counter-number {
    font-size: 40px;
  }
}

.about-img-box3__counter .box-title {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 500;
  /* Small devices */
}

@media (max-width: 767px) {
  .about-img-box3__counter .box-title {
    font-size: 20px;
  }
}

/*------------------- 4.00. Team  -------------------*/
/*team 1 ---------------------------------- */

.team-card .team-content-hover .team-social .th-social a::hover {
  color: var(--theme-color2);
}
/*------------------- 4.00. Testimonial  -------------------*/
/* Testimonial Card ---------------------------------- */

.testi-block {
  border-radius: 24px 50px 24px 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
  -webkit-transition: .4s;
  transition: .4s;
  padding: 30px;
  background-color: var(--white-color);
  border-bottom: 6px solid var(--theme-color);
  position: relative;
}

.testi-block:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
@media (max-width: 991px) {
  .testi-block .box-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .testi-block {
    padding: 25px;
  }
}

.testi-block-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.testi-block-top .box-img {
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
.testi-block-top .box-img img {
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
.testi-block-top .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.testi-block-top .content .box-title {
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .testi-block-top .content .box-title {
    font-size: 20px;
  }
}
/*------------------- 4.00. Brand  -------------------*/
/* Brand 1 ---------------------------------- */

.brand-area-1 {
  padding: 60px 0;
  /* background-color: #F5F5F5; */
}

.brand-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 26px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
  border: 1px solid rgba(209, 196, 143, 0.25);
  transition: all .3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  max-height: 80px;
}

.brand-box img {
  object-fit: cover;
  padding: 0 5px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.brand-box:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
/*------------------- 4.00. Simple Sections  -------------------*/
.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.checklist li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.checklist li > i {
  color: var(--theme-color);
  font-size: 16px;
  line-height: 28px;
}

.checklist li:not(:last-child) {
  margin-bottom: 10px;
}
/*------------------- 4.00. Faq -------------------*/
/* Faq 1 ---------------------------------- */

.accordion-card:has(.show) {
  border-radius: 30px;
  background: var(--theme-color);
}

.accordion-card:has(.show) .accordion-button {
  color: var(--white-color);
}

.accordion-card:has(.show) .faq-text {
  color: var(--white-color);
}

/*------------------- 4.00. Service -------------------*/
/* Service Card ---------------------------------- */
.service-card {
  position: relative;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.04);
  background: var(--smoke-color2);
  border-radius: 24px;
  padding: 35px 30px;
  padding-bottom: 26px;
  -webkit-transition: .4s;
  transition: .4s;
  border-bottom: 6px solid var(--theme-color);
  /* Medium devices */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme-color2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 24px 24px 20px 20px;
}
/* Service card — circle icon: converts black images to #b68c5a */
.service-card .box-icon img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(42%) saturate(550%) hue-rotate(2deg) brightness(98%);
}
.service-card:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover .box-icon {
  background: var(--theme-color);
}

.service-card:hover .box-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-card:hover .box-content .box-title {
  color: var(--white-color);
}

.service-card:hover .box-content .box-text {
  color: var(--white-color);
}

.service-card:hover .link-btn {
  color: var(--white-color);
}

.service-card:hover .link-btn:hover {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .service-card {
    padding: 20px;
  }
}

.service-card .box-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: var(--white-color);
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card .box-icon img {
  width: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.service-card .box-content .box-title {
  margin-bottom: 15px;
}

.service-card .box-content .box-text {
  margin-bottom: 15px;
  -webkit-transition: .4s;
  transition: .4s;
}
/* Case Studies Details  -------------------------------*/

.checklist.style2 li {
  font-size: 18px;
  color: #fff;
}
.pb-15 {
  padding-bottom: 15px;
}
.mt-5 {
  margin-top: 5px;
}
.mb-25 {
  margin-bottom: 25px;
}

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

.mb-40 {
  margin-bottom: 40px;
}
.ml-45 {
  margin-left: 45px;
}
.space {
  padding-top: var(--section-space);
}

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

/* Medium devices */
@media (max-width: 991px) {
  .space {
    padding-top: var(--section-space-mobile);
  }
  .space {
    padding-bottom: var(--section-space-mobile);
  }
}
/*cta style 1---------------------------- */
.cta-overlay {
  position: relative;
  /* background-attachment: fixed; */
}

.cta-overlay:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  border-radius: 24px;
  background-color: #0B1325;
  opacity: .6;
  /* background: linear-gradient(90deg, #0B1325 0%, #fff0 150%); */
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-title {
  font-weight: 500;
  font-size: 35px;
  line-height: 1.25;
  text-transform: capitalize;
  margin-top: -14px;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .cta-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .cta-title {
    font-size: 25px;
  }
}
/* About 6 ---------------------------------- */
.about-6-content .sec-text {
  margin-right: 30px;
  margin-bottom: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-6-content .sec-text {
    margin-right: 0;
  }
}
.about-6-content .sec-title {
}
@media (max-width: 1299px) {
  .about-6-content .sec-title {
    font-size: 43px;
  }
}

@media (max-width: 1199px) {
  .about-6-content .sec-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .about-6-content .sec-title {
    font-size: 24px;
  }
}
.team-card .team-content-hover .team-social .th-social a::hover {
  color: var(--theme-color2);
}
/* Header layout 6 ---------------------------------- */
.header-layout6 {
  position: absolute;
  width: 100%;
  top: 5px;
  background: none;
  border: 0;
  padding: 0 30px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .header-layout6 {
    top: 0;
    padding: 0 10px;
  }
}
/* Service  6 ---------------------------------- */
.style-6 {
  position: relative;
}
/* About 7 ---------------------------------- */
.about7-thumb-box {
  position: relative;
}
.about7-left {
  margin-left: 20px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .about7-left {
    margin-left: 0;
  }
}

.img-box7 {
  position: relative;
}

.img-box7 img {
  width: 100%;
}

.img-box-border {
  position: absolute;
  inset: 0;
  background-color: var(--theme-color);
}

.checklist.style7 li {
  gap: 20px;
}
/* Testimonial 6 ---------------------------------- */
@media (max-width: 1199px) {
  .testi-6-wrapper {
    margin-left: 0;
  }
}

.testi-6-left {
  margin-left: 50px;
  position: absolute;
  height: 100%;
  display: block;
  /* Large devices */
}

.testi-6-left .border-bottom {
  border-bottom: 1px solid var(--th-border-color);
  padding-bottom: 40px;
  margin-bottom: 25px;
}

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

.testi-6-content {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .testi-6-content {
    margin-bottom: 30px;
  }
}

.testi-6-content .sec-title {
}

@media (max-width: 1299px) {
  .testi-6-content .sec-title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .testi-6-content .sec-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .testi-6-content .sec-title {
    font-size: 33px;
  }
}

.testi-6-content .testi-review-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: var(--title-color);
  margin-bottom: 13px;
}

.testi-6-content .testi-review-content span {
  color: #FBA018;
  margin-bottom: 6px;
  display: inline-block;
}

.testi-6-content .testi-review-content:not(:last-child) {
  margin-right: 140px;
}

@media (max-width: 1199px) {
  .testi-6-content .testi-review-content:not(:last-child) {
    margin-right: 90px;
  }
}

@media (max-width: 575px) {
  .testi-6-content .testi-review-content:not(:last-child) {
    margin-right: 45px;
  }
}

.style-6.testi-block {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  box-shadow: none;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 40px;
  background: var(--white-color);
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  margin-bottom: 20px;
  /* Extra small devices */
}

.style-6.testi-block:hover {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 575px) {
  .style-6.testi-block {
    padding: 20px;
  }
}

.style-6 .testi-block-top {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .style-6 .testi-block-top {
    margin-bottom: 10px;
  }
}

.style-6 .testi-block-top .box-img {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .style-6 .testi-block-top .box-img {
    margin-bottom: 20px;
  }
}
/* About 8 ---------------------------------- */
@media (max-width: 1299px) {
  .about-8-title-box .sec-title,
  .title-area .sec-title {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .about-8-title-box .sec-title,
  .title-area .sec-title {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .about-8-title-box .sec-title,
  .title-area .sec-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .about-8-title-box .sec-title,
  .title-area .sec-title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .about-8-title-box .sec-title {
    font-size: 22px !important;
  }
}
.img-box8 {
  position: relative;
}

.img-box8 .img1 img {
  border-radius: 24px;
  width: 280px;
}

@media (max-width: 1199px) {
  .img-box8 .img1 img {
    width: 100%;
  }
}

.img-box8 .img2 {
  position: absolute;
  right: 10px;
  top: 49%;
}

@media (max-width: 1199px) {
  .img-box8 .img2 {
    width: 100%;
    right: auto;
    top: auto;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .img-box8 .img2 {
    position: static;
  }
}

.img-box8 .img2 img {
  border-radius: 24px;
  width: 330px;
}

@media (max-width: 1199px) {
  .img-box8 .img2 img {
    width: 100%;
    width: 100%;
    right: auto;
    left: 0;
    bottom: 0;
  }
}

.img-box8 .about-img-box3__counter {
  width: 180px;
  height: 148px;
  margin-right: 30px;
  margin-top: 20px;
}

@media (max-width: 1299px) {
  .img-box8 .about-img-box3__counter {
    width: 215px;
    height: 150px;
  }
}

@media (max-width: 1199px) {
  .img-box8 .about-img-box3__counter {
    width: 100%;
    height: 120px;
    margin: 0;
  }
}

.img-box8 .about-img-box3__counter .counter-number {
  font-size: 64px;
  padding-right: 6px;
}

.img-box8 .about-img-box3__counter h1 {
  margin-top: -15px;
}

@media (max-width: 1199px) {
  .img-box8 .about-img-box3__counter h1 {
    margin-top: -22px;
  }
}

.img-box8 .about-img-box3__counter .box-title {
  font-size: 18px;
}
/* Service 9 ---------------------------------- */
.service-card.style-3 {
  padding: 30px;
  background: var(--white-color);
  border: 1px solid var(--th-border-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card.style-3::before, .service-card.style-3::after {
  position: absolute;
  width: 97%;
  height: 97%;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  content: "";
  display: inline-block;
  border: 1px solid var(--th-border-color);
  background: none;
  border-radius: 24px;
  z-index: -1;
  border-radius: 24px 24px 20px 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card.style-3::after {
  bottom: -20px;
}

.service-card.style-3:hover {
  border: 1px solid var(--theme-color2);
  background: var(--theme-color2);
}

.service-card.style-3:hover .box-icon {
  background: none;
}

.service-card.style-3:hover::before, .service-card.style-3:hover::after {
  border: 1px solid var(--theme-color2);
  z-index: -1;
}

.service-card.style-3 .box-title {
  margin-bottom: 7px;
}

.service-card.style-3 .box-icon {
  background: none;
  box-shadow: none;
  margin-bottom: 25px;
}

.service-slider3 {
  position: relative;
  z-index: 2;
  padding-bottom: 25px;
}

.service-slider3 .swiper-pagination-bullets {
  position: absolute;
  top: auto;
  bottom: 16px;
  z-index: 2;
}

.service-slider3 .swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  background-color: #A5A8A8;
}

.service-slider3 .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.service-slider3 .swiper-pagination-bullets .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  border: 2px solid var(--theme-color);
}
/* Faq 1 ---------------------------------- */

.accordion-card:has(.show) {
  border-radius: 24px;
  background: var(--theme-color);
}

.accordion-card:has(.show) .accordion-button {
  color: var(--white-color);
}

.accordion-card:has(.show) .faq-text {
  color: var(--white-color);
}
/*------------------- rtl -------------------*/
/*------------------- Global -------------------*/

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

[dir="rtl"] .main-menu ul li:has(.mega-menu) > a:hover:after,
[dir="rtl"] .main-menu ul li:has(.sub-menu) > a:hover:after {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

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

.icon-box {
  position: relative;
  border: 1px solid #161A2D1A;
  background-color: var(--theme-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}
.about-contact-box-content:hover a {
  color: var(--theme-color);
}
.about-contact-box-content h3 a {
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
}
.about-contact-box-content h3 {
  font-size: 20px;
  margin: 0;
}
.about-contact-box-content p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}
.gap-20 {
  gap: 20px;
}
.speak-expert-sec {
  position: relative;
}
.speak-expert-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0B1325;
  z-index: 1;
  /* opacity: 0.8; */
}
.z-index-9 {
  z-index: 9;
}

.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;
  color: #222;
}

@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: hidden;
  background-color: rgb(0 0 0 / .3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background-color: var(--theme-color2);
  /* padding: 25px; */
  box-shadow: rgba(255, 255, 255, 0.2) 0px 2px 8px 0px;
}

@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: #ddd;
  z-index: 99;
  float: right;
  font-size: 40px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 15px;
  right: 20px;
}
.close:hover{
  color: #fff;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
  text-align: left;
}
.iti {
  width: 100%;
}
.iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}
.iti__arrow {
  border-top-color: #fff !important;
}
@media (max-width: 575px) {
  .th-header .menu-area {
    padding: 0 15px;
  }
  .th-header .icon-box {
    margin: 0;
  }
}
.banner__avatars {
  display: flex;
  align-items: center;
}

.hero-checklist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  padding: 0;
  list-style: none;
}

.hero-checklist li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 15px !important;
  border-radius: 100px;
  font-size: 15px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  height: 44px;
}

.hero-checklist li:hover {
  background: rgba(190, 159, 78, 0.2);
  border-color: var(--theme-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@media (max-width: 991px) {
  .hero-checklist ul {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-checklist ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-checklist li {
    width: 100%;
    max-width: 300px;
    height: auto !important
  }
}

.about-2-bottom {
  color: var(--theme-color2);
  font-weight: 500;
}
.testi-block-top .content i {
  color: var(--yellow-color);
  font-size: 13px;
}
.testi-block-top .box-img img {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin-right: 15px;
}

.popup-content .contact-form .sec-title {
  font-size: 24px;
} 
#service-sec .swiper-slide {
  height: auto;
  padding-bottom: 15px; /* Room for the 3D card bottom lines */
}
#service-sec .th-slider {
  padding-bottom: 60px; /* Push dots down so they don't overlap cards */
}
#service-sec .slider-pagination {
  bottom: 15px !important; /* Move dots up away from the clipping edge */
}
#service-sec {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}