@charset "UTF-8";

/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";

/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #b2a255;
  --theme-color2: #004764;
  --title-color: #000D44;
  --body-color: #788094;
  --smoke-color: #F5F7FA;
  --smoke-color2: #F5F8FD;
  --black-color: #000000;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #bdbdbd;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #D8DDE1;
  --title-font: 'Outfit', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1224px;
  --container-gutters: 24px;
  --section-space: 80px;
  --section-space-mobile: 50px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
  url('../fonts/DMSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
  url('../fonts/DMSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/*------------------- 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;
  -webkit-font-smoothing: antialiased;
}

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]),
video {
  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;
}

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;
  margin: 0 0 15px 0;
}

h1 {
  font-size: 64px;
  line-height: 1.156;
}

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

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

h4 {
  font-size: 30px;
  line-height: 1.333;
}

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

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

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

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

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

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

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

/* Medium devices */

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

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

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

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

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

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

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

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

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

.form-select,
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: 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: 19px;
  font-size: 16px;
  color: var(--body-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;
}

/* Firefox */

.form-messages {
  display: none;
}

/*------------------- 2.4. Slick Slider -------------------*/

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

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

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--smoke-color);
  color: var(--title-color);
  position: absolute;
  top: 50%;
  border: 1px solid var(--th-border-color);
  left: var(--pos-x, -120px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 55px);
  font-size: var(--icon-font-size, 20px);
  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;
  visibility: visible;
  opacity: 1;
}

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

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

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

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--title-color);
  box-shadow: 0px 3px 15px rgba(174, 211, 195, 0.7);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 21px 30px;
  min-width: 170px;
  border-radius: 30px;
}

.th-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.th-btn.style4 {
  background-color: var(--theme-color);
  box-shadow: 0px 3px 15px #B0BAD3;
  color: var(--white-color);
}

.th-btn.shadow-1 {
  box-shadow: 0px 3px 12px rgba(33, 50, 93, 0.5);
}

.th-btn.btn-fw {
  width: 100%;
  box-shadow: 0px 3px 15px rgba(174, 211, 195, 0.7);
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 54px);
  font-size: var(--btn-font-size, 20px);
  background-color: var(--icon-bg, #fff);
  color: var(--title-color);
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--th-border-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}

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

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

.sub-title {
  display: block;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-color);
  margin-bottom: 24px;
  padding-top: 5px;
  text-transform: uppercase;
  line-height: 28px;
}

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

.box-title {
  font-size: 24px;
  line-height: 1.27;
  font-weight: 600;
  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: 24px;
}

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

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

/* Small devices */

/* Extra small devices */

/* Extra small devices */

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

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

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

.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: 30px;
  /* Small devices */
}

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

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

/*------------------- 3.7. Background -------------------*/

[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.9. Overlay -------------------*/

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
  animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

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

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

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

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

.fancy-animation {
  -webkit-animation: morph 8s ease-in-out infinite;
  animation: morph 8s ease-in-out infinite;
}

@-webkit-keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
  animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.movingCar {
  -webkit-animation: movingCar 25s linear infinite;
  animation: movingCar 25s linear infinite;
}

@-webkit-keyframes movingCar {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%));
    transform: translateX(calc(100vw*-1 + 108%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
    transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
    transform: translateX(0) rotateY(180deg);
  }
}

@keyframes movingCar {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%));
    transform: translateX(calc(100vw*-1 + 108%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
    transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
    transform: translateX(0) rotateY(180deg);
  }
}

.moving {
  -webkit-animation: moving 8s linear infinite;
  animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

.spin {
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}

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

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

.bg-color-ani,
.color-animate {
  -webkit-animation: bgColor 6s linear infinite;
  animation: bgColor 6s linear infinite;
}

@-webkit-keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}

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

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

.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color);
  position: relative;
  border-radius: 20px;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--title-font);
  line-height: 1em;
  padding-bottom: 20px;
  margin: -0.12em 0 38px 0;
}

.widget_title:after, .widget_title:before {
  content: '';
  height: 3px;
  width: 100%;
  background-color: var(--th-border-color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 99px;
}

.widget_title:after {
  background-color: var(--theme-color);
  width: 30px;
}

/* Medium Large devices */

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 28px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 0;
    border-radius: 10px;
    margin-bottom: 0;
  }
  
}
.footer-widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  font-weight: 500;
  text-transform: capitalize;
  margin: -0.12em 0 38px 0;
  padding: 0 0 20px 0;
}

.footer-widget .widget_title:before {
  display: none;
}

.footer-widget .widget_title:after {
  border-radius: 10px;
  height: 2px;
  width: 92px;
  background-color: transparent;
  background-image: -webkit-linear-gradient(left, var(--theme-color2), transparent);
  background-image: linear-gradient(to right, var(--theme-color2), transparent);
}

.footer-text {
  margin-top: -0.5em;
  margin-bottom: 16px;
}

/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }
}

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

.th-header .icon-btn {
  border-radius: 99px;
}

.th-header .menu-area {
  position: relative;
  z-index: 2;
}

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-logo img,
.footer-logo img{
  width: 150px;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  font-size: 19px;
  margin-bottom: 6px;
}

.header-links li:last-child {
  margin-right: 0;
}

.header-links li,
.header-links a {
  color: rgba(255, 255, 255, 1);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links b {
  font-weight: 500;
  margin-right: 2px;
}

.header-links .icon-btn {
  --btn-size: 36px;
  line-height: 34px;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--white-color);
  font-size: 16px;
  margin-right: 8px;
}

/* Header 1 ---------------------------------- */
.header-layout1 {
  position: relative;
}

.header-layout1 .menu-area {
  position: relative;
  z-index: 2;
}

.header-layout1 .header-logo {
  position: relative;
  z-index: 2;
  height: 100px;
  padding: 20px 100px 20px 0;
}

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

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout1 .header-logo {
    padding: 20px 50px 20px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .header-layout1 .header-logo {
    padding: 15px 50px 15px 0;
    height: 90px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-layout1 .header-logo {
    height: 82px;
    padding-right: 0;
  }
  .header-layout1 .header-logo img {
    max-width: 110px;
  }
  .header-links b{
    font-size: 14px;
  }
  .header-links a span{
    display: none;
  }
  .header-links li{
    margin-right: 2px !important;
  }
  .hero-style6{
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }
  .hero-6 .hero-inner{
    padding-top: 90px !important;
  }
  .hero-style6 .hero-title{
    margin-bottom: 15px !important;
  }
}

.th-btn.style4.whatsapp{
  background-color: #28a745;
  padding: 15px 30px !important;
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --th-border-color: rgba(120, 128, 148, 0.4);
  --body-color: #969EB2;
  position: relative;
  z-index: 2;
  background-color: var(--title-color);
  overflow: hidden;
}

.widget-area {
  padding-top: 60px;
  padding-bottom: 35px;
}

.copyright-wrap {
  padding: 12px 0;
  background-size: 100% auto;
  background-color: var(--theme-color2);
}

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

.copyright-text {
  margin: 0;
}

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

/* Small devices */
@media (max-width: 767px) {
  .copyright-text {
    text-align: center;
  }
  .footer-logo img{
    margin: 0 auto;
    display: block;
  }
}

/* footer 2 ---------------------------------- */
.footer-layout2 {
  --body-color: #788094;
  --th-border-color: #D8DDE1;
  background-color: var(--smoke-color2);
}

.footer-layout2 a:before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-layout2 a:hover {
  color: var(--theme-color2) !important;
}

.footer-layout2 a:hover:before {
  color: var(--theme-color2) !important;
}

.footer-layout2 .footer-widget .widget_title {
  color: var(--title-color);
}

.footer-layout2 .copyright-wrap {
  border-top: 1px solid #ccc;
  background-color: var(--smoke-color);
  padding: 17px 0;
}

.th-widget-contact {
  max-width: 290px;
}

.th-widget-contact .footer-info {
  margin-bottom: 4px;
}

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

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

/*------------------- 4.6. Blog  -------------------*/

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

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

.th-hero-bg {
  position: absolute;
  inset: 0;
}

.th-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.th-hero-bg:before{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #000;
  opacity: .3;
}

.cta_2:before{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #000;
  opacity: .5;
}

/* Hero 1 ---------------------------------- */
.hero-title {
  font-size: 74px;
  font-weight: 700;
  line-height: 1.135;
  margin-bottom: 20px;
  margin-top: -0.2em;
}

.hero-title .title1,
.hero-title .title2 {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  font-weight: 600;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .hero-title {
    font-size: 64px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 60px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-title {
    font-size: 54px;
    line-height: 1.2;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-title {
    font-size: 48px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .checklist.style2 li{
    font-size: 16px;
  }
  .sub-title{
    font-size: 17px;
  }
}

/* Hero 2 --------------------------------------*/

#about-sec .title-area .line-text {
  color: var(--theme-color);
  font-weight: 400;
  position: relative;
}

#about-sec .title-area .line-text:after {
  content: '';
  height: 22px;
  width: 100%;
  background-image: url('data:image/svg+xml,<svg width="288" height="22" viewBox="0 0 288 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 10.2839C33.4393 5.13087 76.1911 2 123.041 2C194.686 2 256.746 9.32162 287 20" stroke="%23b2a255" stroke-width="3"/></svg>');
  background-size: 288px 22px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-animation: titleFill 3s linear infinite;
  animation: titleFill 3s linear infinite;
  /* Extra small devices */
}

@-webkit-keyframes titleFill {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes titleFill {
  0% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

/*------------------- 4.00. Team  -------------------*/
/* Team global ---------------------------------- */
.th-team {
  position: relative;
}

.th-team .box-img {
  position: relative;
  overflow: hidden;
}

.th-team .box-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-team .box-title {
  margin-bottom: 4px;
}

@media(min-width: 768px){
  .th-team .box-content{
    height: 170px;
  }
}

/*------------------- 4.00. Simple Sections  -------------------*/
.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}

.checklist.list-two-column ul {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 0 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .checklist.list-two-column ul {
    grid-template-columns: auto;
  }
  .checklist.list-two-column ul li {
    text-align: initial;
  }
}

.checklist li {
  color: var(--white-color);
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 37px;
}

.checklist li > i {
  color: var(--theme-color);
  line-height: 26px;
}

.checklist li:not(:last-child) {
  margin-bottom: 10px;
}

.checklist.style2 li {
  font-weight: 500;
}

.checklist.style2 li > i {
  font-size: 24px;
}

.th-video {
  position: relative;
  border-radius: 20px;
}

/* Faq 1 ---------------------------------- */

.accordion-card:has(.show) {
  border-radius: 20px;
}
/*------------------- 4.00. CTA -------------------*/

.cta-sec4 {
  position: relative;
  z-index: 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* padding-top: 230px; */
}

@media (max-width: 1199px) {
  .cta-sec4 {
    background-size: cover;
  }
}

/* .img-box2 {
  margin-left: -30px;
} */

.img-box2 img {
  width: 350px;
  /* max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content; */
}

@media (max-width: 1199px) {
  .img-box2 {
    margin: -30px auto 0 auto;
  }
  .img-box2 img {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .img-box2 img {
    margin-top: 20px;
  }
}

/*------------------- 4.00. Price -------------------*/
/* Price Card -----------------------------------*/

/*=================================
05. Spacing
==================================*/
/*-- Padding Left And Right --*/

/*-- Padding Top And Bottom --*/

/*-- Padding Top --*/

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

/*-- Padding Bottom --*/

/*-- Padding Left --*/

/*-- Padding Right --*/

/*-- margin Left And Right --*/

/*-- margin Top And Bottom --*/

/*-- margin Top --*/

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

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

/*-- margin Bottom --*/

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

/*-- margin Left --*/

/*-- margin Right --*/

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

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

.space-extra {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra {
  padding-bottom: calc(var(--section-space) - 30px);
}

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

/*=================================
06. Update
==================================*/
/*------------------- Header -------------------*/
/* Header 4 */

/* Header 5 */

/* Header 6 */
.header-layout6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Medium devices */
}

.header-layout6 .header-logo {
  padding: 20px 0 20px 0;
}

@media (max-width: 991px) {
  .header-layout6 .header-logo {
    height: auto;
  }
}

/* Header 7 */

/*------------------- Hero -------------------*/
/* Hero 4 */

/* Hero 5 */

/* hero 6 */
.hero-6 {
  /* margin-top: 50px; */
  /* Medium devices */
}

/* @media (max-width: 991px) {
  .hero-6 {
    margin-top: 40px;
  }
} */

.hero-6 .hero-inner {
  padding-top: 100px;
}

.hero-style6 {
  padding-top: 230px;
  padding-bottom: 150px;
  position: relative;
  z-index: 5;
  /* Large devices */
}

.hero-style6 .hero-title {
  color: var(--white-color);
  margin-bottom: 37px;
}

@media (max-width: 1199px) {
  .hero-style6 {
    padding: 100px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style6 .hero-title > span {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small devices */

/* Hero 7 */

/*------------------- Sections -------------------*/

/* About 3 */

/* Service 3 */

/* Team 3 */
.team-grid {
  background-color: var(--white-color);
  box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
  border-radius: 10px;
  text-align: center;
}

.team-grid .box-img {
  border-radius: 10px 10px 0 10px;
}

.team-grid .box-content {
  padding: 25px 10px;
  margin-bottom: 10px;
}

/* Testi 3 */

/* Why 4 */

/* Prcoess 2 */

/* Cta 7 */

/* Faq 3 */

.accordion-area3 .accordion-card:has(.show) {
  box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
  background-color: var(--white-color);
}

.faq-form2 {
  background-color: var(--white-color);
  box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
  border-radius: 20px;
  padding: 40px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .faq-form2 {
    padding: 15px;
    padding-top: 25px;
  }
}

.faq-form2 .row {
  --bs-gutter-x: 18px;
}

.faq-form2 .box-title {
  margin-bottom: 24px;
  font-size: 30px;
}

.faq-form2 .form-btn {
  margin-top: 10px;
}

/* Blog 4 */

/* About 4 */

/* Feature 3 */

/* Service 4 */
.service-block {
  --space: 40px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: var(--space);
  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: 40px;
  background-size: auto;
  background-position: right bottom;
  box-shadow: 0px 3px 12px rgba(33, 50, 93, 0.05);
  background-repeat: no-repeat;
}

.service-block-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  gap: 24px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-block-tab {
    gap: 10px;
  }
}

.service-block-tab .box-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #E0F1FE;
  margin: 0 auto 15px auto;
  border-radius: 10px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-block-tab .tab-btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 20px;
  text-align: center;
  border: none;
  padding: 30px 5px 24px 5px;
  font-size: 20px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  box-shadow: 0px 3px 12px rgba(33, 50, 93, 0.05);
  /* Small devices */
  /* Extra small devices */
}

.service-block-tab .tab-btn.active {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.service-block-tab .tab-btn.active .box-icon {
  background-color: var(--white-color);
}

@media (max-width: 767px) {
  .service-block-tab .tab-btn {
    font-size: 15px;
    /* line-height: 0; */
    padding: 15px;
    border-radius: 12px;
  }
  .service-block-tab .tab-btn .box-icon {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .service-block-tab .tab-btn {
    padding: 8px;
  }
}

@media (max-width: 1199px) {
  .service-block {
    --space: 30px;
  }
}

.service-block .box-img {
  -webkit-box-flex: 544px;
  -webkit-flex: 544px;
  -ms-flex: 544px;
  flex: 544px;
}

.service-block .box-img img {
  border-radius: 15px;
}

.service-block .box-content {
  -webkit-box-flex: 560px;
  -webkit-flex: 560px;
  -ms-flex: 560px;
  flex: 560px;
}

.service-block .box-title {
  font-size: 30px;
  margin-bottom: 22px;
}

.service-block .box-text {
  margin-bottom: 26px;
}

@media (max-width: 991px) {
  .service-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .service-block .box-content,
  .service-block .box-img {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .service-block .box-img img {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .service-block {
    --space: 20px;
  }
  .service-block .box-title {
    font-size: 24px;
  }
}

/* Team 4 */

/* Why 4 */

.choose-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid var(--th-border-color); */
  /* Extra small devices */
}

.choose-box h3{
  color: #fff;
  position: relative;
}

.choose-box i{
  color: var(--theme-color);
  padding-right: 5px;
}
.choose-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.choose-box .box-title {
  font-size: 20px;
  margin-bottom: 5px;
}

.accordion-card.bg-white:has(.show) {
  box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
}

/* Testi 4 */
.testi-block {
  background-color: var(--smoke-color);
  border-radius: 20px;
  padding: 30px 35px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  /* Extra small devices */
}

@media (min-width: 1200px) {
  .testi-block{
    height: 328px;
  }
}

.testi-block-area {
  position: relative;
}

.testi-block-area .icon-box {
  position: absolute;
  top: 50%;
  right: -100px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 56px;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .testi-block-area .icon-box {
    display: none;
  }
}

.testi-block-area .icon-box .slider-arrow {
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.testi-block-area .icon-box .slider-arrow:hover {
  background-color: var(--theme-color2);
}

.testi-block-area .icon-box .slider-arrow:not(:last-child) {
  margin-right: 0;
  margin-bottom: 10px;
}

.testi-block .box-text {
  margin: -0.5em 0 30px 0;
}

.testi-block .box-title {
  font-size: 26px;
  margin-bottom: 3px;
}

.testi-block .box-review {
  color: var(--yellow-color);
  margin-bottom: -0.3em;
}

.testi-block .box-review i {
  margin-right: 4px;
}

.testi-block .box-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.testi-block .box-quote {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 575px) {
  .testi-block {
    padding: 30px;
  }
  .testi-block .box-img {
    max-width: 170px;
  }
  .xs-pt-0{
    padding-top: 0 !important;
  }
}

@media (min-width: 1500px) {
  .th-container4 {
    max-width: 1570px;
    margin-left: 0;
    padding-left: 0;
    /* Hight Resoulation devices */
  }
}

/* Hight Resoulation devices */
@media (min-width: 1922px) {
  .th-container4 {
    margin-left: auto;
    padding-left: 12px;
  }
}

/* Blog Grid */

/* Medium Large devices */

/* Large devices */

/* Medium devices */

/* Small devices */

/* About 5 */

@media (min-width: 767px) {
  .btn-group:has(.cta-call) {
    gap: 20px 40px;
  }
}

/* Team 5 */

/* Why 6 */

.active-white .accordion-card:has(.show) {
  box-shadow: 0px 0px 10.6px rgba(97, 97, 97, 0.15);
  background-color: var(--white-color);
}

/* Contact 3 */

.form-shape-wrap {
  position: relative;
  z-index: 2;
}

@media(min-width: 992px){
  .form-shape-wrap{
    margin-top: -140px;
  }
}

/* About 6 */

/* Service 5 */

/* Gallery 2 */

/* Comparison 1 */

/* Testi 6 */

/* About 7 */

/* Cta 8 */

/* Testi 7 */

/* cta 9 */

/* Why 7 */

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

.person_location{
  background: #d5dadf;
  color: #1c384c;
  height: 25px;
  display: flex;
  font-size: 14px;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 1;
  width: max-content;
  margin: 15px auto 0;
  gap: 5px;
}
video{
  border-radius: 20px;
}
.google img{
  width: 80px;
  position: relative;
  bottom: 65px;
  right: 15px;
}
.form-section{
  background-color: var(--theme-color2);
}

.cta_2{
  background-attachment: fixed;
  position: relative;
}


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

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}

@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%
  }
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 20px;
  left: -12px;
}
.close:hover{
  color: #333;
}

#testimonial .slider-arrow.slider-prev.owl-prev{
  right: var(--pos-x, -119px);
  left: auto;
  top: 135px;
  background-color: var(--theme-color);
  color: #fff;
}

#testimonial .slider-arrow.slider-next.owl-next{
  background-color: var(--theme-color);
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1500px) {
  #testimonial .slider-arrow.slider-prev.owl-prev{
    top: 155px !important;
  }
}

.owl-dots {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border: 1px solid #777777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
}
.owl-dots .owl-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50px;
}
.owl-dots .owl-dot.active {
  border: 1px solid #212121;
}
.owl-dots .owl-dot.active span {
  background-color: #212121;
}
.w-25px{
  width: 25px !important;
}
.mt-10{
  margin-top: 10px;
} 
.mb-10{
  margin-bottom: 10px;
}

.th-widget-contact i{
  color: var(--theme-color) !important;
}
.w-30{
  width: 30px;
}
#phone {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.iti--separate-dial-code .iti__selected-dial-code{
  color: #55585b;
}
.iti{
  width: 100%;
}
.w-20{
  width: 20px !important;
}
.iti--separate-dial-code .iti__selected-flag{
  border-radius: 27px;
}