@charset "UTF-8";

/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #f68d3b;
  --theme-color2: #684DF4;
  --theme-color3: #068afb;
  --title-color: #141D38;
  --body-color: #737887;
  --smoke-color: #F5F5F5;
  --smoke-color2: #E2E8FA;
  --smoke-color3: #EFF1F9;
  --black-color: #000000;
  --black-color2: #080E1C;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --title-font: 'DM Sans', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 80px;
  --section-space-mobile: 40px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

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

body {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.bg-dark {
  background-color: #0E0E0E !important;
  --theme-color: #02CE80;
  --theme-color2: #7BD706;
}

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

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--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%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

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

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

.h1,
h1 {
  font-size: 48px;
  line-height: 1.208;
}

.h2,
h2 {
  font-size: 40px;
  line-height: 1.25;
}

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

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

.h5,
h5 {
  font-size: 24px;
  line-height: 1.417;
}

.h6,
h6 {
  font-size: 20px;
  line-height: 1.5;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
  .h2,
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}

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

/* Extra small devices */
@media (max-width: 575px) {

  .h1,
  h1 {
    font-size: 34px;
    line-height: 1.35;
  }
  .h2,
  h2 {
    font-size: 28px;
  }
}

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

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

@media (min-width: 1370px) {
  .th-container2 {
    --main-container: 1470px;
  }
  .th-container2 .container {
    --main-container: 1220px;
  }
}

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

@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  .container-xxl.px-0,
  .container-xl.px-0,
  .container-lg.px-0,
  .container-md.px-0,
  .container-sm.px-0,
  .container.px-0 {
    max-width: var(--main-container);
  }
  .th-container4 {
    --main-container: 1380px;
  }
  .th-container5 {
    --main-container: 1320px;
  }
  .th-container6 {
    --main-container: 1680px;
  }
  .th-container7 {
    --main-container: 1610px;
  }
}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1720px;
  }
}

@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.th-container3 {
  max-width: 1520px;
}

.round-container {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Large devices */
@media (max-width: 1199px) {
  .round-container {
    border-radius: 0;
  }
}

/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

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

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

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

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

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gy-80 {
  --bs-gutter-y: 80px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .gy-80 {
    --bs-gutter-y: 60px;
  }
}

@media (max-width: 991px) {
  .gy-80 {
    --bs-gutter-y: 40px;
  }
}

.gx-140 {
  --bs-gutter-x: 140px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .gx-140 {
    --bs-gutter-x: 80px;
  }
}

@media (max-width: 991px) {
  .gx-140 {
    --bs-gutter-x: 40px;
  }
}

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

@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-25 {
    --bs-gutter-x: 25px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}

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

.fs-16 {
  font-size: 16px;
}

/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--smoke-color);
  border-radius: 4px;
  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(--theme-color);
  background-color: var(--smoke-color);
}

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

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
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;
}

.form-select.style2,
select.style2 {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E");
}

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

textarea.form-control.style2,
textarea.style2 {
  min-height: 100px;
}

.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-comment {
  margin-top: -2px;
}

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

.form-group.has-label > i {
  top: 50px;
}

[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 */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="checkbox"].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type="checkbox"].style2 ~ label:before {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #8B929C;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

input[type="checkbox"].style2:checked ~ label:before {
  color: var(--theme-color);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

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

#hero .swiper-slide {min-height:650px;max-height:650px;height:650px;padding-top:110px}

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

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

.swiper-pagination-progressbar {
  --swiper-pagination-progressbar-size: 2px;
  background: var(--th-border-color);
  position: relative;
  margin-top: 30px;
  margin-bottom: 24px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .swiper-pagination-progressbar {
    margin-top: 20px;
  }
}

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

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
}

.swiper-pagination-fraction {
  text-align: center;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}

.swiper-pagination-fraction .swiper-pagination-current {
  font-size: 24px;
  color: var(--title-color);
  font-weight: 600;
  display: inline-block;
  width: 31px;
}

.slider-controller {
  margin-top: 60px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  /* Large devices */
}

.slider-controller .button {
  width: calc(100% - 204px);
}

.slider-controller .slider-arrow {
  min-width: 56px;
}

@media (max-width: 1199px) {
  .slider-controller {
    margin-top: 45px;
  }
}

.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;
  margin: 50px 0 10px 0;
  line-height: 14px;
  height: 14px;
}

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

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

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

.swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--theme-color);
  background: var(--theme-color);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  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:before {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  border: 1px solid #EBEDF1;
  -webkit-filter: drop-shadow(0px 26px 65px rgba(232, 234, 238, 0.55));
          filter: drop-shadow(0px 26px 65px rgba(232, 234, 238, 0.55));
  color: var(--theme-color);
  position: absolute;
  top: 50%;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 55px);
  height: var(--icon-size, 55px);
  line-height: var(--icon-size, 55px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 55px) / -2);
  z-index: 3;
  border-radius: 50%;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .slider-arrow {
    display: none !important;
  }
}

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

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

.slider-arrow.style3:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}


.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-color);
  color: var(--white-color);
  border-color: var(--theme-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 {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background: #1E293B;
background: linear-gradient(90deg,rgba(30, 41, 59, 1) 0%, rgba(66, 72, 89, 1) 50%, rgba(30, 41, 59, 1) 100%);
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper2 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper2 .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color);
}

.th-menu-wrapper2 .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper2 .th-menu-toggle2 {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 8px;
}

.th-menu-wrapper2 .th-menu-toggle2:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-menu-wrapper2 .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--white-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper2.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper2.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}

.th-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

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

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.th-mobile-menu ul .th-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .th-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.th-mobile-menu ul .th-item-has-children.th-active > a:after {
  content: "\f068";
}

.th-mobile-menu > ul {
  padding: 0 40px;
}

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

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 4px;
}

.th-menu-toggle:hover {
  background-color: var(--title-color);
}

.th-menu-toggle.style-text, .th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

.th-menu-toggle2 {
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 18px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
}

.th-menu-toggle2:hover {
  background-color: var(--title-color);
}

.th-menu-toggle2.style-text, .th-menu-toggle2.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle2.style-text i, .th-menu-toggle2.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle2.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}



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

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

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

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

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

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

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

.th-btn.btn-whatsapp {
  background-color: #25d366;
  color: var(--white-color);
  border: 0;
  padding: 12px 20px !important;
  box-shadow: none;
  font-size: 20px;
      font-size: 20px;
    text-transform: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 260px;
}
.th-btn.btn-whatsapp > i{
  font-size: 25px;

}

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

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

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

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

.th-btn.style10 {
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 100px;
  padding: 18px 44px;
}

.th-btn.style10:hover::before, .th-btn.style10:hover, .th-btn.style10:hover:after, .th-btn.style10.active::before, .th-btn.style10.active:after{
  color: var(--white-color) !important;
  background-color: #25d366 !important;
}


.th-btn.th-border2 {
  background-color: transparent;
  border: 1px solid var(--title-color);
  color: var(--title-color);
}

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

.th-btn.blue-border {
  background: #1C1C25;
  border: 1px solid var(--theme-color);
  border-radius: 100px;
}

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


.th-btn.style-radius {
  border-radius: 100px;
  padding: 18px 40px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .th-btn.style-radius {
    padding: 18px 25px;
  }
}

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

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

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

.th-btn.style-border {
  background-color: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  box-shadow: none;
}

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

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

.th-btn.th-border {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  padding: 16px 39.4px;
}

.th-btn.th-border:hover {
  background: var(--title-color);
  border: 1px solid var(--title-color);
}


.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 56px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--icon-bg, transparent);
  color: var(--title-color);
  text-align: center;
  border-radius: 4px;
  border: 1px solid #232C47;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

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


.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 85px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

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

.sub-title {
  font-size: 25px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin-bottom: 20px;
  display: block;
}

.title-area .sub-title {
  font-size: 30px;
  font-weight: bold;
}

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

.sec-title.sec-title3 span {
  display: inline-block;
  position: relative;
  color: var(--theme-color);
}



@media (max-width: 575px) {

  .sub-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.hero-style19 .hero-text{display:none !important;}
}


.box-title {
  font-size: 20px;
  line-height: 1.417;
  font-weight: 700;
  margin-top: -0.32em;
  color: var(--title-color);
}

.box-title a {
  color: inherit;
}

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

.sec-text {
  max-width: 720px;
}

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

.title-area.style2 {
  margin-top: -8px;
}

.title-area .sec-title {
  margin-bottom: 15px;
  font-size: 35px;
}
.title-area p {
  margin-top: -15px;
}

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

.title-area .th-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

hr.title-line {
  margin-top: 0;
  background-color: var(--th-border-color);
  opacity: 1;
}

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

.shadow-title {
  font-family: var(--title-font);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
  background-image: -webkit-linear-gradient(top, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
  background-image: linear-gradient(180deg, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: -0.55em 0 -0.45em -0.25em;
}

.shadow-title.color2 {
  background-image: -webkit-linear-gradient(top, #232C47 0%, rgba(20, 29, 56, 0) 91.15%);
  background-image: linear-gradient(180deg, #232C47 0%, rgba(20, 29, 56, 0) 91.15%);
}

.shadow-title.color3 {
  background-image: -webkit-linear-gradient(top, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%);
  background-image: linear-gradient(180deg, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%);
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .shadow-title {
    font-size: 64px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 36px;
  }
  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 40px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 55px;
  }
}

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

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

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


.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}


.th-social a {
  display: inline-block;
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  background-color: var(--white-color);
  color: var(--body-color);
  font-size: 22px;
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
}

.th-social a:last-child {
  margin-right: 0;
}

.th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-social.style2 a {
  --icon-size: 40px;
  font-size: 14px;
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid;
}

.th-social.style2 a:hover {
  border-color: var(--theme-color);
  color: var(--white-color);
  background-color: var(--theme-color);
}

.th-social.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}

.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: 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;
}

.btn-group.style2 {
  gap: 20px 70px;
  /* Small devices */
}

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

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

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

/*Icon Masking********/
.icon-masking {
  position: relative;
  display: inline-block;
  height: auto;
  width: auto;
}

.icon-masking .mask-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: hue;
  background: var(--theme-color);
  top: 0;
}

.icon-masking2 {
  position: relative;
  display: inline-block;
  height: auto;
  width: auto;
}

.icon-masking2 .mask-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  background: var(--theme-color);
  top: 0;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-extralight {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

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

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

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

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

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

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

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

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

.bg-black2 {
  background-color: var(--black-color2) !important;
}

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

.gradient-body {
  background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
  background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
}

.gr-bg1 {
  background-image: -webkit-linear-gradient(10deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
  background-image: linear-gradient(80deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
}

.gr-bg2 {
  background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
  background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
}

.gr-bg3 {
  background-image: -webkit-linear-gradient(339.41deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
  background-image: linear-gradient(110.59deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.gr-bg4 {
  background-image: -webkit-linear-gradient(344.56deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
  background-image: linear-gradient(105.44deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.gr-bg5 {
  background: -webkit-linear-gradient(top, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%);
  background: linear-gradient(180deg, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%);
}

.gr-bg6 {
  background: -webkit-linear-gradient(top, #02CE80 0%, #7BD706 100%);
  background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%);
}

.gr-bg7 {
  background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
  background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
  border-radius: 100px;
}

.gray-body {
  background-color: #F8FAFF;
}

.smoke-body {
  background-color: #F3F2EA;
}

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

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

.bg-top-center {
  background-size: auto;
  background-position: top center;
}

.bg-bottom-center {
  background-size: auto;
  background-position: bottom center;
}

.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}

.bg-bottom-right {
  background-size: auto;
  background-position: bottom right;
}

.bg-top-right {
  background-size: auto;
  background-position: top right;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

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

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

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

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

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

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

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

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--black-color);
}

[data-overlay="overlay1"]:before {
  background-color: #080E1C;
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before, .testi-box_quote:after, .testi-box_quote:before, .testi-grid_quote:after, .testi-grid_quote:before, .faq-img4 .faq-shape:after, .faq-img4 .faq-shape:before, .service-grid_icon:after, .service-grid_icon:before, .process-card_number:after, .process-card_number:before,
.process-card .pulse:after,
.process-card .pulse: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(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  50% {
    opacity: 0.40;
  }
  100% {
    -webkit-transform: scale(1.9);
            transform: scale(1.9);
    opacity: 0;
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  50% {
    opacity: 0.40;
  }
  100% {
    -webkit-transform: scale(1.9);
            transform: scale(1.9);
    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);
  }
}

.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 15s linear infinite;
          animation: spin 15s 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);
  }
}

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

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

.swing {
  -webkit-animation: swing 10s infinite ease-in-out;
          animation: swing 10s infinite ease-in-out;
}

@-webkit-keyframes swing {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

@keyframes swing {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}

.dance {
  -webkit-animation: dance 2s alternate infinite;
          animation: dance 2s alternate infinite;
}

@-webkit-keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
          animation: dance2 4s alternate infinite;
}

@-webkit-keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }
}

@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }
}

.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 footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}

@keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}

.starani {
  -webkit-animation: starani 6s linear infinite;
          animation: starani 6s linear infinite;
}

.starani:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.starani:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.starani:nth-child(4) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes starani {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(0.35) translateY(40px);
            transform: scale(0.35) translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes starani {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(0.35) translateY(40px);
            transform: scale(0.35) translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}

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

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

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

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

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

.th-ani {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.th-ani:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.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 scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
            transform: translateX(calc(-100% - var(--gap)));
  }
}

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.dance {
  -webkit-animation: dance 2s alternate infinite;
          animation: dance 2s alternate infinite;
}

@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
          animation: dance2 4s alternate infinite;
}

@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(15px, -15px, 0);
            transform: translate3d(15px, -15px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -15px, 15px);
            transform: translate3d(0, -15px, 15px);
  }
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.widget_nav_menu > ul,
.widget_nav_menu .menu,
.widget_meta > ul,
.widget_meta .menu,
.widget_pages > ul,
.widget_pages .menu,
.widget_archive > ul,
.widget_archive .menu,
.widget_categories > ul,
.widget_categories .menu {
  margin: 0 0 -10px 0;
}

.widget_nav_menu .menu {
  column-count: 2;
  gap: 3.5rem;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  background-color: var(--white-color);
  margin: 0 0 10px 0;
  padding: 16px 45px 19px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.313;
  color: var(--body-color);
  border-radius: 4px;
}

.widget_nav_menu a::before,
.widget_meta a::before,
.widget_pages a::before,
.widget_archive a::before,
.widget_categories a::before {
  content: "\f061";
  position: absolute;
  right: 25px;
  top: 17px;
  font-family: var(--icon-font);
  font-weight: 600;
  color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}

.widget_nav_menu li:last-child a,
.widget_meta li:last-child a,
.widget_pages li:last-child a,
.widget_archive li:last-child a,
.widget_categories li:last-child a {
  border-bottom: none;
}

.widget_nav_menu li > span,
.widget_meta li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  color: var(--white-color);
  background-color: #272A34;
  font-weight: 600;
  text-align: center;
  position: absolute;
  right: 24px;
  top: 15px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  pointer-events: none;
  min-width: 20px;
  text-align: right;
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
  color: var(--white-color);
}

.widget_nav_menu a:hover ~ span,
.widget_meta a:hover ~ span,
.widget_pages a:hover ~ span,
.widget_archive a:hover ~ span,
.widget_categories a:hover ~ span {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

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

.th-blog ul.wp-block-archives li {
  margin: 5px 0;
}

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

.widget[data-overlay]:before {
  z-index: -1;
}

.widget .th-social a {
  box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}

.widget .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.widget .search-form input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 4px 0 0 4px;
  padding-right: 25px;
}

.widget .search-form button {
  border: none;
  font-size: 16px;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  padding: 0;
  width: 56px;
  text-align: center;
  border-radius: 0 4px 4px 0;
}

.widget .search-form button:hover {
  background-color: var(--title-color);
}

.widget_cta {
  position: relative;
  border-radius: 20px;
  text-align: center;
  --space: 40px;
  height: 452px;
  margin-bottom: 0;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .widget_cta {
    --space: 30px;
  }
	.widget_nav_menu .menu {
	column-count: 1;
	gap: 3.5rem;
	}
}

.widget_cta:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0.9;
  background: -webkit-linear-gradient(top, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%);
  background: linear-gradient(180deg, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%);
}

.widget_cta .cta-banner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: var(--space);
}

.widget_cta .banner-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: var(--white-color);
  margin-bottom: 20px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .widget_cta .banner-title {
    font-size: 20px;
    line-height: 30px;
  }
}

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


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

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 35px 20px;
  }
}

.footer-widget {
  margin-bottom: 50px;
}

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

.footer-widget .form-group > i {
  color: var(--theme-color);
  top: 18px;
}

.footer-widget .sidebar-gallery {
  max-width: 287px;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  margin: -0.12em 0 30px 0;
  padding: 0 0 8px 0;
}

.footer-widget .widget_title:before {
  content: '';
  height: 2px;
  width: 100px;
  background-color: var(--theme-color);
  position: absolute;
  left: 0;
  bottom: 0;
}



.footer-widget .widget_title.style2 {
  color: var(--white-color);
}

.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul, .footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul, .footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul, .footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul, .footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -5px;
}

.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-bottom: 16px;
  color: var(--white-color);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
}

.footer-widget.widget_meta a:before, .footer-widget.widget_pages a:before, .footer-widget.widget_archive a:before, .footer-widget.widget_categories a:before, .footer-widget.widget_nav_menu a:before {
  content: "\f054";
  font-weight: 600;
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  color: inherit;
}

.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.footer-widget.widget_meta a:hover:before, .footer-widget.widget_pages a:hover:before, .footer-widget.widget_archive a:hover:before, .footer-widget.widget_categories a:hover:before, .footer-widget.widget_nav_menu a:hover:before {
  color: var(--theme-color);
}

.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 315px;
  margin-top: -0.3em;
  margin-bottom: 28px;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
  font-weight: 500;
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta a {
  font-weight: 400;
  line-height: 1.2;
}

.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}

.th-widget-about .about-logo {
  margin-bottom: 35px;
  margin-top: -8px;
}

.th-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.5em;
}

.footer-text {
  margin-top: -0.46em;
  margin-bottom: 25px;
}

.social-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: 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;
}

.social-box .social-title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 0;
}

.icon-group a {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 17px;
}

.icon-group a:last-child {
  margin-right: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }
  .th-widget-about .about-text {
    margin-bottom: 20px;
  }
  .social-box.mb-30 {
    margin-bottom: 25px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .footer-layout3 .newsletter-form .th-btn {
    min-width: 100%;
  }
}

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

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
          animation: stickyAni 0.4s ease-in-out;
}

.logo {
  transition: all 0.3s ease;
}

.sticky .header-logo {
    margin-top: 0;
}

.sticky .logo {
  height: 100px; /* tamanho reduzido */	
}


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

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

.main-menu a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
  font-family: var(--title-font);
  text-transform: uppercase;
}

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

.main-menu > ul > li {
  margin: 0 14px;
}

.main-menu > ul > li > a {
  padding: 40px 0;
}

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

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
  content: "\f078";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 0;
  font-size: 1em;
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  -webkit-transform: scaleY(1) translateX(-50%);
      -ms-transform: scaleY(1) translateX(-50%);
          transform: scaleY(1) translateX(-50%);
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 1px;
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 23px;
  text-transform: capitalize;
}

.main-menu ul.sub-menu li a:before {
  content: "\f649";
  position: absolute;
  top: 8px;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 500;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: scaleY(0) translateX(-50%);
      -ms-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
}

.main-menu ul.mega-menu.mega-menu-content {
  background-color: transparent;
  width: -webkit-fill-available;
  padding: 0;
  box-shadow: none;
}

.main-menu ul.mega-menu.mega-menu-content li {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 15px;
}

.main-menu ul.mega-menu.mega-menu-content .megamenu-list {
  min-width: 260px;
  /* Large devices */
}

@media (max-width: 1699px) {
  .main-menu ul.mega-menu.mega-menu-content .megamenu-list {
    min-width: 180px;
  }
}

@media (max-width: 1199px) {
  .main-menu ul.mega-menu.mega-menu-content .megamenu-list {
    min-width: 100px;
  }
}

.main-menu ul.mega-menu.mega-menu-content .megamenu-list .mega-menu-title {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu.mega-menu-content .megamenu-list .mega-menu-title:after, .main-menu ul.mega-menu.mega-menu-content .megamenu-list .mega-menu-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu.mega-menu-content .megamenu-list .mega-menu-title:after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 2px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: capitalize;
  color: #fff;
}

.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--white-color);
}

.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.main-menu.style2 > ul > li {
  margin: 0 6px;
}

.main-menu.style2 > ul > li > a {
  padding: 2px 16px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.main-menu.style2 ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
  margin-top: 15px;
  border-radius:15px;
}

.main-menu.style2 .mega-menu.mega-menu-content {
  margin-top: 20px;
}

.header-button {
  height: 100%;
  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: 10px;
}

.header-button .icon-btn {
  position: relative;
}

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

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

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

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}

.header-links li:not(:last-child) {
  margin: 0 26px 0 0;
}

.header-links li > i {
  margin-right: 6px;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--body-color);
}

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

.header-links i {
  color: var(--body-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
}

.header-social .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 15px 0 0;
  color: var(--body-color);
}

.header-social a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.header-social a:last-child {
  margin-right: 0;
}

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

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
  /* Extra small devices */
}



@media (max-width: 575px) {
  .header-logo {
    max-width: 200px;
  }
  .header-logo .icon-masking .mask-icon {
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 37px 0;
  }
}


/* Header 2 ---------------------------------- */
.header-layout2 .icon-btn {
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid #ddd;
  border-radius: 50%;
  line-height: 54px;
}

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

.header-layout2 .menu-area {
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout2 .menu-area {
    padding: 10px 0;
  }
}

.header-layout2 .main-menu > ul > li > a {
  color: var(--white-color);
  font-weight: 600;
}

.header-layout2 .main-menu > ul > li > a:hover {
  color: var(--theme-color);
}

.header-layout2 .header-top {
  padding: 5px 0;
  background-color: var(--theme-color);
  --body-color: #fff;
}

.header-layout2 .header-top a:hover {
  color: var(--title-color);
}

.header-layout2 .menu-area {
background: #1E293B;
background: linear-gradient(90deg,rgba(30, 41, 59, 1) 0%, rgba(66, 72, 89, 1) 50%, rgba(30, 41, 59, 1) 100%)
}

.header-layout2 .th-menu-toggle {
  border-radius: 50%;
}

/* Large devices */
@media (max-width: 1199px) {
  .header-layout2 .header-button .th-btn {
    display: none;
  }
  .header-layout2 .header-top {
    padding: 5px 0;
  }
}

.header-layout23 .sticky-wrapper.sticky {
  background-color: transparent;
}

.header-layout23 .sticky-wrapper.sticky .menu-area {
  max-width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.header-layout23 .menu-area {
  max-width: 1380px;
  display: block;
  margin: auto;
  background: #1E293B;
background: linear-gradient(90deg,rgba(30, 41, 59, 1) 0%, rgba(66, 72, 89, 1) 50%, rgba(30, 41, 59, 1) 100%);
  border-radius: 80px;
  padding: 15px 15px;
  margin-top: 15px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .header-layout23 .menu-area {
    padding: 10px 15px;
	border-radius: 0px;
	margin-top: 0;
  }
}

.header-layout23 .main-menu.style2 > ul > li {
  margin: 0 4px;
}

.header-layout23 .main-menu > ul > li > a {
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.header-layout23 .main-menu > ul > li > a:hover {
  color: var(--theme-color) !important;
}

.header-layout23 .main-menu > ul > li > a:hover:before {
  opacity: 0.1;
}

.header-layout23 .main-menu > ul > li > a:hover:after {
  color: var(--theme-color) !important;
}


.header-layout23 .header-button {
  /* Large devices */
}

.header-layout23 .header-button .th-btn {
  padding: 17px 40px;
}

@media (max-width: 1199px) {
  .header-layout23 .header-button .th-btn {
    display: none;
  }
}

.header-layout23 .th-menu-toggle {
  border-radius: 50%;
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.footer-wrapper .th-social a {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.footer-wrapper .th-social a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.widget-area {
  padding-top: var(--section-space);
  padding-bottom: 66px;
}

.footer-menu {
  margin: 0;
  padding: 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .footer-menu {
    text-align: center;
  }
}

.footer-menu li {
  display: inline-block;
  margin-right: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-menu li {
    margin-right: 5px;
  }
}

.footer-menu li a {
  position: relative;
  font-weight: 400;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--white-color);
  text-transform: capitalize;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-menu li a {
    font-size: 14px;
  }
}

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

.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-family: var(--body-font);
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}

.footer-links li:after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: var(--body-color);
  position: absolute;
  top: 50%;
  right: 0;
  margin: -10px 0;
}

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

.footer-links li:last-child:after {
  display: none;
}

.footer-links a {
  font-family: inherit;
  color: var(--smoke-color2);
}

.footer-links a:hover, .footer-info a:hover  {
  color: var(--theme-color);
}

.footer-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 170px;
  margin-bottom: 0;
   color: var(--white-color);
   font-size: 16px;
}

.footer-info.fone{font-size:18px}

.footer-info:not(:last-child) {
  margin-top: 0;
}

.footer-info_title {
  font-size: 18px;
  color: var(--white-color);
  display: block;
  margin-bottom: 7px;
}

.footer-info_icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  line-height: 26px;
  font-size: 14px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 5px;
  gap: 8px;
  margin-right: 10px;
}

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

.footer-info_link {
  display: inline-block;
  color: var(--body-color);
}

.footer-info_link:hover {
  color: var(--smoke-color2);
}

.copyright-wrap {
  padding: 16px 0;
  background-size: 100% auto;
}

.copyright-wrap .footer-menu li a{font-size:14px}

.copyright-text {
  margin: 0;
}

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

.copyright-text a:hover {
  color: var(--white-color);
}

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

.footer-contact {
  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: 20px;
}

.footer-contact-wrap {
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-contact_icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  min-width: 70px;
  font-size: 30px;
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.footer-contact_icon:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--title-color);
  border-radius: inherit;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer-contact_icon:hover:before {
  top: 0;
  left: 0;
}

.footer-contact_text {
  display: block;
  color: var(--body-color);
  margin-bottom: 5px;
}

.footer-contact_link {
  display: inline-block;
  color: var(--body-color);
  font-size: 20px;
  font-weight: 600;
}

.footer-contact_link:hover {
  color: var(--title-color);
}

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

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

.info-box_icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  line-height: 29px;
  font-size: 14px;
  background-color: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 999px;
  text-align: center;
  margin-right: 10px;
}

.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: 0;
}

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

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



/* Large devices */
@media (max-width: 1199px) {
  
  .footer-contact-wrap {
    padding: 40px 0 30px 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile) !important;
    padding-bottom: 30px !important;
  }
  .footer-contact-wrap {
    grid-template-columns: auto auto;
    gap: 30px;
  }
  .copyright-text {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .copyright-wrap {
    background-size: cover;
  }
  .footer-contact {
    margin-left: 10px;
  }
  .footer-contact-wrap {
    grid-template-columns: auto;
  }
}


.footer-widget .contact-feature {
  padding: 0 !important;
  background-color: transparent;
  box-shadow: none;
  gap: 15px;
}

.footer-widget .contact-feature:not(:last-child) {
  margin-bottom: 28px;
}

.footer-widget .contact-feature .icon-btn {
  --btn-size: 44px;
  font-size: 16px;
}

.footer-widget .contact-feature_label {
  margin-top: -0.4em;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.5;
}

.footer-widget .contact-feature_link {
  font-size: 18px;
  margin-bottom: -0.4em;
  display: block;
}



/* Large devices */
@media (max-width: 1199px) {
  .footer-top .footer-logo {
    text-align: center;
    margin: 0 auto 35px auto;
  }
}



/* footer 5 ---------------------------------- */
.footer-layout5 {
  background-color: #F7F8FB;
}

.footer-layout5 .footer-newsletter {
  padding-left: 0;
}

.footer-layout5 .footer-newsletter .newsletter-title {
  color: var(--title-color);
  max-width: 500px;
}

.footer-layout5 .footer-newsletter .newsletter-form {
  position: relative;
  max-width: 560px;
}

.footer-layout5 .footer-newsletter .newsletter-form i {
  position: absolute;
  top: 22px;
  left: 30px;
  color: var(--theme-color);
}

.footer-layout5 .footer-newsletter .newsletter-form .form-control {
  border-radius: 100px;
  min-height: 60px;
  padding-left: 55px;
  padding-right: 200px;
  background-color: var(--white-color);
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-layout5 .footer-newsletter .newsletter-form .form-control {
    min-width: 100%;
  }
}

.footer-layout5 .footer-newsletter .newsletter-form .form-control:hover {
  border: 1px solid var(--theme-color);
}

.footer-layout5 .footer-newsletter .newsletter-form .th-btn {
  min-width: 188px;
  padding: 22px 40px;
  text-transform: capitalize;
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 100px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-layout5 .footer-newsletter .newsletter-form .th-btn {
    max-width: 100%;
    padding: 16px 20px;
    position: relative;
    margin-top: 10px;
    display: block;
    width: 100%;
  }
}

.footer-layout5 .footer-top {
  padding: 105px 0 75px 0;
  border-bottom: 1px solid #E4E7EE;
  /* Medium devices */
}

@media (max-width: 991px) {
  .footer-layout5 .footer-top {
    padding: 60px 0 75px 0;
  }
}

.footer-layout5 .widget-area {
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer-layout5 .widget_title {
  font-weight: 600;
  color: var(--title-color);
}

.footer-layout5 .footer-widget .recent-post .post-title {
  color: var(--title-color);
}

.footer-layout5 .th-social a {
  --icon-size: 50px;
}

.footer-layout5 .th-social a:not(:hover) {
  background: var(--white-color);
  color: var(--title-color);
  box-shadow: 0px 9px 20px 0px rgba(0, 0, 0, 0.06);
}

.footer-layout5 .copyright-wrap {
  background-color: transparent;
  border-top: 1px solid rgba(121, 129, 150, 0.35);
}

.footer-layout5 .copyright-wrap .copyright-text {
  color: var(--title-color);
}

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

/* Large devices */
@media (max-width: 1199px) {
  
  .footer-layout5 .footer-newsletter .newsletter-title {
    margin-top: -0.3em;
  }
}


/* footer 12 start ---------------------------------*/
.footer-layout12 {
  background: #1E293B;
  background: linear-gradient(90deg,rgba(30, 41, 59, 1) 0%, rgba(66, 72, 89, 1) 50%, rgba(30, 41, 59, 1) 100%);
  border-radius: 30px 30px 0 0;
  --body-color: #797E88;
}

.footer-layout12 .footer-top {
  border-bottom: 1px solid #2C3248;
}

.footer-layout12 .footer-newsletter .newsletter-title {
  color: var(--white-color);
}

.footer-layout12 .footer-newsletter .newsletter-form .th-btn {
  padding: 23px 40px;
}

.footer-layout12 .footer-newsletter .newsletter-form .th-btn:hover {
  color: var(--white-color);
}

.footer-layout12 .footer-newsletter .newsletter-form .th-btn:hover:before, .footer-layout12 .footer-newsletter .newsletter-form .th-btn:hover:after {
  background-color: var(--title-color);
}

.footer-layout12 .footer-widget .widget_title {
  text-transform: none;
}

.footer-layout12 .footer-widget.widget_nav_menu a {
  margin-bottom: 14px;
}

.footer-layout12 .copyright-wrap .copyright-text {
  color: var(--white-color);
  font-size: 14px;
}

.footer-layout12 .th-widget-about.style2 {
  max-width: 290px;
}

.footer-layout12 .th-social a {
  border: none;
}

.footer-layout12 .th-social a:not(:hover) {
  background: var(--white-color);
  box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  color: var(--title-color);
}



.footer-layout5.footer-layout19 .th-social a {
  --icon-size: 40px;
  background-color: var(--white-color);
  position: relative;
  box-shadow: none;
  border-radius: 0;
  -webkit-mask-image: url("../img/shape/polygon.png");
          mask-image: url("../img/shape/polygon.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  border: none;
  color: var(--white-color);
  margin-right: 10px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-layout5.footer-layout19 .th-social a:before {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: var(--theme-color);
  -webkit-mask-image: url("../img/shape/polygon.png");
          mask-image: url("../img/shape/polygon.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  z-index: -1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-layout5.footer-layout19 .th-social a:hover {
  background-color: #00E3DB;
  color: var(--title-color);
}

.footer-layout5.footer-layout19 .th-social a:hover:before {
  background-color: #00E3DB;
}

/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 0 0 0 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f324";
  position: relative;
  margin-left: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--title-color);
  font-family: var(--icon-font);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 16px;
  color: var(--title-color);
}

.breadcumb-title {
  color: var(--title-color);
  margin: -0.22em 0 -0.14em 0;
  line-height: 1.1;
}

.breadcumb-wrapper {
  background-color: var(--smoke-color);
  overflow: hidden;
  text-align: left;
}

.breadcumb-content{
	padding: 10px 10px;
	border-radius:15px;
	
}

/* Large devices */
@media (max-width: 1199px) {

  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}



@media (min-width: 1300px) {
  .page-single {
    margin-right: 16px;
  }
}

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

.th-hero-wrapper .slider-arrow {
  --pos-x: 100px;
  background-color: var(--white-color);
  box-shadow: none;
  color: var(--theme-color);
  border-color: var(--white-color);
}

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

.th-hero-wrapper .slick-dots {
  position: absolute;
  top: 50%;
  left: 80px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .th-hero-wrapper .slider-arrow {
    --pos-x: 40px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .th-hero-wrapper .slider-arrow {
    left: auto;
    top: calc(50% - 35px);
    right: var(--pos-x, -120px);
    margin: 0;
  }
  .th-hero-wrapper .slider-arrow.slider-next {
    top: calc(50% + 35px);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .th-hero-wrapper .slider-arrow {
    left: auto;
    top: calc(50% - 30px);
    right: var(--pos-x, -120px);
    margin: 0;
  }
  .th-hero-wrapper .slider-arrow.slider-next {
    top: calc(50% + 30px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .th-hero-wrapper .slider-arrow {
    display: none;
  }
}

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

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

/* Hero 1 ---------------------------------- */
.hero-subtitle {
  font-family: var(--title-font);
  color: var(--theme-color);
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 17px;
  text-transform: uppercase;
  margin-top: -0.24em;
}

.hero-title {
    font-size: 65px;
  line-height: 65px;
  letter-spacing: -1.55px;
  color: var(--theme-color);
}

.hero-title:last-of-type {
  margin-bottom: 21px;
}

.hero-text {
  margin-bottom: 43px;
}

#hero .swiper-slide {min-height:575px}


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


/* 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-subtitle {
    font-size: 18px;
  }
  .hero-title {
    font-size: 48px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 1.24;
  }
  .hero-title:last-of-type {
    margin-bottom: 16px;
  }
  .hero-text {
    margin-bottom: 28px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.3;
  }
}

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


/* hero 19 start -------------------------------*/
.hero-19 .hero19-overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-19 .icon-box {
  position: absolute;
  top: 55%;
  right: 110px;
  width: 70px;
  display: block;
}

@media (max-width: 1799px) {
  .hero-19 .icon-box {
    right: 40px;
  }
}

@media (max-width: 1599px) {
  .hero-19 .icon-box {
    display: none;
  }
}

.hero-19 .icon-box .slider-arrow {
  --pos-x: 0px;
}

.hero-19 .icon-box .slider-arrow:not(:last-child) {
  margin-right: 0px;
  --pos-x: 17px;
  -webkit-transform: translateY(-110%);
      -ms-transform: translateY(-110%);
          transform: translateY(-110%);
}

.hero-19 .slick-arrow {
  --pos-x: 0;
}

.hero-19 .slick-arrow:not(:last-child) {
  margin-right: 0px;
}

.hero-19 .slider-pagination {
  position: absolute;
  top: 50%;
  left: 110px;
  width: auto;
  margin: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 1799px) {
  .hero-19 .slider-pagination {
    left: 40px;
  }
}

@media (max-width: 1599px) {
  .hero-19 .slider-pagination {
    display: none;
  }
}

.hero-19 .th-hero-img {
  min-width: 596px;
  margin-bottom: 15px;
  margin-top: 10px;
  /* Large devices */
}

@media (max-width: 1399px) {
  .hero-19 .th-hero-img {
    margin-bottom: 0px;
  }
}

@media (max-width: 1199px) {
  .hero-19 .th-hero-img {
    min-width: 100%;
  }
  .hero-19 .th-hero-img img {
    text-align: center;
    display: block;
    margin: auto;
  }
}

.hero-style19 {
  padding: 65px 0 50px 0;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .hero-style19 {
    padding: 65px 0 50px 0;
  }
}

@media (max-width: 1199px) {
  .hero-style19 {
    padding: 55px 0 40px 0;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .hero-style19 {
    padding: 55px 0 40px 0;
  }
}



.hero-style19 .sub-title .icon-masking .mask-icon {
  background: transparent;
}



@media (max-width: 1299px) {
  .hero-style19 .hero-title {
    font-size: 62px;
    line-height: 72px;
  }
}

@media (max-width: 1299px) {
  .hero-style19 .hero-title {
    font-size: 52px;
    line-height: 62px;
  }
}

@media (max-width: 575px) {
.hero-style19 {
    padding: 15px 0 10px 0;
  }
  .hero-style19 .hero-title {
    font-size: 40px;
    line-height: 38px;
  }
  .title-area .sec-title {
    margin-bottom: 20px;
    font-size: 30px;
	}
	.fs-20 {
    font-size: 16px !important;
	line-height:20px;
	}
	.chamada .img1	{
	position: relative !important;
	margin-bottom: -70px;
	}
	.header-button {
      justify-content: center;
	}
	.footer-widget {
        margin-top: 35px;
    }
	.widget_nav_menu .menu {
        column-count: 1;
        gap: 15px;
    }
}

@media (max-width: 375px) {
  .hero-style19 .hero-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.hero-style19 .hero-text {
  color: var(--body-color);
  max-width: 752px;
  margin-bottom: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style19 .hero-text {
    display: block;
    margin: auto auto 40px auto;
  }
}

/*------------------- 4.9. Error  -------------------*/
.error-content {
  text-align: center;
}

.error-img {
  text-align: center;
  margin-bottom: 45px;
}

.error-title {
  margin-bottom: 20px;
}

.error-text {
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Medium devices */
@media (max-width: 991px) {
  .error-title {
    margin-bottom: 15px;
  }
  .error-img {
    margin-bottom: 30px;
  }
  .error-text {
    margin-bottom: 25px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .error-title {
    margin-bottom: 10px;
  }
}


/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.style2 {
  left: 0;
  right: unset;
}

.sidemenu-wrapper.style2 .sidemenu-content {
  right: unset;
  left: -500px;
  margin-left: unset;
  margin-right: auto;
  -webkit-transition: left ease 1s;
  transition: left ease 1s;
}

.sidemenu-wrapper.style2.show .sidemenu-content {
  right: unset;
  left: 0;
}

.sidemenu-wrapper .th-social a {
  background-color: transparent;
  border: 1px solid;
}

.sidemenu-wrapper .th-social a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .sidemenu-wrapper .sidemenu-content {
    width: 320px;
  }
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.sidemenu-wrapper .th-side-menu {
  padding: 80px 0px;
  min-width: 28%;
  /* Large devices */
}

@media (max-width: 1199px) {
  .sidemenu-wrapper .th-side-menu {
    min-width: 30%;
  }
}

.sidemenu-wrapper .th-side-menu .side-logo {
  margin-bottom: 40px;
}

.sidemenu-wrapper .th-side-menu .th-side-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidemenu-wrapper .th-side-menu .menu-item-has-children > a {
  cursor: pointer;
  position: relative;
}

.sidemenu-wrapper .th-side-menu .menu-item-has-children > a::after {
  content: "▼";
  position: absolute;
  right: 10px;
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.sidemenu-wrapper .th-side-menu .menu-item-has-children.open > a::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sidemenu-wrapper .th-side-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}

.sidemenu-wrapper .th-side-menu .sub-menu a {
  padding-left: 20px;
}

.sidemenu-wrapper .th-side-menu ul {
  margin: 0;
  padding: 0 0;
}

.sidemenu-wrapper .th-side-menu ul li {
  border-bottom: 1px solid var(--smoke-color2);
  list-style-type: none;
}

.sidemenu-wrapper .th-side-menu ul li li:first-child {
  border-top: 1px solid var(--smoke-color2);
}

.sidemenu-wrapper .th-side-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}

.sidemenu-wrapper .th-side-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

.sidemenu-wrapper .th-side-menu ul li.th-active > a {
  color: var(--theme-color);
}

.sidemenu-wrapper .th-side-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sidemenu-wrapper .th-side-menu ul li ul li {
  padding-left: 20px;
}

.sidemenu-wrapper .th-side-menu ul li ul li:last-child {
  border-bottom: none;
}

.sidemenu-wrapper .th-side-menu ul .menu-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: #808182;
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.sidemenu-wrapper .th-side-menu ul .menu-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.sidemenu-wrapper .th-side-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  color: var(--black-color2);
  float: right;
  margin-top: 1px;
}

.sidemenu-wrapper .th-side-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.sidemenu-wrapper .th-side-menu ul .menu-item-has-children.th-active > a:after {
  content: "\f068";
}

.sidemenu-wrapper .th-side-menu > ul > li:last-child {
  border-bottom: none;
}

/* Contact Page ---------------------------------- */
.contact-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  box-shadow: 0px 4px 30px rgba(8, 14, 28, 0.08);
  border-radius: 5px;
  background-color: var(--theme-color);
  padding: 40px;
}

.contact-info a:hover{color: var(--white-color);}

.contact-info .box-title {
  margin-bottom: 10px;
}

.contact-info_icon {
  display: inline-block;
  width: 80px;
  min-width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 40px;
  position: relative;
  box-shadow: 0px 6px 20px rgba(0, 96, 255, 0.6);
  border-radius: 5px;
}

.contact-info_text {
  min-width: 180px;
  display: block;
  margin-bottom: -0.5em;
  font-family: var(--body-font);
}

.contact-info_text span,
.contact-info_text a {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.contact-info_text a {
  color: var(--body-color);
}

.contact-info_text a:hover {
  color: var(--theme-color);
}

.contact-form select,
.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea,
.contact-form input {
  background-color: var(--white-color);
}

.contact-form .form-group > i {
  background-color: var(--white-color);
  color: var(--theme-color);
  width: 18px;
  text-align: right;
}

.contact-form.style2 {
  padding: 40px;
  background-color: var(--white-color);
  border-radius: 16px;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-form.style2 {
    padding: 25px;
  }
}

.contact-form.style2 .box-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}

.contact-form.style2 select,
.contact-form.style2 .form-control,
.contact-form.style2 .form-select,
.contact-form.style2 textarea,
.contact-form.style2 input {
  height: 52px;
  border: 1px solid #E3E7F0;
  border-radius: 8px;
}

.map-sec {
  line-height: 0px;
}

.map-sec iframe {
  height: 600px;
  /* Medium Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .map-sec iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .map-sec iframe {
    height: 300px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .contact-info {
    padding: 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .contact-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}


/* contact 5 start -------------------*/
.contact-area5 {
  position: relative;
  max-width: 1760px;
  border-radius: 30px;
  margin: auto auto 120px auto;
  overflow: hidden;
  /* Medium devices */
}

@media (max-width: 991px) {
  .contact-area5 {
    margin-bottom: 80px;
  }
}

.sec-text.style3 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .sec-text.style3 {
    display: block;
    margin: auto;
  }
}

.contact-btn {
  /* Large devices */
}

.contact-btn .th-btn {
  text-transform: capitalize;
  font-size: 16px;
  padding: 20px 50px;
}

@media (max-width: 1199px) {
  .contact-btn {
    text-align: center;
  }
}

.contact-shape {
  position: absolute;
  right: 0;
  top: 0;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .contact-shape {
    right: -10%;
    height: 100%;
  }
  .contact-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .contact-shape {
    display: none;
  }
}

/* contact 6 */
.contact-feature-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 15px;
  padding-top: 54px;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .contact-feature-area {
    gap: 15px;
  }
}

@media (max-width: 1199px) {
  .contact-feature-area {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .contact-feature-area {
    display: block;
  }
}

.contact-feature-area .feature-wrapper.style3 {
  margin-bottom: 0;
}

.contact-feature-area .feature-wrapper.style3 .header-info_link {
  /* Extra small devices */
}

@media (max-width: 375px) {
  .contact-feature-area .feature-wrapper.style3 .header-info_link {
    font-size: 20px;
  }
}

.contact-feature-area .th-social {
  /* Small devices */
}

.contact-feature-area .th-social .social-title {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #656A74;
  margin-bottom: 15px;
}

.contact-feature-area .th-social a {
  --icon-size: 35px;
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .contact-feature-area .th-social {
    margin-top: 20px;
  }
}

.contact-text {
  font-family: var(--body-font);
  font-size: 18px;
  color: #C7C7C7;
}

/* contact area start ----------------------*/
.contact-form2 {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 50px;
  /* Extra small devices */
  /* Extra small devices */
}

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

@media (max-width: 375px) {
  .contact-form2 {
    padding: 30px;
  }
}

.contact-form2 select,
.contact-form2 .form-control,
.contact-form2 .form-select,
.contact-form2 textarea,
.contact-form2 input {
  height: 56px;
  border: 1px solid #E4E6EA;
  color: var(--body-color);
  background-color: transparent;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form2 textarea.form-control,
.contact-form2 textarea {
  min-height: 136px;
}

.contact-form2 .form-group:last-child {
  margin: 0;
}

.contact-form2 .form-group i {
  color: var(--theme-color);
}

.contact-form2 .form-group label {
  color: #A1A6B0;
  font-size: 14px;
  margin-top: 40px;
  margin-bottom: 0;
}

.contact-form2 .form-btn {
  margin-top: 34px;
}

.contact-item {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.contact-item:not(:last-child) {
  margin-bottom: 24px;
}

.contact-item_icon {
  font-size: 30px;
  line-height: 30px;
  color: var(--theme-color);
}

.contact-item_label {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #A1A6B0;
  margin-bottom: 0;
}

.contact-item_link, .contact-item_text {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: block;
  margin-bottom: -0.3rem;
}

.contact-item_link:not(:hover), .contact-item_text:not(:hover) {
  color: var(--title-color);
}

/* contact area start ----------------------*/
/* contact area start ----------------------*/
.contact-area8 {
  background-color: #EFF1F9;
  border-radius: 30px;
  max-width: 1760px;
  display: block;
  margin: auto;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .contact-area8 {
    max-width: 100%;
    border-radius: 0;
  }
}

.contact-form2.style2 {
  background-color: var(--white-color);
  border: 1px solid #E3E7F0;
  border-radius: 20px;
}

/* contact area end ----------------------*/
/* contact9 area start ------------------------*/
.contact-area9 {
  background-color: #1C1C25;
  border-radius: 40px;
}

.sec-text2 {
  font-size: 22px;
  max-width: 994px;
}

.contact-btn-group {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}

.contact-btn-group .call-btn .btn-text {
  color: var(--white-color);
}

.contact-btn-group .call-btn .btn-title {
  color: var(--white-color);
  font-weight: 400;
}

.contact-btn-group .call-btn .play-btn:before, .contact-btn-group .call-btn .play-btn:after {
  background-color: var(--white-color);
}

.contact-btn-group .call-btn .play-btn > i {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.contact-btn-group .call-btn .play-btn > i:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/* contact9 area end ------------------------*/
/* contact area 10 start -------------*/
.contact-form3 {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  /* Small devices */
  /* Extra small devices */
}

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

@media (max-width: 375px) {
  .contact-form3 {
    padding: 30px;
  }
}

.contact-form3 select,
.contact-form3 .form-control,
.contact-form3 .form-select,
.contact-form3 textarea,
.contact-form3 input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  font-size: 14px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.contact-form3 .form-group i {
  color: var(--theme-color);
}

.contact-form3 input[type="checkbox"] ~ label:before {
  background-color: transparent;
  border: 1px solid var(--theme-color);
}

.contact-form3 label {
  color: #A1A6B0;
  font-size: 14px;
}

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

.contact-form3 .th-btn {
  text-transform: capitalize;
  border-radius: 30px;
  font-weight: 500;
}

.contact-map2 {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  text-align: right;
  background-size: cover;
  background-position: center right;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-map2 {
    background-size: 100%;
  }
}

.contact-map2 iframe {
  border: none;
  width: 100%;
  height: 664px;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-map2 iframe {
    height: 400px;
  }
}

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

.contact-area2 {
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
  box-shadow: 0px 30px 100px rgba(19, 24, 48, 0.08);
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  padding: 0px 100px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .contact-area2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 30px;
  }
}

.contact-area2 .divided {
  width: 1px;
  height: 517px;
  background: #E3E7F0;
  /* Large devices */
}

@media (max-width: 1199px) {
  .contact-area2 .divided {
    display: none;
  }
}

.contact-area2 .call-info .call-label {
  font-weight: 400;
  font-size: 18px;
  color: #656A74;
}

.contact-area2 .call-info .call-link {
  font-weight: 600;
  font-size: 28px;
  color: var(--title-color);
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .contact-area2 .call-info .call-link {
    font-size: 20px;
  }
}

.contact-area2 .call-info .call-link .text {
  color: var(--title-color);
}

.contact-form5 {
  min-width: 403px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .contact-form5 {
    min-width: 100%;
  }
}

.contact-form5 .box-title {
  font-size: 40px;
  color: var(--title-color);
  margin-bottom: 20px;
  /* Small devices */
}

@media (max-width: 767px) {
  .contact-form5 .box-title {
    font-size: 28px;
  }
}

.contact-form5 select,
.contact-form5 .form-control,
.contact-form5 .form-select,
.contact-form5 textarea,
.contact-form5 input {
  height: 52px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  background-color: transparent;
  border: 1.5px solid #E3E7F0;
  border-radius: 30px;
}

.contact-info-details {
  /* Large devices */
}

@media (max-width: 1199px) {
  .contact-info-details {
    text-align: center;
  }
}

/*------------------- 4.00. About  -------------------*/
/* About 1 ---------------------------------- */
.img-box1 {
  position: relative;
  z-index: 2;
  margin: 0;
}

.img-box1 .img1 img {
  width: 100%;
  max-width: 650px;
}

.img-box1 .img1 {
 border-radius:35px;
 overflow:hidden;
}

.img-box1 .shape1 {
  position: absolute;
  bottom: 0px;
  right: 80px;
  z-index: -1;
}

.img-box1 .shape1 img {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}



.about-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-feature-wrap {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--th-border-color);
  margin-bottom: 40px;
}

.about-feature_title {
  font-size: 20px;
  margin-bottom: 7px;
}

.about-feature_text {
  margin-bottom: 0;
}

.about-feature.style2 {
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}

.about-feature.style2:not(:last-child) {
  margin-bottom: 37px;
}

.about-feature.style2 .about-feature_icon {
  height: 64px;
  width: 64px;
  line-height: 64px;
  display: inline-block;
  background: var(--theme-color);
  border-radius: 16px;
  text-align: center;
  color: var(--white-color);
  font-size: 28px;
}

.about-feature.style2 .about-feature_icon i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.about-feature.style2 .about-feature_title {
  font-size: 24px;
  font-weight: 600;
  margin-top: -0.2em;
  margin-bottom: 13px;
}

.about-feature.style2 .about-feature_text {
  margin-bottom: -0.4em;
}

.about-feature.style2:hover .about-feature_icon i {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.about-feature.style3 {
  gap: 20px;
  max-width: 390px;
}

.about-feature.style3 .about-feature_icon {
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  background: #EFF1F9;
  border-radius: 16px;
  -webkit-align-self: start;
      -ms-flex-item-align: start;
          align-self: start;
}

.about-feature.style3 .about-feature_title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-feature.style3:not(:last-child) {
  margin-bottom: 40px;
}

.about-feature3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.about-feature3:not(:last-child) {
  margin-bottom: 30px;
}

.about-feature3 .box-num {
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-color);
}

.about-feature3 .box-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--title-color);
  margin-bottom: 5px;
}

.about-feature3 .box-text {
  margin-bottom: -0.3rem;
}

.about-feature4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.about-feature4:not(:last-child) {
  margin-bottom: 30px;
}

.about-feature4 .box-icon {
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-color);
}

.about-feature4 .box-title {
  font-weight: 600;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.about-feature4 .box-text {
  margin-bottom: -0.3rem;
}

.call-btn {
  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: 20px;
}

.call-btn .play-btn > i {
  --icon-size: 56px;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.call-btn .play-btn:before, .call-btn .play-btn:after {
  background-color: var(--theme-color);
}

.call-btn .play-btn:hover > i {
  background-color: var(--title-color);
}

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

.call-btn .btn-text {
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.call-btn .btn-title {
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
}

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

.btn-group:has(.call-btn) {
  gap: 50px;
}

/* Small devices */
@media (max-width: 767px) {
  .img-box1 {
    margin-right: 0;
    margin-left: 0;
  }
  .img-box1 .year-counter {
    bottom: 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .btn-group:has(.call-btn) {
    gap: 30px;
  }
  .about-feature-wrap {
    grid-template-columns: auto;
    padding-bottom: 25px;
    margin-bottom: 35px;
  }
}

/* About 2 ---------------------------------- */
@media (min-width: 1300px) {
  .img-box3 {
    margin-right: 56px;
  }
}

.img-box3 {
  position: relative;
  z-index: 2;
  line-height: 1px;
}

.img-box3 .img1 {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 15px;
}

.img-box3 .img2 {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--white-color);
  padding: 10px 0 0 10px;
  border-radius: 10px;
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

.img-box3 .img2 img {
  border-radius: inherit;
}

.img-box3 .img3 {
  position: absolute;
  left: -90px;
  top: 80px;
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

.img-box3 .img3 img {
  border-radius: 10px;
}

.img-box3 .shape1 {
  position: absolute;
  top: 80px;
  left: -195px;
  z-index: -1;
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .img-box3 .img3 {
    left: -40px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box3 {
    margin-left: 150px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .img-box3 {
    margin-left: 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box3 .img3 {
    left: -28px;
    max-width: 35%;
  }
  .img-box3 .img2 {
    max-width: 70%;
  }
  .img-box3 .shape1 {
    max-width: 50%;
    left: -30px;
    top: 40%;
  }
}


@media (min-width: 1300px) {
  .img-box4 {
    margin-left: -90px;
    margin-right: 56px;
  }
}

.img-box4 {
  position: relative;
  text-align: center;
}

.img-box4 img {
  width: 100%;
  max-width: 750px;
}

.img-box4 .img-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.img-box4 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* About Feature ---------------------------------- */
.about-sec-v4 {
  padding-top: 67px;
}

.img-box6 {
  position: relative;
}

.img-box6 .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

.img-box6 .shape2 {
  position: absolute;
  top: 0;
  left: -40px;
  -webkit-animation: moving 8s linear infinite;
          animation: moving 8s linear infinite;
}

.color-animate {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 16;
  background-color: #F2BA4C;
  opacity: 0.45;
  -webkit-filter: blur(300px);
          filter: blur(300px);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation: bgColor 8s ease-in-out infinite;
          animation: bgColor 8s ease-in-out infinite;
}

/* Medium devices */
@media (max-width: 991px) {
  .img-box6 {
    text-align: center;
  }
  .img-box6 .shape2 {
    left: 0;
  }
  .list-center {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .list-center.two-column {
    max-width: 500px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box6 .shape1,
  .img-box6 .shape2 {
    max-width: 130px;
  }
}

/* About 4 ---------------------------------- */
.about-sec4 {
  position: relative;
  min-height: 770px;
  border-radius: 30px;
  z-index: 2;
  background-attachment: fixed;
  /* Medium devices */
}

@media (max-width: 991px) {
  .about-sec4 {
    height: 472px;
  }
}

.about-sec4 .about-shape4 {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 512px;
  border-radius: 30px;
  background-color: var(--theme-color);
  z-index: -1;
  overflow: hidden;
}

/* About 5 ---------------------------------- */
.about-area5 {
  border: 1px solid #E3E7F0;
  padding: 80px;
  border-radius: 30px;
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 991px) {
  .about-area5 {
    padding: 80px 40px;
  }
}

@media (max-width: 767px) {
  .about-area5 {
    padding: 80px 20px;
  }
}

.th-experience {
  position: absolute;
  bottom: 80px;
  left: 0px;
  z-index: 2;
  padding: 30px 30px 30px 40px;
  background: var(--theme-color);
  border-radius: 25px 0px 0px 25px;
  width: 340px;
  color: var(--white-color);
  /* Medium Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .th-experience {
    left: -30px;
  }
}

@media (max-width: 375px) {
  .th-experience {
    bottom: 0;
    padding: 20px;
  }
}

.th-experience_content {
  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: 20px;
}

.th-experience .experience-year {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -1.08px;
  color: var(--white-color);
  margin-bottom: 0px;
}

.th-experience .experience-text {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 0;
}

.th-experience.style2 {
  position: relative;
  width: 120px;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 25px 18px;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 13px 25px 0px rgba(0, 0, 0, 0.05);
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .th-experience.style2 {
    left: 0;
  }
}

.th-experience.style2 .th-experience_content {
  display: block;
  text-align: center;
}

.th-experience.style2 .experience-year {
  font-size: 36px;
  color: var(--theme-color);
  margin-bottom: 0px;
}

.th-experience.style2 .experience-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  margin-bottom: 0;
}

.img-box6 {
  position: relative;
  z-index: 2;
  text-align: right;
}

.img-box6 .img1 {
  position: relative;
  text-align: right;
  z-index: 2;
  border-radius: 30px;
  /* Extra small devices */
  /* Large devices */
}

@media (max-width: 575px) {
  .img-box6 .img1 {
    text-align: center;
  }
}

.img-box6 .img1 img {
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .img-box6 .img1 {
    margin-top: 50px;
  }
}

.img-box6 .th-experience {
  text-align: left;
}

.down-option-area {
  position: relative;
  border-radius: 30px;
  border: 1px solid #E3E7F0;
  background: #F8FAFF;
  padding: 0 30px;
  margin-top: 30px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .down-option-area {
    padding: 30px;
  }
}

.down-option-area_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 991px) {
  .down-option-area_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}

@media (max-width: 767px) {
  .down-option-area_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.down-option-area_wrapper .about-counter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  margin-right: 50px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .down-option-area_wrapper .about-counter {
    margin-right: 0;
  }
}

@media (max-width: 1199px) {
  .down-option-area_wrapper .about-counter {
    display: block;
  }
}

@media (max-width: 991px) {
  .down-option-area_wrapper .about-counter {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .down-option-area_wrapper .about-counter {
    margin: 20px 0;
  }
}

.down-option-area_wrapper .about-counter:before {
  content: "";
  position: absolute;
  top: -2px;
  width: 1px;
  height: 124px;
  right: 25%;
  background: #E2E4EA;
  -webkit-transform: matrix(-0.97, -0.26, -0.26, 0.97, 0, 0);
      -ms-transform: matrix(-0.97, -0.26, -0.26, 0.97, 0, 0);
          transform: matrix(-0.97, -0.26, -0.26, 0.97, 0, 0);
  /* Large devices */
}

@media (max-width: 1199px) {
  .down-option-area_wrapper .about-counter:before {
    display: none;
  }
}

.down-option-area_wrapper .about-counter .cilent-box_title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  display: block;
  color: var(--title-color);
}

.down-option-area_wrapper .about_review {
  display: block;
  margin-bottom: 3px;
}

.down-option-area_wrapper .about_review i {
  color: #FFBE11;
  font-size: 14px;
  margin-right: 3px;
}

.down-option-area_wrapper .cilent-box_counter {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.down-option-area_wrapper .cilent-box .counter-number {
  font-size: 14px;
  font-weight: 700;
}


/* About 8 ---------------------------------- */
.img-box10 .img1 {
  position: relative;
  display: inline-block;
}

.img-box10 .img1 .img2 {
  position: absolute;
  right: 0;
  bottom: 100px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .img-box10 .img1 .img2 img {
    max-width: 200px;
  }
}

.about-sec-8 {
  max-width: 1720px;
  margin: auto;
}

.about-text {
  color: #8E939D;
}

/* About 9 ---------------------------------- */
.img-box11 {
  text-align: end;
  position: relative;
  display: inline-block;
  padding: 0 80px 0 174px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box11 {
    padding: 0 40px 0 70px;
  }
}

.img-box11 .img2 {
  bottom: 100px;
  left: 0;
  box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
  border-radius: 20px;
  display: inline-block;
  position: absolute;
}

.img-box11:after {
  content: '';
  position: absolute;
  inset: 299px 0 54px 75px;
  border-radius: 30px;
  background: var(--theme-color);
  z-index: -1;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box11:after {
    inset: 299px 0 54px 25px;
  }
}

.img-box12 {
  text-align: end;
  position: relative;
  display: inline-block;
  padding: 0 250px 0 80px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .img-box12 {
    padding: 0 170px 0 80px;
  }
}

@media (max-width: 1199px) {
  .img-box12 {
    padding: 0 70px 0 40px;
  }
}

.img-box12 .img2 {
  bottom: 100px;
  right: 0;
  box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
  border-radius: 20px;
  display: inline-block;
  position: absolute;
}

.img-box12:after {
  content: '';
  position: absolute;
  inset: 299px 75px 54px 0;
  border-radius: 30px;
  background: var(--theme-color);
  z-index: -1;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box12:after {
    inset: 299px 20px 54px 0;
  }
}

/*about 10 ------------------------ */
.img-box13 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box13 {
    margin-top: 50px;
  }
}

.img-box13 .img1 {
  border-radius: 30px;
  margin-right: 75px;
  height: 607px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box13 .img1 {
    height: 100%;
    margin: 0;
  }
}

.img-box13 .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.about-counter-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .about-counter-wrapp {
    display: block;
  }
}

.about-counter-wrapp .img1 {
  border-radius: 20px;
}

@media (max-width: 480px) {
  .about-counter-wrapp .img1 {
    margin-bottom: 30px;
  }
}

.about-counter-wrapp .img1 img {
  width: 100%;
  border-radius: 20px;
}

.counter-card8 {
  position: relative;
  width: 210px;
  height: 165px;
  padding: 50px 20px;
  border-radius: 0px 20px 20px 80px;
  text-align: center;
  z-index: 2;
}

@media (max-width: 480px) {
  .counter-card8 {
    width: 100%;
  }
}

.counter-card8:not(:last-child) {
  margin-bottom: 10px;
  border-radius: 80px 20px 20px 0px;
}

.counter-card8:not(:last-child):before {
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
}

.counter-card8:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: -webkit-linear-gradient(top, var(--theme-color2) 0%, var(--theme-color) 100%);
  background: linear-gradient(180deg, var(--theme-color2) 0%, var(--theme-color) 100%);
  opacity: 0.5;
  z-index: -1;
}

.counter-card8 .box-number {
  font-weight: 700;
  font-size: 44px;
  line-height: 44px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-top: -0.5rem;
  margin-bottom: 10px;
}

.counter-card8 .counter-text {
  color: var(--white-color);
}

/* About 9 style2 ------------------------------- */
.about-area3 {
  position: relative;
  background: #F8FAFF;
  border: 1px solid #E3E7F0;
  border-radius: 30px;
  padding: 80px;
  max-width: 1380px;
  display: block;
  margin: auto;
  z-index: 3;
  /* Large devices */
}

@media (max-width: 1199px) {
  .about-area3 {
    padding: 80px 20px;
  }
}

.img-box9 {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box9 {
    margin-top: 50px;
  }
}

@media (max-width: 440px) {
  .img-box9 {
    display: block;
  }
}

.img-box9 .img1 {
  margin-left: 45px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box9 .img1 {
    margin: 0;
  }
}

@media (max-width: 440px) {
  .img-box9 .img1 {
    display: none;
  }
}

.img-box9 .img3 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.img-box9 .img3 img {
  width: 100%;
  height: 100%;
}

@media (max-width: 440px) {
  .img-box9 .img3 {
    display: none;
  }
}

.img-box9 img {
  width: 100%;
  text-align: right;
  border-radius: 30px;
}

.img-box9 .th-experience {
  bottom: 0px;
  left: -38px;
  border-radius: 25px 0px 25px 25px;
  width: 340px;
}

@media (max-width: 440px) {
  .img-box9 .th-experience {
    position: relative;
    margin-top: 20px;
    width: 100%;
    left: 0;
  }
}

/* About 13 start  --------------------- */
.img-box14 {
  position: relative;
  z-index: 2;
  line-height: 1px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box14 {
    margin-bottom: 50px;
  }
}

.img-box14 .img1 {
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
}

.img-box14 .img2 {
  position: absolute;
  bottom: -6%;
  right: 10%;
  background-color: var(--white-color);
  padding: 10px 0 0 10px;
  -webkit-filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(-10px 10px 15px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

.img-box14 .img2 img {
  border-radius: inherit;
}

.img-box14 .img3 {
  position: absolute;
  left: -90px;
  top: 80px;
  -webkit-filter: drop-shadow(-10px 10px 50px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(-10px 10px 50px rgba(0, 0, 0, 0.15));
  border-radius: 10px;
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@media (max-width: 1399px) {
  .img-box14 .img3 {
    left: -10px;
  }
}

.img-box14 .img3 img {
  border-radius: 10px;
}

.img-box14 .shape1 {
  position: absolute;
  top: -15px;
  right: -47px;
  z-index: -1;
  /* Medium devices */
}

@media (max-width: 991px) {
  .img-box14 .shape1 {
    right: 0;
  }
}

.img-box14 .shape2 {
  position: absolute;
  position: absolute;
  top: -7%;
  right: 25%;
  -webkit-animation: spin 8s linear infinite;
          animation: spin 8s linear infinite;
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box14 .img3 {
    left: -28px;
    max-width: 35%;
  }
  .img-box14 .img2 {
    max-width: 70%;
  }
  .img-box14 .shape1 {
    max-width: 50%;
    left: -30px;
    top: 40%;
  }
}

/* About 13 end  --------------------- */
/* About 14 start ----------------------*/
.about-sec-12 {
  max-width: 1760px;
  margin: auto;
  background-color: #EFF1F9;
}

.img-box15 {
  position: relative;
  z-index: 2;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box15 {
    margin-bottom: 120px;
  }
}

@media (max-width: 575px) {
  .img-box15 {
    margin-bottom: 80px;
  }
}

.img-box15 .img1 img {
  box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
  border-radius: 10px;
}

.img-box15 .img2 {
  position: absolute;
  bottom: -10%;
  right: 18%;
  /* Small devices */
}

@media (max-width: 767px) {
  .img-box15 .img2 {
    display: none;
  }
}

.img-box15 .img3 {
  position: absolute;
  top: 20%;
  right: 18%;
  /* Small devices */
}

@media (max-width: 767px) {
  .img-box15 .img3 {
    display: none;
  }
}

.img-box15 .about-shape15 {
  position: absolute;
  top: 30px;
  right: 9%;
  width: 571px;
  height: 428px;
  border: 4px solid var(--theme-color);
  box-shadow: 5px 6px 15px 3px rgba(0, 31, 96, 0.1);
  border-radius: 10px;
  z-index: -1;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .img-box15 .about-shape15 {
    display: none;
  }
}

@media (max-width: 450px) {
  .two-column.list-center.style2 {
    max-width: 100%;
  }
}

/* About 14 end ----------------------*/
/* About 15 start -------------------------*/
.img-box16 {
  position: relative;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box16 {
    margin-bottom: 20px;
  }
}

.img-box16 img {
  border-radius: 20px;
}

.img-box16 .img2 {
  position: absolute;
  bottom: -10%;
  right: 60px;
  background-color: var(--white-color);
  padding: 5px;
  border-radius: 20px;
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .img-box16 .img2 {
    right: 20%;
  }
}

@media (max-width: 991px) {
  .img-box16 .img2 {
    right: 10%;
  }
}

@media (max-width: 767px) {
  .img-box16 .img2 {
    right: -5%;
  }
}

@media (max-width: 480px) {
  .img-box16 .img2 {
    position: relative;
  }
}

.img-box16 .img2 img {
  width: 100%;
  object-fit: cover;
}

.img-box16 .img2:before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #3E66F3;
  mix-blend-mode: multiply;
  opacity: 0.92;
  border-radius: 20px;
}

.img-box16 .img2 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-feature-wrap.style4 {
  gap: 18px;
}

.about-feature.style4 {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.year-counter.style2 {
  position: absolute;
  background-color: var(--white-color);
  border: 1px solid #E3E7F0;
  box-shadow: none;
  border-radius: 10px;
  padding: 30px 20px;
  width: 230px;
  height: 106px;
  top: 40px;
  right: 60px;
  bottom: unset;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .year-counter.style2 {
    right: 20px;
  }
}

@media (max-width: 1199px) {
  .year-counter.style2 {
    right: 20%;
  }
}

@media (max-width: 991px) {
  .year-counter.style2 {
    right: 10%;
  }
}

@media (max-width: 767px) {
  .year-counter.style2 {
    right: -5%;
  }
}

@media (max-width: 480px) {
  .year-counter.style2 {
    position: relative;
    top: 20px;
    right: 0;
  }
}

.year-counter.style2 .year-counter_number {
  color: var(--theme-color);
  font-size: 32px;
  margin-bottom: 5px;
  line-height: 32px;
  margin-top: -0.4rem;
}

.year-counter.style2 .year-counter_text {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #1C1C25;
}

.btn-group.style3 {
  gap: 30px;
}

.call-btn i {
  width: 51px;
  height: 51px;
  line-height: 51px;
  text-align: center;
  border-radius: 50%;
  background: #CCD6FF;
  color: var(--theme-color);
  font-size: 24px;
}

.call-btn .btn-text {
  font-size: 16px;
}

.call-btn .btn-title {
  font-size: 16px;
}

/* about area 15 end --------------------------*/
/* about area 17 start --------------------------*/
.img-box17 {
  position: relative;
  /* Large devices */
}

.img-box17 .img1 {
  position: relative;
  z-index: 2;
}

.img-box17 .img1:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--theme-color);
  border-radius: 20px;
  z-index: -1;
}

.img-box17 .img1 img {
  width: 100%;
  object-fit: cover;
  margin: 5px 0 0 5px;
  border-radius: 20px 13px 20px 20px;
}

@media (max-width: 1199px) {
  .img-box17 {
    margin-bottom: 50px;
  }
}

.about-feature-wrap.style5 {
  gap: 76px;
  margin-bottom: 0;
  padding: 0;
  border: none;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .about-feature-wrap.style5 {
    display: block;
  }
}

.about-feature-wrap.style5 .btn-group {
  border-top: 1px solid #DBDBDB;
  margin-top: 30px;
  padding-top: 50px;
}

.about-feature.style5 {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-feature.style5:not(:last-child) {
  margin-bottom: 20px;
}

.about-feature.style5 .about-feature_title {
  font-size: 24px;
  font-weight: 500;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .about-feature.style5 .about-feature_title {
    font-size: 20px;
  }
}

.about-img {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .about-img {
    margin-top: 40px;
  }
}

.about-img img {
  box-shadow: 6px 6px 44.2px 10px rgba(0, 31, 96, 0.15);
  border-radius: 6px;
}

/* about area 17 end --------------------------*/
/* about area 18 start ------------------*/
.img-box18 {
  margin-top: 30px;
}

.img-box18 .img1 {
  position: relative;
  border-radius: 30px;
}

.img-box18 .img1:before {
  content: "";
  position: absolute;
  width: 769px;
  height: 404px;
  left: -30px;
  top: -30px;
  background: #EFF1F9;
  border-radius: 30px;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .img-box18 .img1:before {
    width: 100%;
    height: 100%;
  }
}

.img-box18 .img1 img {
  -webkit-filter: drop-shadow(5px 10px 30px rgba(0, 31, 96, 0.05));
          filter: drop-shadow(5px 10px 30px rgba(0, 31, 96, 0.05));
  border-radius: 20px;
}

.about17-counter-wrapp {
  background: #EFF1F9;
  border-radius: 30px;
}

.counter-card9 {
  padding: 40px;
}

.counter-card9-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid var(--white-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .counter-card9-wrap {
    display: block;
  }
}

.counter-card9:first-child {
  padding: 40px 40px 0 40px;
}

.counter-card9:not(:last-child) {
  border-right: 2px solid var(--white-color);
}

.counter-card9 .box-number {
  font-size: 54px;
  margin-top: -0.6rem;
  margin-bottom: 0;
}

.counter-card9 .counter-title {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-color);
}

.counter-card9 .counter-text {
  margin-bottom: -0.4rem;
}

.about17-client-wrapp {
  padding: 0 40px;
}

.about17-client-wrapp .cilent-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* Small devices */
}

@media (max-width: 767px) {
  .about17-client-wrapp .cilent-box {
    display: block;
  }
}

.about17-client-wrapp .about-content {
  padding: 40px 0 0 0;
}

.about17-client-wrapp .box-title {
  margin-bottom: 0;
}

.about17-client-wrapp .title {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.about17-client-wrapp .about-wrapp {
  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: 16px;
}

.about17-client-wrapp .about_review i {
  color: #FF9900;
}

.about17-client-wrapp .line-btn {
  text-transform: none;
}

.about17-client-wrapp .line-btn:before {
  display: none;
}

.about17-client-wrapp .about17-wrapp {
  position: relative;
}

.about17-client-wrapp .about17-wrapp .about17-img {
  margin: 15px 0;
  height: 168px;
  /* Small devices */
}

@media (max-width: 767px) {
  .about17-client-wrapp .about17-wrapp .about17-img {
    height: 100%;
  }
}

.about17-client-wrapp .about17-wrapp .about17-img img {
  border-radius: 10px;
}

.about17-text {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  height: 150px;
}

.about17-text span {
  background: #407360;
  border-radius: 30px;
  display: inline-block;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  color: var(--white-color);
  padding: 12px 30px;
}

.about17-text span:nth-child(1) {
  position: absolute;
  left: 0;
  -webkit-transform: rotate(-35deg);
      -ms-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.about17-text span:nth-child(2) {
  position: absolute;
  left: 10%;
  bottom: 22px;
  background: #5C3AE2;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.about17-text span:nth-child(3) {
  position: absolute;
  top: 13%;
  left: 26%;
  background: #F9B317;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
  z-index: -1;
}

.about17-text span:nth-child(4) {
  position: absolute;
  left: 41%;
  bottom: 20%;
  background: #02CE80;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  z-index: -2;
}

/* about area 18 end ------------------*/
/* about area 19 start ------------------*/
.about16-counter-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #EFF1F9;
  padding: 26px 30px;
  border-radius: 10px;
  margin-bottom: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .about16-counter-wrapp {
    display: block;
  }
}

.about16-year-counter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  max-width: 230px;
  /* Small devices */
}

@media (max-width: 767px) {
  .about16-year-counter:first-child {
    margin-bottom: 20px;
  }
}

.about16-year-counter_number {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: var(--theme-color);
  margin-bottom: 0;
}

.about16-year-counter_text {
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--title-color);
  display: block;
  margin-bottom: 0;
}

.img-box19 {
  position: relative;
  text-align: center;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box19 {
    margin-top: 50px;
  }
}

.img-box19 .img1 {
  position: relative;
  width: 100%;
  border-radius: 20px;
}

.img-box19 .img1 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.img-box19 .img1:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: -webkit-linear-gradient(bottom, rgba(28, 28, 37, 0.4), rgba(28, 28, 37, 0.4));
  background: linear-gradient(0deg, rgba(28, 28, 37, 0.4), rgba(28, 28, 37, 0.4));
}

.img-box19 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* about area 19 end ------------------*/
/* about area 20 start ------------------*/
.img-box20 {
  position: relative;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box20 {
    margin-bottom: 50px;
  }
}

.img-box20 .img1 {
  border-radius: 20px;
}

.img-box20 .img1 img {
  width: 100%;
  border-radius: 20px;
}

.img-box20 .th-experience {
  left: -24px;
  bottom: -1px;
  padding: 23px 40px 30px 64px;
  -webkit-clip-path: path("M364 25C364 11.1929 352.807 0 339 0H24V60V96H0L24 120H339C352.807 120 364 108.807 364 95V25Z");
          clip-path: path("M364 25C364 11.1929 352.807 0 339 0H24V60V96H0L24 120H339C352.807 120 364 108.807 364 95V25Z");
  border-radius: 0 20px 20px 0px;
  overflow: hidden;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box20 .th-experience {
    bottom: -3px;
  }
}

.img-box20 .about-shape17 {
  position: absolute;
  top: 0;
  left: -20px;
  width: 622px;
  height: 492px;
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  z-index: -1;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .img-box20 .about-shape17 {
    width: 100%;
    height: 100%;
  }
}

.two-column.style4 {
  display: grid;
  background: #EFF1F9;
  padding: 30px;
  border-radius: 20px;
  /* Small devices */
}

@media (max-width: 767px) {
  .two-column.style4 {
    padding: 25px;
  }
}

@media (max-width: 450px) {
  .two-column.style4 {
    max-width: 100% !important;
  }
}

.checklist.style11:not(:last-child) {
  border-right: 1px solid rgba(101, 106, 116, 0.2);
  margin-right: 90px;
  padding-right: 90px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .checklist.style11:not(:last-child) {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
}

.checklist.style11 li {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 1399px) {
  .checklist.style11 li {
    font-size: 20px;
  }
}

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

/* about area 20 end ------------------*/
/* about area 21 start ------------------*/
.img-box21 {
  position: relative;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box21 {
    margin-bottom: 50px;
  }
}

.img-box21 img {
  border-radius: 20px;
}

.img-box21 .img2 {
  position: absolute;
  top: 0;
  right: 50px;
}

.img-box21 .th-experience {
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  border-radius: 10px;
  text-align: center;
  left: 30%;
  width: 229px;
  padding: 20px;
}

.img-box21 .th-experience .experience-year {
  font-size: 36px;
  margin-top: -0.4rem;
}

.img-box21 .th-experience .experience-text {
  font-size: 16px;
}

/* about area 21 end ------------------*/
/* about area 22 start ------------------*/
.img-box22 {
  position: relative;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box22 {
    margin-bottom: 120px;
  }
}

.img-box22 .img1 {
  position: relative;
  border-radius: 20px;
  z-index: 2;
  margin-right: 110px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box22 .img1 {
    margin: 0;
  }
}

.img-box22 .img1:before {
  content: "";
  position: absolute;
  inset: 0;
  top: 50px;
  bottom: -50px;
  left: 50px;
  right: -50px;
  border: 2px solid var(--theme-color);
  border-radius: 20px;
  z-index: -1;
}

.img-box22 .img1 img {
  width: 100%;
  border-radius: 20px;
}

.img-box22 .img2 {
  position: absolute;
  bottom: -10%;
  right: 13%;
  z-index: 2;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .img-box22 .img2 {
    display: none;
  }
}

.img-box22 .img2 img {
  box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
  border-radius: 20px;
}

.about-feature.style6 {
  gap: 15px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}

.about-feature.style6 .box-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0;
  background: #EFF1F9;
}

.about-feature.style6 .box-title {
  font-size: 20px;
  margin-bottom: 6px;
}

/* about area 22 end ------------------*/
/* About area 23 start -----------------------*/
.about-sec-20 {
  max-width: 1800px;
  display: block;
  margin: auto;
  border-radius: 50px;
}

.img-box23 {
  position: relative;
  height: 529px;
  /* Extra small devices */
  /* Large devices */
}

@media (max-width: 375px) {
  .img-box23 {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .img-box23 {
    margin-bottom: 50px;
  }
}

.img-box23 img {
  border-radius: 20px;
}

.img-box23 .img2 {
  position: absolute;
  top: 66px;
  right: 50px;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box23 .img2 {
    right: 20%;
  }
}

@media (max-width: 991px) {
  .img-box23 .img2 {
    right: 0%;
  }
}

@media (max-width: 375px) {
  .img-box23 .img2 {
    display: none;
  }
}

.img-box23 .img3 {
  position: absolute;
  bottom: 0;
  left: 0;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .img-box23 .img3 {
    display: none;
  }
}

.img-box23 .about-dots {
  position: absolute;
  right: 70px;
  bottom: 20px;
  z-index: -1;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box23 .about-dots {
    right: 20%;
  }
}

@media (max-width: 991px) {
  .img-box23 .about-dots {
    right: 0%;
  }
}

@media (max-width: 375px) {
  .img-box23 .about-dots {
    display: none;
  }
}

.img-box23 .th-experience {
  top: 35%;
  bottom: unset;
  left: 30%;
  width: 178px;
  border-radius: 30px;
  padding: 26px 30px;
  text-align: center;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .img-box23 .th-experience {
    left: unset;
    top: unset;
    right: 0;
    bottom: 0;
  }
}

.img-box23 .th-experience .experience-year {
  font-size: 36px;
  font-weight: 600;
  margin-top: -0.3rem;
}

.img-box23 .th-experience .experience-text {
  font-size: 16px;
  font-weight: 400;
}

.two-column.style5 {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 991px) {
  .two-column.style5 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .two-column.style5 {
    display: block;
    max-width: 100% !important;
  }
}

.two-column.style5 .checklist {
  /* Small devices */
}

@media (max-width: 767px) {
  .two-column.style5 .checklist:not(:last-child) {
    margin-bottom: 35px;
  }
}

.two-column.style5 .checklist li {
  color: #A1A6B0;
}

.cilent-box.style2 .cilent-box_counter {
  color: #A1A6B0;
}

/* About area 23 end -----------------------*/
/* About area 24 start -------------------------*/
.about-area21 {
  max-width: 1800px;
  background: #16181D;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: block;
  margin: auto;
}

.img-box24 {
  position: relative;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  border-radius: 20px;
  z-index: 2;
  height: 455px;
  margin-left: -50px;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .img-box24 {
    margin: 0 0 30px 0;
  }
}

@media (max-width: 375px) {
  .img-box24 {
    height: 300px;
  }
}

.img-box24:before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #16181D;
  border-radius: 20px;
  z-index: -1;
}

.img-box24 .img1 {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.img-box24 .img1 img {
  border-radius: 20px;
  background: var(--white-color);
  -webkit-backdrop-filter: blur(33.4px);
          backdrop-filter: blur(33.4px);
}

.img-box24 .img2 {
  position: absolute;
  top: 15px;
  right: 0;
  z-index: 3;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .img-box24 .img2 {
    display: none;
  }
}

.img-box24 .img2:before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -10px;
  left: -10px;
  background: var(--white-color);
  -webkit-backdrop-filter: blur(33.4px);
          backdrop-filter: blur(33.4px);
  border-radius: 20px;
  z-index: -1;
}

.img-box24 .img2 img {
  border-radius: 20px;
}

.img-box24 .th-experience {
  background: var(--white-color);
  border: 1px solid #E3E7F0;
  border-radius: 10px;
  width: 229px;
  left: unset;
  right: 14px;
  bottom: 14px;
  text-align: center;
}

.img-box24 .th-experience .experience-year {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  background: -webkit-linear-gradient(top, #02CE80 0%, #7BD706 100%);
  background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: -0.5rem;
}

.img-box24 .th-experience .experience-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #A1A6B0;
  margin-bottom: -0.3rem;
}

.about21-counter-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #16181D;
  padding: 30px 40px;
  margin-bottom: 50px;
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .about21-counter-wrapp {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .about21-counter-wrapp {
    display: block;
  }
}

.about21-counter-wrapp .divided {
  width: 1px;
  height: 33px;
  background: rgba(255, 255, 255, 0.1);
  /* Small devices */
}

@media (max-width: 767px) {
  .about21-counter-wrapp .divided {
    display: none;
  }
}

.about21-year-counter {
  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;
  /* Small devices */
}

@media (max-width: 767px) {
  .about21-year-counter:first-child {
    margin-bottom: 20px;
  }
}

.about21-year-counter_number {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

.about21-year-counter_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #A1A6B0;
  display: block;
  margin-bottom: 0;
}

.sec-text4 {
  color: #A1A6B0;
}

/* about area 22 -----------------*/
.img-box26 {
  height: 640px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .img-box26 {
    height: 100%;
  }
}

/* beanq area --------------------------*/
.beanq-tab button {
  border: none;
  background-color: #EEF1F6;
  border-radius: 24px;
  max-width: 192px;
  height: 182px;
  /* Small devices */
}

.beanq-tab button:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .beanq-tab button {
    margin: 10px;
  }
}

.about-area25 {
  background-color: #131313;
}

.img-box25 {
  margin-left: -50px;
  margin-right: 50px;
  /* Large devices */
}

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

.about-area {
  background-color: #F4F6FA;
}

.img-box27 .img1 {
  margin-left: -10%;
}

.about-sec-9 {
  background-color: #F2F8F7;
}

.img-box28 {
  margin-top: -55px;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .img-box28 {
    margin-top: 0;
  }
}

.banner-area {
  position: relative;
  margin: 0 60px;
  z-index: 2;
  border-radius: 40px;
  height: 740px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Medium devices */
}

@media (max-width: 991px) {
  .banner-area {
    height: 100%;
    padding: 80px 0;
    margin: 0 20px;
  }
}

.banner-area:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-linear-gradient(bottom, rgba(22, 24, 29, 0.6), rgba(22, 24, 29, 0.6));
  background: linear-gradient(0deg, rgba(22, 24, 29, 0.6), rgba(22, 24, 29, 0.6));
  border-radius: inherit;
}

.banner-title-area .box-title {
  font-weight: 700;
  font-size: 72px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 35px;
  /* Medium Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .banner-title-area .box-title {
    font-size: 55px;
    line-height: 65px;
  }
}

@media (max-width: 991px) {
  .banner-title-area .box-title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 575px) {
  .banner-title-area .box-title {
    font-size: 35px;
    line-height: 45px;
  }
}

.banner-title-area .box-title .title {
  background: -webkit-linear-gradient(199.14deg, #FF8139 12.46%, #FF4646 35.9%, #9A5BEB 87.75%);
  background: linear-gradient(250.86deg, #FF8139 12.46%, #FF4646 35.9%, #9A5BEB 87.75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
/*------------------- 4.00. Counter  -------------------*/

/* counter 9 start ---------------------*/
.counter-area-9 {
background: #F28029;
background: radial-gradient(circle,rgba(242, 128, 41, 1) 50%, rgba(217, 103, 33, 1) 100%);
  color:#fff; 
  border-radius: 20px;
  max-width: 1340px;
  display: block;
  margin: auto;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .counter-area-9 {
    max-width: 100%;
    border-radius: 0;
  }
}

.chamada .img1{position:absolute; bottom:0}

.two-column:has(.checklist.style6) {
  gap: 30px;
}

.bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.bg-img img {
  width: 100%;
  height: 100%;
}

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

.th-video img {
  border-radius: inherit;
}

.th-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.th-video .play-btn > i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.icon-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: 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 30px;
}

.video-btn {
  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;
  color: var(--body-color);
  text-transform: uppercase;
  line-height: 1.6;
}

.video-btn .play-btn {
  --icon-size: 50px;
  margin-right: 15px;
}

.video-btn .play-btn > i {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding-right: 0.1em;
}

.video-btn .play-btn:before {
  background-color: var(--theme-color);
}

.video-btn .small-text {
  font-size: 10px;
  text-decoration: underline;
  display: block;
}

.video-btn .big-text {
  font-size: 14px;
  font-weight: 500;
}

/* Large devices */
@media (max-width: 1199px) {
  p.mb-40 {
    margin-bottom: 35px;
  }
  p.mb-45 {
    margin-bottom: 38px;
  }
}

/* th anim start----------------------- */
.th-anim {
  position: relative;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.th-anim img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

/* th anim end ----------------------- */
/* custom-mouse-pointer-end */
.cursor2 {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--theme-color);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  z-index: 999999;
  -webkit-transform: translate(calc(-50% + 15px), -50%);
      -ms-transform: translate(calc(-50% + 15px), -50%);
          transform: translate(calc(-50% + 15px), -50%);
}

.cursor2.hover {
  display: none;
}

.cursor {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--theme-color);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  transition: 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.4s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
}

.cursor.hover {
  display: none;
}

/*------------------- 4.00. Why -------------------*/
/* Why 1 ---------------------------------- */
.appointment-tabs.nav-tabs {
  border-bottom: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.appointment-tabs.nav-tabs .nav-item.show .nav-link,
.appointment-tabs.nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: transparent;
}

.appointment-tabs .nav-link {
  position: relative;
  padding: 34px 60px;
  font-size: 24px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--white-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  z-index: 2;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
  /* Small devices */
  /* Extra small devices */
}

.appointment-tabs .nav-link:hover {
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
}

.appointment-tabs .nav-link:hover:after {
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
}

.appointment-tabs .nav-link:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.appointment-tabs .nav-link:after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 50px;
  background: #16181D;
  z-index: -1;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}

@media (max-width: 767px) {
  .appointment-tabs .nav-link {
    font-size: 20px;
    padding: 20px 60px;
  }
}

@media (max-width: 375px) {
  .appointment-tabs .nav-link {
    font-size: 18px;
  }
}

.prompts-tabs {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

.img-box2 {
  text-align: center;
  margin-left: 85px;
  position: relative;
  z-index: 2;
}

.img-box2:before, .img-box2:after {
  content: '';
  position: absolute;
  background-color: var(--theme-color);
  width: 100%;
  height: 100%;
  -webkit-animation: morph 10s ease-in-out infinite;
          animation: morph 10s ease-in-out infinite;
  z-index: -1;
}

.img-box2:before {
  top: -20px;
  left: -40px;
  opacity: 0.5;
  -webkit-animation-delay: 0.2;
          animation-delay: 0.2;
}

.img-box2:after {
  right: -20px;
  bottom: -40px;
  background-color: var(--smoke-color2);
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  z-index: -2;
}

.img-box2 .img1 img {
  -webkit-animation: morph 10s ease-in-out infinite;
          animation: morph 10s ease-in-out infinite;
  width: 100%;
  max-width: 760px;
}

.two-column {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 700px;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .img-box2 {
    margin-left: 0;
  }
  .img-box2:before {
    left: -20px;
  }
  .img-box2:after {
    right: -12px;
  }
}

@media (max-width: 450px) {
  .two-column {
    grid-template-columns: auto;
    gap: 18px;
  }
  .two-column.list-center {
    max-width: 230px;
  }
  .checklist.style2 li:not(:last-child) {
    margin-bottom: 18px;
  }
}

/* Why 2 ---------------------------------- */
.feature-circle {
  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: 14px;
  max-width: 310px;
}

.feature-circle-wrap {
  display: grid;
  grid-template-columns: auto auto;
  margin-bottom: 34px;
}

.feature-circle_title {
  font-size: 20px;
  margin-bottom: 7px;
}

.feature-circle_text {
  margin-bottom: 0px;
  font-size: 14px;
}

.feature-circle .progressbar {
  position: relative;
}

.feature-circle .circle-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 15px;
  background-color: var(--white-color);
  border-radius: 999px;
  text-align: center;
}

@media (min-width: 1300px) {
  .img-box5 {
    margin-left: 56px;
    margin-right: -77px;
  }
}

.img-box5 {
  position: relative;
  z-index: 2;
  margin-bottom: -46px;
  margin-top: -60px;
}

.img-box5 .year-counter {
  position: absolute;
  top: 20px;
  left: 40%;
  border-color: var(--smoke-color2);
  box-shadow: none;
  height: 155px;
  width: 155px;
  padding: 32px 0;
}

.img-box5 .year-counter_number {
  font-size: 36px;
}

.animate-shape1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.animate-shape1 svg {
  width: 100%;
  height: 100%;
}

.why-sec-v2 {
  overflow-x: hidden;
  margin-top: -440px;
  padding-top: 420px;
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box5 {
    max-width: 760px;
    margin-bottom: -20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .img-box5 .animate-shape1 {
    max-width: 610px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .feature-circle-wrap {
    grid-template-columns: auto;
    gap: 20px;
  }
}

.img-box7,
.img-box8 {
  position: relative;
  margin-left: 56px;
}

.img-box7 .shape1,
.img-box8 .shape1 {
  position: absolute;
  top: 0;
  left: 40px;
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

.img-box7 .shape2,
.img-box8 .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation: moving 8s linear infinite;
          animation: moving 8s linear infinite;
}

.img-box8 .shape1 {
  left: 0;
}

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

.img-box8 .color-animate {
  top: -200px;
  max-width: 400px;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .img-box7,
  .img-box8 {
    margin-left: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .img-box7,
  .img-box8 {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box7 .shape1 {
    max-width: 50px;
  }
  .img-box7 .shape2 {
    max-width: 70px;
  }
  .img-box8 .shape1 {
    max-width: 100px;
  }
  .img-box8 .shape2 {
    max-width: 100px;
  }
}

/* Why 5 start ------------------------*/
.skill-circle {
  /* Extra small devices */
}

.skill-circle-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 60px;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .skill-circle-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .skill-circle-wrap {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .skill-circle-wrap {
    display: block;
  }
}

@media (max-width: 575px) {
  .skill-circle {
    margin-bottom: 30px;
  }
}

.skill-circle .box-text {
  font-family: var(--body-font);
  color: var(--title-color);
  margin-bottom: 0px;
  position: absolute;
  bottom: 40px;
  left: 25px;
  text-align: center;
}

.skill-circle_text {
  margin-bottom: 0px;
  font-size: 14px;
}

.skill-circle .progressbar {
  position: relative;
  max-height: 176px;
}

.skill-circle .circle-num {
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  position: absolute;
  top: -20px;
  left: 0;
  width: 176px;
  height: 176px;
  line-height: 176px;
  border-radius: 50%;
  margin: 8px;
  text-align: center;
}

/* Why 5 end  ------------------------*/
/* Choose 2 ---------------------------------- */
.choose-tabs-wrapper {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1E2127;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  box-shadow: 0px 16px 48px 0px rgba(18, 20, 26, 0.64);
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .choose-tabs-wrapper {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .choose-tabs-wrapper {
    display: block;
  }
}

.choose-tabs-tabs {
  /* Medium devices */
}

.choose-tabs-tabs.nav-tabs {
  border-bottom: none;
  padding: 60px;
  display: block;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .choose-tabs-tabs.nav-tabs {
    padding: 60px 40px;
  }
}

@media (max-width: 991px) {
  .choose-tabs-tabs.nav-tabs {
    padding: 60px 40px 40px 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 375px) {
  .choose-tabs-tabs.nav-tabs {
    max-width: 100%;
    padding: 60px 20px 20px 20px;
  }
}

.choose-tabs-tabs.nav-tabs .nav-link:focus,
.choose-tabs-tabs.nav-tabs .nav-link:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.choose-tabs-tabs.nav-tabs .nav-item.show .nav-link,
.choose-tabs-tabs.nav-tabs .nav-link.active {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.choose-tabs-tabs .nav-link {
  position: relative;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1D2128;
  padding: 18px 40px;
  font-family: var(--title-font);
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  min-width: 330px;
  color: var(--white-color);
  text-align: left;
  display: block;
  box-shadow: none;
  /* Medium devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .choose-tabs-tabs .nav-link {
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .choose-tabs-tabs .nav-link {
    padding: 14px 20px;
  }
}

@media (max-width: 375px) {
  .choose-tabs-tabs .nav-link {
    font-size: 16px;
  }
}

.choose-tabs-tabs .nav-link:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .choose-tabs-tabs {
    margin-bottom: 30px;
  }
}

.choose-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .choose-wrapper {
    display: block;
    padding: 60px 40px 40px 0;
    margin: 0;
    border: none;
  }
}

@media (max-width: 991px) {
  .choose-wrapper {
    padding: 30px 40px 60px 40px;
  }
}

@media (max-width: 375px) {
  .choose-wrapper {
    padding: 30px 20px 60px 20px;
  }
}

.choose-wrapper .choose-image {
  min-width: 276px;
  height: 300px;
  border-radius: 30px;
  /* Large devices */
}

.choose-wrapper .choose-image img {
  width: 100%;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .choose-wrapper .choose-image {
    margin-top: 30px;
    min-width: 100%;
    width: 100%;
    height: 100%;
  }
}

.choose-content .sec-title {
  font-weight: 500;
  letter-spacing: normal;
}

.choose-content .box-text {
  font-size: 14px;
}

.choose-content .checklist {
  margin-bottom: 35px;
}

.choose-content .checklist li {
  color: var(--body-color);
  font-size: 14px;
  line-height: 16px;
}

.choose-content .checklist li:after {
  color: var(--body-color);
}

/* choose area  6 start ------------------------------------- */
.choose-image2 {
  position: relative;
  text-align: right;
  margin-right: 95px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .choose-image2 {
    margin: 0 0 40px 0;
  }
}

.choose-image2 .img1 {
  min-width: 561px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .choose-image2 .img1 {
    min-width: 100%;
  }
}

.choose-image2 .img1 img {
  width: 100%;
}

.choose-image2 .video-box4 {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* Large devices */
}

@media (max-width: 1199px) {
  .choose-image2 .video-box4 {
    left: 50%;
  }
}

.choose-image2 .video-box4 .play-btn:after, .choose-image2 .video-box4 .play-btn:before {
  background-color: var(--theme-color);
}

.choose-image2 .video-box4 .play-btn > i {
  --icon-size: 167px;
  --icon-font-size: 1.9em;
  background-color: var(--theme-color);
  color: var(--white-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .choose-image2 .video-box4 .play-btn > i {
    --icon-size: 114px;
  }
}

.choose-text {
  color: #A1A6B0;
  font-size: 16px;
}

/* choose area  6 end ------------------------------------- */

/* Why 8 ---------------------------------- */
.why-sec-4 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .why-sec-4 {
    background: transparent !important;
  }
}


.why-thumb-4 {
  text-align: center;
}

.sec-text3 {
  max-width: 600px;
  color: #A1A6B0;
}

/* choose area start ----------------------*/
.choose-feature5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: 564px;
  /* Small devices */
}

@media (max-width: 767px) {
  .choose-feature5 {
    width: 100%;
  }
}

.choose-feature5:not(:last-child) {
  margin-bottom: 30px;
}

.choose-feature5 .box-title {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.choose-feature5 .box-text {
  color: #A1A6B0;
  margin-bottom: -0.4rem;
}

.choose-image5 {
  position: relative;
  margin-right: -20px;
  z-index: 2;
  /* Large devices */
}

@media (max-width: 1199px) {
  .choose-image5 {
    margin: 0;
    text-align: center;
  }
}

.choose-image5:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(62, 102, 243, 0.2);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  z-index: -1;
}

.choose-image5 .choose-line {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: -1;
}

.video-sec .discount-wrapp {
  position: absolute;
  top: 17%;
  left: 50%;
  display: inline-block;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-sec .discount-wrapp .play-btn {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-sec .discount-wrapp .play-btn:before, .video-sec .discount-wrapp .play-btn:after {
  display: none;
}

.video-sec .discount-wrapp .play-btn > i {
  --icon-size: 114px;
  font-size: 25px;
  background: var(--theme-color);
  color: var(--title-color);
}

.video-sec .discount-wrapp .discount {
  position: absolute;
  left: 20%;
  top: 35%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  color: var(--theme-color);
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  text-align: center;
  margin-top: -5px;
  margin-bottom: 0;
}

.video-sec .discount-tag {
  display: inline-block;
  min-height: 161px;
  min-width: 161px;
  border-radius: 50%;
  z-index: 1;
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
  text-align: center;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  animation: spin 10s infinite alternate-reverse;
  /* Small devices */
}

@media (max-width: 1499px) {
  .video-sec .discount-tag {
    color: var(--white-color);
  }
}

@media (max-width: 767px) {
  .video-sec .discount-tag {
    color: var(--title-color);
  }
}

.video-sec .discount-tag span {
  --rotate-letter: 11deg;
  min-height: 85px;
  position: absolute;
  min-width: 85px;
  left: 18px;
  top: -3px;
  text-transform: uppercase;
  -webkit-transform-origin: bottom center;
      -ms-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-transform: rotate(var(--rotate-letter));
      -ms-transform: rotate(var(--rotate-letter));
          transform: rotate(var(--rotate-letter));
}

.video-sec .discount-tag span.char2 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
      -ms-transform: rotate(calc(var(--rotate-letter) * 2));
          transform: rotate(calc(var(--rotate-letter) * 2));
}

.video-sec .discount-tag span.char3 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
      -ms-transform: rotate(calc(var(--rotate-letter) * 3));
          transform: rotate(calc(var(--rotate-letter) * 3));
}

.video-sec .discount-tag span.char4 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
      -ms-transform: rotate(calc(var(--rotate-letter) * 4));
          transform: rotate(calc(var(--rotate-letter) * 4));
}

.video-sec .discount-tag span.char5 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
      -ms-transform: rotate(calc(var(--rotate-letter) * 5));
          transform: rotate(calc(var(--rotate-letter) * 5));
}

.video-sec .discount-tag span.char6 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
      -ms-transform: rotate(calc(var(--rotate-letter) * 6));
          transform: rotate(calc(var(--rotate-letter) * 6));
}

.video-sec .discount-tag span.char7 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
      -ms-transform: rotate(calc(var(--rotate-letter) * 7));
          transform: rotate(calc(var(--rotate-letter) * 7));
}

.video-sec .discount-tag span.char8 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
      -ms-transform: rotate(calc(var(--rotate-letter) * 8));
          transform: rotate(calc(var(--rotate-letter) * 8));
}

.video-sec .discount-tag span.char9 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
      -ms-transform: rotate(calc(var(--rotate-letter) * 9));
          transform: rotate(calc(var(--rotate-letter) * 9));
}

.video-sec .discount-tag span.char10 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
      -ms-transform: rotate(calc(var(--rotate-letter) * 10));
          transform: rotate(calc(var(--rotate-letter) * 10));
}

.video-sec .discount-tag span.char11 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
      -ms-transform: rotate(calc(var(--rotate-letter) * 11));
          transform: rotate(calc(var(--rotate-letter) * 11));
}

.video-sec .discount-tag span.char12 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
      -ms-transform: rotate(calc(var(--rotate-letter) * 12));
          transform: rotate(calc(var(--rotate-letter) * 12));
}

.video-sec .discount-tag span.char13 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
      -ms-transform: rotate(calc(var(--rotate-letter) * 13));
          transform: rotate(calc(var(--rotate-letter) * 13));
}

.video-sec .discount-tag span.char14 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
      -ms-transform: rotate(calc(var(--rotate-letter) * 14));
          transform: rotate(calc(var(--rotate-letter) * 14));
}

.video-sec .discount-tag span.char15 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
      -ms-transform: rotate(calc(var(--rotate-letter) * 15));
          transform: rotate(calc(var(--rotate-letter) * 15));
}

.video-sec .discount-tag span.char16 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
      -ms-transform: rotate(calc(var(--rotate-letter) * 16));
          transform: rotate(calc(var(--rotate-letter) * 16));
}

.video-sec .discount-tag span.char17 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
      -ms-transform: rotate(calc(var(--rotate-letter) * 17));
          transform: rotate(calc(var(--rotate-letter) * 17));
}

.video-sec .discount-tag span.char18 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
      -ms-transform: rotate(calc(var(--rotate-letter) * 18));
          transform: rotate(calc(var(--rotate-letter) * 18));
}

.video-sec .discount-tag span.char19 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
      -ms-transform: rotate(calc(var(--rotate-letter) * 19));
          transform: rotate(calc(var(--rotate-letter) * 19));
}

.video-sec .discount-tag span.char20 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
      -ms-transform: rotate(calc(var(--rotate-letter) * 20));
          transform: rotate(calc(var(--rotate-letter) * 20));
}

.video-sec .discount-tag span.char21 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
      -ms-transform: rotate(calc(var(--rotate-letter) * 21));
          transform: rotate(calc(var(--rotate-letter) * 21));
}

.video-sec .discount-tag span.char22 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
      -ms-transform: rotate(calc(var(--rotate-letter) * 22));
          transform: rotate(calc(var(--rotate-letter) * 22));
}

.video-sec .discount-tag span.char23 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
      -ms-transform: rotate(calc(var(--rotate-letter) * 23));
          transform: rotate(calc(var(--rotate-letter) * 23));
}

.video-sec .discount-tag span.char24 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
      -ms-transform: rotate(calc(var(--rotate-letter) * 24));
          transform: rotate(calc(var(--rotate-letter) * 24));
}

.video-sec .discount-tag span.char25 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
      -ms-transform: rotate(calc(var(--rotate-letter) * 25));
          transform: rotate(calc(var(--rotate-letter) * 25));
}

.video-sec .discount-tag span.char26 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
      -ms-transform: rotate(calc(var(--rotate-letter) * 26));
          transform: rotate(calc(var(--rotate-letter) * 26));
}

.video-sec .discount-tag span.char27 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
      -ms-transform: rotate(calc(var(--rotate-letter) * 27));
          transform: rotate(calc(var(--rotate-letter) * 27));
}

.video-sec .discount-tag span.char28 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
      -ms-transform: rotate(calc(var(--rotate-letter) * 28));
          transform: rotate(calc(var(--rotate-letter) * 28));
}

.video-sec .discount-tag span.char29 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
      -ms-transform: rotate(calc(var(--rotate-letter) * 29));
          transform: rotate(calc(var(--rotate-letter) * 29));
}

.video-sec .discount-tag span.char30 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
      -ms-transform: rotate(calc(var(--rotate-letter) * 30));
          transform: rotate(calc(var(--rotate-letter) * 30));
}

.video-sec .discount-tag span.char31 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
      -ms-transform: rotate(calc(var(--rotate-letter) * 31));
          transform: rotate(calc(var(--rotate-letter) * 31));
}

.video-sec .discount-tag span.char32 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
      -ms-transform: rotate(calc(var(--rotate-letter) * 32));
          transform: rotate(calc(var(--rotate-letter) * 32));
}

.video-sec .discount-tag span.char33 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
      -ms-transform: rotate(calc(var(--rotate-letter) * 33));
          transform: rotate(calc(var(--rotate-letter) * 33));
}

.video-area {
  position: relative;
  -webkit-mask-image: url("../img/bg/video-shape.png");
          mask-image: url("../img/bg/video-shape.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center center;
          mask-position: center center;
  height: 723px;
  z-index: 2;
}


/*------------------- 4.00. CTA -------------------*/
.img-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

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

.img-half .img-left {
  left: 0;
}

.th-video2:after {
  content: "";
  height: 140px;
  width: 140px;
  background-color: #080E1C;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 70px);
  right: -70px;
}

.th-video2 .play-btn {
  position: absolute;
  right: -40px;
  top: calc(50% - 40px);
}

.th-video2 .play-btn > i {
  --icon-size: 80px;
}

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

/* Large devices */
@media (max-width: 1199px) {
  .img-half {
    position: relative;
    width: 100%;
    height: auto;
  }
  .th-video2:after {
    right: calc(50% - 70px);
    top: calc(100% - 70px);
  }
  .th-video2 .play-btn {
    position: absolute;
    top: calc(100% - 40px);
    right: calc(50% - 40px);
  }
}

.cta-feature_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-feature_wrapper.style3 {
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-feature_wrapper.style3 {
    display: block;
    margin: auto;
  }
}

.cta-feature_img {
  /* Medium devices */
}

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

/* Large devices */
@media (max-width: 1199px) {
  .img-half {
    position: relative;
    width: 100%;
    height: auto;
  }
  .th-video2:after {
    right: calc(50% - 70px);
    top: calc(100% - 70px);
  }
  .th-video2 .play-btn {
    position: absolute;
    top: calc(100% - 40px);
    right: calc(50% - 40px);
  }
}

.cta-box {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--smoke-color);
}

.cta-box_img {
  height: 100%;
}

.cta-box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box_content {
  padding: 70px 70px 70px 55px;
  position: relative;
}

.cta-box_icon {
  position: absolute;
  right: 70px;
  bottom: 70px;
}

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

/* Extra small devices */
@media (max-width: 575px) {
  .cta-box_content {
    padding: 70px 20px;
  }
  .cta-box_icon {
    bottom: 20px;
    right: 20px;
  }
}

/*CTA Area 4***********************/
.cta-area4 {
  padding: 0 20px 91px 20px;
  border-radius: 30px;
}

.cta-area4 .cta-title {
  border-radius: 100px;
  border: 1px solid #3E66F3;
  background: var(--white-color);
  padding: 6px 49px;
  margin: 0px 0 49px 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
}

.cta-area4 .cta-title.sub-title:before {
  top: 8px;
  left: 25px;
}

.cta-area4 .cta-title.sub-title:after {
  top: 8px;
  right: 25px;
}

.cta-area4 .cta-text {
  font-size: 18px;
  font-weight: 500;
  max-width: 460px;
  display: block;
  margin: auto;
}

.cta-area4 .counter-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .cta-area4 .counter-title {
    font-size: 25px;
  }
}

.cta-area4 .title-area .sec-title {
  margin-bottom: 26px;
}

.cta-area4 .cta-desc {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.7px;
}

.cta-area4 .th-btn {
  padding: 17px 46.5px;
}

/*CTA Area 5***********************/
.cta-area5 {
  padding: 173.5px 0;
  background-attachment: fixed;
  background-position: right;
  position: relative;
  /* Large devices */
  /* Medium devices */
}

.cta-area5:after {
  content: '';
  position: absolute;
  background: -webkit-linear-gradient(315deg, rgba(104, 77, 244, 0) -24.45%, var(--theme-color) 165.8%);
  background: linear-gradient(135deg, rgba(104, 77, 244, 0) -24.45%, var(--theme-color) 165.8%);
  -webkit-backdrop-filter: blur(10.5px);
          backdrop-filter: blur(10.5px);
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

@media (max-width: 1199px) {
  .cta-area5:after {
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
  }
}

@media (max-width: 991px) {
  .cta-area5 {
    padding: 120px 0;
  }
}

.cta-title-area .sec-title {
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.2px;
  margin-bottom: 30px;
  /* Medium Large devices */
  /* Medium devices */
  /* Extra small devices */
}

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

@media (max-width: 991px) {
  .cta-title-area .sec-title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .cta-title-area .sec-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.cta-title-area .sec-text {
  font-size: 18px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 0;
}

.cta-title-area3 .sec-title {
  font-weight: 500;
  font-size: 72px;
  line-height: 82px;
  letter-spacing: -0.02em;
  color: #16181D;
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .cta-title-area3 .sec-title {
    font-size: 62px;
    line-height: 72px;
  }
}

@media (max-width: 1199px) {
  .cta-title-area3 .sec-title {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 575px) {
  .cta-title-area3 .sec-title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 375px) {
  .cta-title-area3 .sec-title {
    font-size: 22px;
    line-height: 32px;
  }
}

.cta-feature_img3 {
  min-width: 240px;
  margin-left: -5%;
  position: relative;
  /* Extra large devices */
  /* Medium devices */
}

@media (max-width: 1500px) {
  .cta-feature_img3 {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .cta-feature_img3 {
    max-width: 240px;
    display: block;
    margin: auto;
  }
}

.cta-feature_img3 img {
  -webkit-mask-image: url("../img/normal/cta-shape.png");
          mask-image: url("../img/normal/cta-shape.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-transform: rotate(-9deg);
      -ms-transform: rotate(-9deg);
          transform: rotate(-9deg);
}

.cta-feature_img3 .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
}

.cta-feature_img3 .play-btn:before, .cta-feature_img3 .play-btn:after {
  display: none;
}

.cta-feature_img3 .play-btn i {
  background-color: transparent;
  border: 1px solid var(--white-color);
  --icon-size: 46px;
  color: var(--white-color);
}

.cta-feature_img3.style2 {
  margin: 0 -5% 0 0;
  /* Extra large devices */
  /* Medium devices */
}

@media (max-width: 1500px) {
  .cta-feature_img3.style2 {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .cta-feature_img3.style2 {
    max-width: 240px;
    display: block;
    margin: auto;
  }
}

.cta-feature_img3.style2 img {
  -webkit-transform: rotate(8.78deg);
      -ms-transform: rotate(8.78deg);
          transform: rotate(8.78deg);
}

/*CTA Area 6***********************/
.cta-sec6 {
  padding: 80px 100px;
  border-radius: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .cta-sec6 {
    padding: 80px 50px;
  }
}

.cta-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-content {
    display: block;
  }
}

.cta-content .cta-wrapper {
  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: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 80px;
  margin-right: 80px;
  min-width: 440px;
  /* Medium Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .cta-content .cta-wrapper {
    padding-right: 40px;
    margin-right: 40px;
    min-width: 360px;
  }
}

@media (max-width: 991px) {
  .cta-content .cta-wrapper {
    border: none;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 375px) {
  .cta-content .cta-wrapper {
    display: block;
  }
}

.cta-content .cta-wrapper .cta-icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 90px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  /* Extra small devices */
}

.cta-content .cta-wrapper .cta-icon:hover {
  background-color: var(--title-color);
}

@media (max-width: 375px) {
  .cta-content .cta-wrapper .cta-icon {
    margin-bottom: 20px;
  }
}

.cta-content .cta-wrapper .header-info_link {
  font-size: 30px;
  font-weight: 600;
  color: var(--white-color);
  letter-spacing: -0.3px;
  margin-bottom: 0;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .cta-content .cta-wrapper .header-info_link {
    font-size: 24px;
  }
}

.cta-content .cta-wrapper .header-info_link a {
  color: inherit;
}

.cta-content .title-area {
  margin-right: 64px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .cta-content .title-area {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .cta-content .title-area {
    margin: 30px 0 30px 0 !important;
  }
}

.cta-content .cta-group {
  min-width: 160px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-content .cta-group {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
}

.cta-sec7 {
  max-width: 1860px;
  margin: auto;
  border-radius: 200px 200px 0 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-sec7 {
    border-radius: 40px 40px 0 0;
  }
}

.cta-sec8 {
  border-radius: 30px;
  padding: 80px 0;
  text-align: center;
}

.cta-sec8 .sec-text {
  margin: 40px auto 33px;
}

.cta-sec8 .btn-wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}

/* cta 9 start ---------------------------- */
.cta-area9 {
  position: relative;
  padding: 120px;
  border-radius: 60px;
  background-color: #F9F9F9;
  max-width: 1620px;
  display: block;
  margin: auto;
  border-top: 2px solid rgba(62, 102, 243, 0.4);
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .cta-area9 {
    padding: 120px 80px;
  }
}

@media (max-width: 1199px) {
  .cta-area9 {
    padding: 120px 40px;
  }
  .cta-area9 .container {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .cta-area9 {
    padding: 80px 20px 80px 20px;
  }
}

.cta-feature_img {
  /* Medium devices */
}

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

.cta-title-area2 {
  max-width: 543px;
  display: block;
  margin: auto;
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-title-area2 {
    max-width: 100%;
  }
}

.feature-area2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .feature-area2 {
    gap: 15px;
  }
}

@media (max-width: 540px) {
  .feature-area2 {
    display: block;
  }
}

.feature-area2 .th-btn {
  padding: 17px 44.5px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .feature-area2 .th-btn {
    text-align: center;
    display: block;
    margin-bottom: 20px;
  }
}

.feature-wrapper.style2 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-bottom: 0;
}

.feature-wrapper.style2 .feature-icon {
  border-color: var(--theme-color);
}

.feature-wrapper.style2 .feature-icon:hover {
  background-color: var(--theme-color);
}

.feature-wrapper.style2 .feature-icon:hover i {
  color: var(--white-color);
}

.feature-wrapper.style2 .feature-icon i {
  color: var(--theme-color);
}

.feature-wrapper.style2 .header-info_link {
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.36px;
  margin-bottom: -0.5rem;
}

.feature-wrapper.style2 .header-info_link a {
  color: inherit;
}

.feature-wrapper.style2 .header-info_label {
  color: var(--body-color);
}

/* cta 9 end ---------------------------- */
/* cta 10 start ---------------------*/
.cta-area10 {
  border-radius: 30px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .cta-area10 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.cta-area10 .sec-title {
  font-size: 54px;
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .cta-area10 .sec-title {
    font-size: 44px;
  }
}

@media (max-width: 1199px) {
  .cta-area10 .sec-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .cta-area10 .sec-title {
    font-size: 30px;
  }
}

.cta-area10 .cta-text {
  font-size: 18px;
  max-width: 690px;
  display: block;
  margin: auto auto 30px auto;
}

/* cta 10 end ---------------------*/
/* cta 11 start -----------------------*/
.cta-area11 {
  background: #16181D;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .cta-area11 {
    padding: 0 20px;
  }
}


.cta-text3 {
  color: #A1A6B0;
  margin-bottom: 40px;
}

.cta-area13 {
  background: rgba(22, 24, 29, 0.5);
  border: 1px solid #FFFFFF;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 24px;
  padding: 70px 96px 70px 87px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .cta-area13 {
    padding: 70px 40px;
  }
}

.cta-area13 .sec-title {
  max-width: 472px;
}

/* cta 11 end -----------------------*/


.cta-area12 {
  padding: 197px 0;
  z-index: 2;
}

.cta-area12:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../img/bg/cta_bg_5.png");
          mask-image: url("../img/bg/cta_bg_5.png");
  background-color: var(--theme-color);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}

.cta-area12:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg/bg_pattern.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}

.cta-area12 .cta-image11 {
  margin-left: -100px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .cta-area12 .cta-image11 {
    margin: 0;
  }
}

/*------------------- 4.00. Service -------------------*/
/* Global Style ---------------------------------- */
.shape-icon {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 85px;
  line-height: 85px;
  text-align: center;
}

.shape-icon:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--smoke-color2);
  -webkit-clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
          clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.shape-icon .dots:before, .shape-icon .dots:after {
  content: '';
  position: absolute;
  background-color: var(--theme-color);
  height: 24px;
  width: 23px;
  border-radius: 50%;
}

.shape-icon .dots:before {
  top: 0;
  right: 9px;
}

.shape-icon .dots:after {
  height: 12px;
  width: 11px;
  bottom: 0;
  left: 27px;
}

/* Service Featured ---------------------------------- */
.service-featured {
  text-align: center;
  position: relative;
  z-index: 2;
}

.service-featured:before {
  content: '';
  height: 180px;
  width: 100%;
  background-color: var(--smoke-color);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-featured .shape-icon {
  margin: 0 auto 30px auto;
}

.service-featured .icon-btn {
  border-radius: 99px;
  background-color: var(--theme-color);
  box-shadow: 0px 6px 20px rgba(0, 96, 255, 0.5);
  border: none;
  color: var(--white-color);
  position: absolute;
  bottom: -28px;
  left: calc(50% - 28px);
}

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

.service-featured_content {
  background-color: var(--white-color);
  max-width: 312px;
  box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 15px 28px 15px;
  margin-bottom: 28px;
}

.service-featured_text {
  max-width: 255px;
  margin: 0 auto 31px auto;
}

/* Service Card ---------------------------------- */
.service-card {
  padding: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card:before, .service-card:after {
  content: '';
  position: absolute;
  height: 110px;
  width: 110px;
  background-color: var(--theme-color);
  opacity: 0.6;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.service-card:before {
  bottom: -73px;
  right: -28px;
}

.service-card:after {
  right: -73px;
  bottom: -28px;
}

.service-card .shape-icon {
  margin-bottom: 30px;
}

.service-card .box-title a:hover {
  color: var(--smoke-color2);
}

.service-card .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}

.service-card .bg-shape img {
  width: 100%;
}

.service-card_number {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: var(--smoke-color2);
  opacity: 0.3;
}

.service-card_text {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  margin-bottom: 22px;
}

.service-card .th-btn {
  background-color: var(--smoke-color2);
  color: var(--title-color);
  padding: 12.5px 20px;
  box-shadow: none;
}

.service-card .th-btn:before, .service-card .th-btn:after {
  background-color: var(--smoke-color2);
}

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

.service-card:hover:before, .service-card:hover:after {
  opacity: 1;
  height: 120%;
  width: 120%;
  border-radius: 0;
}

.service-card:hover .shape-icon:before {
  background-color: var(--white-color);
}

.service-card:hover .bg-shape {
  bottom: 0;
  opacity: 1;
}

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

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

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

.service-sec {
  background-size: auto;
  background-position: top center;
  background-color: var(--smoke-color);
}

/* Extra small devices */
@media (max-width: 375px) {
  .service-card {
    padding: 40px 30px;
  }
}

/* Service Box ---------------------------------- */
.service-box {
  position: relative;
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  background-color: var(--white-color);
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-box .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}

.service-box .bg-shape img {
  width: 100%;
}

.service-box_img {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.service-box_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-box .box-title {
  margin-bottom: 12px;
}

.service-box .box-title a:hover {
  color: var(--smoke-color2);
}

.service-box_text {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  max-width: 230px;
  margin: 0 auto 10px auto;
}

.service-box_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white-color);
  margin: -40px auto 0 auto;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border-radius: 50%;
}

.service-box_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-box_content {
  position: relative;
  padding: 0 10px 25px 10px;
}

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

.service-box:hover .bg-shape {
  bottom: 0;
  opacity: 1;
}

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

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

.service-box:hover .link-btn:before {
  background-color: var(--white-color);
  width: 100%;
}

.service-box:hover .link-btn:hover:before {
  width: 70px;
}

.service-box:hover .service-box_img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

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

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

.service-box:hover .service-box_text {
  color: var(--white-color);
}

/* Service Grid ---------------------------------- */
.service-grid {
  position: relative;
  margin-top: -40px;
}

.service-grid .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}

.service-grid .bg-shape img {
  width: 100%;
}

.service-grid_content {
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  background-color: var(--white-color);
  border-radius: 10px;
  text-align: center;
  padding: 70px 15px 40px 15px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}

.service-grid_icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto 0 auto;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}

.service-grid_icon img {
  position: relative;
  z-index: 2;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-grid_icon:after, .service-grid_icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--theme-color);
  z-index: -2;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.service-grid_icon:after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

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

.service-grid .box-title a:hover {
  color: var(--smoke-color2);
}

.service-grid_text {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  max-width: 230px;
  margin: 0 auto 22px auto;
}

.service-grid .th-btn {
  padding: 15.5px 18px;
}

.service-grid:hover .bg-shape {
  bottom: 0;
  opacity: 1;
}

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

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

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

.service-grid:hover .service-grid_content {
  background-color: var(--theme-color);
}

.service-grid:hover .service-grid_icon {
  background-color: var(--white-color);
}

.service-grid:hover .service-grid_icon img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-filter: none;
          filter: none;
}

.service-grid:hover .service-grid_icon:before, .service-grid:hover .service-grid_icon:after {
  background-color: var(--white-color);
}

.service-grid:hover .service-grid_text {
  color: var(--white-color);
}



/* Service Card 6---------------------------------- */
.service-area6 {
  background: -webkit-linear-gradient(top, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%);
  background: linear-gradient(180deg, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%);
  overflow: hidden;
}

.service-item {
  border-radius: 30px;
  border: 1px solid var(--white-color);
  padding: 40px 30px;
  background: -webkit-linear-gradient(top, #FFF 77.78%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, #FFF 77.78%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: block;
  margin-bottom: 28px;
  background-color: #F3F5FC;
  border-radius: 50%;
}

.service-item_text {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-item .box-title {
  letter-spacing: -0.48px;
  margin-bottom: 10px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-item .box-title {
    font-size: 20px;
  }
}

.service-item img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item_icon img {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

/* Service Card 7---------------------------------- */
.service-area7 {
  position: relative;
  background-color: #EFF1F9;
  border-radius: 30px;
  overflow: hidden;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .service-area7 {
    border-radius: 0;
  }
}

.service-grid7 {
  position: relative;
  background: var(--white-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #E3E7F0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-grid7 {
    padding: 25px;
  }
}

.service-grid7_icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 1px solid #E3E7F0;
  background-color: var(--white-color);
  box-shadow: drop-shadow(0px 26px 65px rgba(232, 234, 238, 0.55));
  border-radius: 50%;
  z-index: 9;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-grid7_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-grid7_text {
  margin-bottom: 15px;
}

.service-grid7 .box-title {
  font-weight: 600;
  margin: 25px 0 5px 0;
}

.service-grid7 .icon-btn {
  border-radius: 99px;
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
  color: var(--title-color);
  position: relative;
  z-index: 3;
  display: block;
  text-align: center;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

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

.service-grid7 .line-btn {
  font-family: var(--body-font);
}

.service-grid7:hover .service-grid7_img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.service-grid7:hover .service-grid7_icon {
  border: 1px solid var(--theme-color);
}

.service-grid7:hover .service-grid7_icon:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

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

/* Service Box 7---------------------------------- */
.service-box7 {
  text-align: center;
}

.service-box7_thumb {
  border-radius: 20px;
  background: #EFF1F9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 50px;
}

.service-box7_thumb img {
  margin: 20px 20px 0 20px;
  border-radius: 10px 10px 0 0;
  width: -webkit-fill-available;
}

.service-box7_content {
  margin: 0 30px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .service-box7_content {
    margin: 0;
  }
}

.service-box7_text {
  margin-bottom: -0.4em;
}

/* Service Details ---------------------------------- */
.page-title {
  margin-top: -0.22em;
  font-size: 40px;
  margin-bottom: 20px;
}

.page-img {
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}

.page-single {
  margin-bottom: 30px;
}

.service-feature {
  background-color: var(--white-color);
  padding: 30px 25px 30px 30px;
  border: 1px solid var(--th-border-color);
  box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
  border-radius: 5px;
  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;
}

.service-feature-wrap {
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
}

.service-feature_icon {
  background: var(--theme-color);
  box-shadow: 0px 6px 20px rgba(0, 96, 255, 0.6);
  border-radius: 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
}

.service-feature_title {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-feature_text {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

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

/* Medium Large devices */
@media (max-width: 1299px) {
  .service-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 10px;
  }
  .service-feature_text {
    margin-bottom: -0.5em;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

/* Extra small devices */
@media (max-width: 575px) {
  .page-title {
    font-size: 24px;
  }
  .service-feature-wrap {
    grid-template-columns: auto;
  }
}

/* Service Card ---------------------------------- */
.service-card2 {
  border-radius: 20px;
  background: #16181D;
  padding: 40px;
  min-width: 327px;
  text-align: center;
  background-position: bottom center;
  background-size: auto;
  background-repeat: no-repeat;
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .service-card2 {
    min-width: 300px;
    padding: 30px;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .service-card2 {
    padding: 30px 20px;
    min-width: 100%;
  }
}

@media (max-width: 575px) {
  .service-card2 {
    padding: 30px;
  }
}

.service-card2.style1 {
  text-align: left;
  max-width: 678px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service-card2.style1 {
    max-width: 100%;
    background-position: right center;
  }
}

.service-card2.style1 .service-card2_content {
  max-width: 260px;
}

.service-card2.style1 .service-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  color: var(--white-color);
  margin-bottom: 28px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .service-card2.style1 .service-title {
    font-size: 25px;
    line-height: 35px;
  }
}

.service-card2.style1 .ser-shape {
  position: absolute;
  top: 50px;
  right: 15px;
}

.service-card2.style1 .cilent-box_counter {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--white-color);
  max-width: 200px;
}

.service-card2.style1 .counter-number {
  font-weight: 500;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.service-card2_wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-card2_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card2_wrap.style1 {
  /* Large devices */
}

@media (max-width: 1199px) {
  .service-card2_wrap.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card2_wrap .service-shape {
  /* Medium Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .service-card2_wrap .service-shape {
    left: 26% !important;
  }
}

@media (max-width: 575px) {
  .service-card2_wrap .service-shape {
    display: none;
  }
}

.service-card2_img {
  min-width: 100%;
  border-radius: 26px;
}

.service-card2_img img {
  width: 100%;
  border-radius: 26px;
}

.service-card2_content {
  position: relative;
}

.service-card2_icon {
  position: relative;
  margin-bottom: 40px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card2_icon:before {
  content: "";
  position: absolute;
  left: 25%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: rgba(97, 255, 24, 0.1);
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .service-card2_icon:before {
    left: 30%;
  }
}

@media (max-width: 575px) {
  .service-card2_icon:before {
    left: 40%;
  }
}

.service-card2_icon img {
  display: block;
  position: relative;
  z-index: 9;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card2 .box-title {
  color: var(--white-color);
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 15px;
  /* Small devices */
}

@media (max-width: 767px) {
  .service-card2 .box-title {
    font-size: 22px;
    line-height: 34px;
  }
}

.service-card2_text {
  color: #848994;
  line-height: 26px;
  margin-bottom: -0.4rem;
}

.service-card2 .th-btn {
  padding: 16px 35px;
  color: var(--title-color);
}

.service-card2:hover .service-card2_icon img {
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

/* Service Card ---------------------------------- */
.service-card3 {
  position: relative;
  background: #131313;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid transparent;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .service-card3 {
    padding: 30px;
  }
}

.service-card3 .service-overlay {
  position: absolute;
  inset: 0px;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .service-card3 {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .service-card3 {
    padding: 30px;
  }
}

.service-card3_content {
  position: relative;
}

.service-card3 .box-icon {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card3 .box-icon img {
  display: block;
  position: relative;
  z-index: 9;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card3 .box-title {
  color: var(--white-color);
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  max-width: 284px;
  display: block;
  margin: auto auto 15px auto;
  /* Small devices */
}

@media (max-width: 767px) {
  .service-card3 .box-title {
    font-size: 22px;
    line-height: 34px;
  }
}

.service-card3_text {
  color: #A1A6B0;
  line-height: 26px;
  margin-bottom: 30px;
}

.service-card3:hover {
  border: 1px solid #00B6B3;
  border-radius: 20px;
}

.service-card3:hover .service-overlay {
  opacity: 1;
  visibility: visible;
}

.service-card3:hover .box-icon img {
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

/* service 10 start -------------------*/
.service-area4 {
  background-color: var(--white-color);
  margin: 0 100px;
}

@media (max-width: 1699px) {
  .service-area4 {
    margin: 0;
  }
}

.service-box2 {
  position: relative;
  padding: 30px 30px 10px 30px;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.service-box2_shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 148px;
  height: 148px;
  background-position: right center;
  background-size: auto;
  background-repeat: no-repeat;
  z-index: 9;
}

.service-box2:before, .service-box2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  background-color: #F3F2EA;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
  -webkit-clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
          clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M295 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.9543 250 20 250H241.055C252.101 250 261.055 241.046 261.055 230V224C261.055 207.431 274.487 194 291.055 194H295C306.046 194 315 185.046 315 174V20C315 8.9543 306.046 0 295 0Z");
            clip-path: path("M295 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.9543 250 20 250H241.055C252.101 250 261.055 241.046 261.055 230V224C261.055 207.431 274.487 194 291.055 194H295C306.046 194 315 185.046 315 174V20C315 8.9543 306.046 0 295 0Z");
  }
}

@media (max-width: 1299px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M230 0H20C8.95431 0 0 8.95431 0 20V250C0 261.046 8.95431 270 20 270H187.187C198.232 270 207.187 261.046 207.187 250V235.208C207.187 221.021 218.687 209.52 232.875 209.52C242.333 209.52 250 201.853 250 192.395V20C250 8.95431 241.046 0 230 0Z");
            clip-path: path("M230 0H20C8.95431 0 0 8.95431 0 20V250C0 261.046 8.95431 270 20 270H187.187C198.232 270 207.187 261.046 207.187 250V235.208C207.187 221.021 218.687 209.52 232.875 209.52C242.333 209.52 250 201.853 250 192.395V20C250 8.95431 241.046 0 230 0Z");
  }
}

@media (max-width: 1199px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M430 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.95432 250 20 250H352.936C363.981 250 372.936 241.046 372.936 230V224C372.936 207.431 386.367 194 402.936 194H430C441.046 194 450 185.046 450 174V20C450 8.9543 441.046 0 430 0Z");
            clip-path: path("M430 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.95432 250 20 250H352.936C363.981 250 372.936 241.046 372.936 230V224C372.936 207.431 386.367 194 402.936 194H430C441.046 194 450 185.046 450 174V20C450 8.9543 441.046 0 430 0Z");
  }
}

@media (max-width: 991px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
            clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
  }
}

@media (max-width: 767px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M430 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.95432 250 20 250H352.936C363.981 250 372.936 241.046 372.936 230V224C372.936 207.431 386.367 194 402.936 194H430C441.046 194 450 185.046 450 174V20C450 8.9543 441.046 0 430 0Z");
            clip-path: path("M430 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.95432 250 20 250H352.936C363.981 250 372.936 241.046 372.936 230V224C372.936 207.431 386.367 194 402.936 194H430C441.046 194 450 185.046 450 174V20C450 8.9543 441.046 0 430 0Z");
  }
}

@media (max-width: 480px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
            clip-path: path("M307 0H20C8.9543 0 0 8.9543 0 20V230C0 241.046 8.95431 250 20 250H251C262.046 250 271 241.046 271 230V224C271 207.431 284.431 194 301 194H307C318.046 194 327 185.046 327 174V20C327 8.9543 318.046 0 307 0Z");
  }
}

@media (max-width: 320px) {
  .service-box2:before, .service-box2:after {
    -webkit-clip-path: path("M270 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.9543 250 20 250H220.336C231.382 250 240.336 241.046 240.336 230V223.798C240.336 207.341 253.677 194 270.135 194C281.106 194 290 185.106 290 174.135V20C290 8.9543 281.046 0 270 0Z");
            clip-path: path("M270 0H20C8.95431 0 0 8.9543 0 20V230C0 241.046 8.9543 250 20 250H220.336C231.382 250 240.336 241.046 240.336 230V223.798C240.336 207.341 253.677 194 270.135 194C281.106 194 290 185.106 290 174.135V20C290 8.9543 281.046 0 270 0Z");
  }
}

.service-box2:before {
  width: 100%;
}

.service-box2:after {
  width: 0;
  background-color: var(--theme-color);
}

.service-box2_icon {
  margin-bottom: 25px;
}

.service-box2_text {
  max-width: 233px;
}

.service-box2 .box-title {
  font-size: 20px;
}

.service-box2 .box-title a {
  color: inherit;
}

.service-box2 img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.service-box2 .icon-btn {
  width: var(--btn-size, 46px);
  height: var(--btn-size, 46px);
  line-height: var(--btn-size, 46px);
  font-size: var(--btn-font-size, 16px);
  background-color: #F3F2EA;
  color: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  border: none;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  position: absolute;
  right: 0;
  bottom: 5px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .service-box2 .icon-btn {
    bottom: 0;
  }
}

@media (max-width: 1299px) {
  .service-box2 .icon-btn {
    bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .service-box2 .icon-btn {
    bottom: 5px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .service-box2 .icon-btn {
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .service-box2 .icon-btn {
    right: 80px;
  }
}

@media (max-width: 375px) {
  .service-box2 .icon-btn {
    right: 0;
  }
}

.service-box2:hover:after {
  width: 100%;
}

.service-box2:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

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

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

.service-box2:hover .service-box2_icon img {
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

.service-box2:hover .service-box2_text {
  color: var(--white-color);
}

/* service 10 end -------------------*/
/* Service 11 start ------------------*/
.service-area5 {
  position: relative;
}

.service-box3 {
  position: relative;
  background-color: #EFF1F9;
  border-radius: 30px;
  padding: 30px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-box3 {
    padding: 30px 20px;
  }
}

.service-box3_icon {
  margin-bottom: 30px;
}

.service-box3_icon img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.service-box3_img {
  position: relative;
  border-radius: 30px;
  max-width: 678px;
}

.service-box3_img img {
  width: 100%;
  border-radius: 30px;
}

.service-box3_img .service-shape {
  position: absolute;
  bottom: -94px;
  left: -71px;
  z-index: -1;
  width: 131px;
  height: 134px;
  background-repeat: no-repeat;
  background-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: #EFF1F9;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1399px) {
  .service-box3_img .service-shape {
    bottom: -99px;
    left: -73px;
  }
}

@media (max-width: 1299px) {
  .service-box3_img .service-shape {
    bottom: -136px;
    left: -72px;
  }
}

@media (max-width: 1199px) {
  .service-box3_img .service-shape {
    display: none;
  }
}

.service-box3_img .service-shape2 {
  position: absolute;
  bottom: -80px;
  right: -66px;
  z-index: -1;
  width: 122px;
  height: 124px;
  background-repeat: no-repeat;
  background-size: auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: #EFF1F9;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1399px) {
  .service-box3_img .service-shape2 {
    bottom: -88px;
    right: -66px;
  }
}

@media (max-width: 1299px) {
  .service-box3_img .service-shape2 {
    bottom: -122px;
    right: -66px;
  }
}

@media (max-width: 1199px) {
  .service-box3_img .service-shape2 {
    display: none;
  }
}

.service-box3 .box-title {
  font-weight: 600;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-box3 .box-title {
    font-size: 20px;
  }
}

.service-box3 .line-btn {
  font-size: 16px;
  text-transform: capitalize;
}

.service-box3:hover .service-box3_icon img {
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

.service-btn {
  min-width: 100%;
  min-height: 317px;
  background-color: var(--theme-color);
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 20px;
}

.service-btn-area {
  position: relative;
  z-index: 2;
}

.service-btn-area .ser-shape {
  position: absolute;
  top: -7%;
  left: -10%;
  z-index: 2;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
  z-index: 0;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .service-btn-area .ser-shape {
    top: -7%;
    left: -20%;
  }
}

@media (max-width: 1199px) {
  .service-btn-area .ser-shape {
    left: 20px;
  }
}

@media (max-width: 991px) {
  .service-btn-area .ser-shape {
    left: -20px;
  }
}

@media (max-width: 375px) {
  .service-btn-area .ser-shape {
    left: -30px;
  }
}

/* service 11 end -------------------*/
/* Service 12 start ------------------------ */
.service-item2 {
  position: relative;
  padding: 50px 40px 60px 40px;
  background-color: var(--theme-color);
  box-shadow: 0px 0px 15px #E9E9E9;
  border-radius: 5px 5px 50px 5px;
  margin-bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 2;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .service-item2 {
    padding: 40px 30px;
  }
}

@media (max-width: 1299px) {
  .service-item2 {
    padding: 50px 20px;
  }
}

.service-item2:hover:before {
  height: 0;
}

.service-item2:before, .service-item2:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-item2:before {
  background-color: var(--white-color);
}

.service-item2:after {
  border-top: 6px solid var(--theme-color);
}

.service-item2 .box-title {
  font-weight: 600;
  margin-right: 40px;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .service-item2 .box-title {
    margin-right: 20px;
  }
}

@media (max-width: 1299px) {
  .service-item2 .box-title {
    margin-right: 0;
  }
}

.service-item2 .box-title a {
  color: inherit;
}

.service-item2_text {
  margin-bottom: 25px;
}

.service-item2:hover .service-item2_text {
  color: var(--white-color);
}

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

.service-item2:hover .line-btn {
  color: var(--white-color);
}

.service-item2:hover .line-btn:before {
  background-color: var(--white-color);
}

.service-item2 .line-btn {
  font-size: 16px;
  color: var(--theme-color);
  text-transform: capitalize;
}

.service-item2 .line-btn:before {
  background-color: var(--theme-color);
}

/* Service 12 end ------------------------ */
/* Service 13 start --------------------------*/
.service_card2 {
  position: relative;
  background-color: #EFF1F9;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  z-index: 2;
}

@media (max-width: 1399px) {
  .service_card2 {
    padding: 30px 20px;
  }
}

.service_card2:before, .service_card2:after {
  content: "";
  position: absolute;
  border-radius: inherit;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.service_card2:before {
  width: 100%;
  height: 100%;
  background-color: #EFF1F9;
  top: 0;
  left: 0;
  z-index: -1;
}

.service_card2:after {
  inset: 0;
  background: rgba(62, 101, 243, 0.8);
  z-index: -2;
}

.service_card2 .box-icon {
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 5px solid #7D9AFF;
  display: block;
  margin: auto auto 22px auto;
  z-index: 2;
}

.service_card2 .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  background-color: var(--theme-color);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

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

.service_card2 .box-title {
  font-size: 22px;
  font-weight: 600;
}

.service_card2 .box-title a {
  color: inherit;
}

.service_card2_text {
  margin-bottom: 12px;
}

.service_card2 .line-btn {
  text-transform: capitalize;
}

.service_card2:hover:before {
  width: 0;
}

.service_card2:hover .box-title {
  color: var(--white-color);
}

.service_card2:hover .box-icon {
  border: 5px solid var(--white-color);
}

.service_card2:hover .box-icon:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

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

.service_card2:hover .service_card2_text {
  color: var(--white-color);
}

.service_card2:hover .line-btn {
  color: var(--white-color);
}

.service_card2:hover .line-btn:before {
  background-color: var(--white-color);
}

/* Service 13 end --------------------------*/
/* Service 14 start ------------------------------*/
.service_card3 {
  background-color: transparent;
  border-radius: 6px;
  padding: 40px;
  border: 1px solid #E3E7F0;
  text-align: center;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service_card3 {
    padding: 30px 20px;
  }
}

.service_card3 .box-icon {
  background-color: #EFF1F9;
  border-radius: 6px;
  padding: 20px;
  display: inline-block;
  margin-bottom: 30px;
}

.service_card3 .box-title {
  font-weight: 600;
  margin: 0 40px 13px 40px;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .service_card3 .box-title {
    margin: 0 20px 13px 20px;
  }
}

@media (max-width: 1299px) {
  .service_card3 .box-title {
    margin: 0 0 13px 0;
    font-size: 20px;
  }
}

.service_card3 .line-btn {
  text-transform: capitalize;
}

/* Service 14 end ------------------------------*/
/* Service 15 start ------------------------------*/
.service_card4 {
  text-align: center;
  background-color: transparent;
  border-radius: 20px;
  padding: 40px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service_card4 {
    padding: 30px;
  }
}

.service_card4 .box-icon {
  margin-bottom: 30px;
}

.service_card4 .box-icon img {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.service_card4 .box-title {
  /* Large devices */
}

@media (max-width: 1199px) {
  .service_card4 .box-title {
    font-size: 20px;
  }
}

.service_card4 .line-btn {
  text-transform: capitalize;
}

.service_card4_text {
  margin-bottom: 15px;
}

.service_card4:hover {
  background-color: #EFF1F9;
}

.service_card4:hover .box-icon img {
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

/* Service 15 end ------------------------------*/
/* Service 16 start ------------------------------*/
.service-sec16 {
  background-color: #EFF1F9;
}

.service_card5 {
  position: relative;
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 40px 0 0 40px;
  min-height: 311px;
  overflow: hidden;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service_card5 {
    padding: 30px 0 0 30px;
  }
}

.service_card5_content {
  padding-right: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service_card5_content {
    padding-right: 30px;
  }
}

.service_card5_wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service_card5 .line-btn {
  text-transform: capitalize;
  font-size: 16px;
  min-width: 104px;
}

.service_card5 .line-btn:before {
  display: none;
}

/* Service 16 end ------------------------------*/
/* Service 17 start ------------------------------*/
.service_card6 {
  position: relative;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  /* Medium Large devices */
}

.service_card6:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--title-color);
  border-radius: 20px;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1299px) {
  .service_card6 {
    padding: 30px 20px;
  }
}

.service_card6 .box-icon {
  background-color: #EFF1F9;
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

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

.service_card6 .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service_card6 .box-title {
    font-size: 18px;
  }
}

.service_card6_text {
  margin-bottom: 10px;
}

.service_card6 .line-btn {
  text-transform: capitalize;
}

.service_card6:hover:before {
  height: 100%;
}

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

.service_card6:hover .box-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: scale(-1) rotate(180deg);
      -ms-transform: scale(-1) rotate(180deg);
          transform: scale(-1) rotate(180deg);
}

.service_card6:hover .box-title {
  color: var(--white-color);
}

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

.service_card6:hover .line-btn:before {
  background-color: var(--theme-color);
}

.service_card6:hover .service_card6_text {
  color: var(--white-color);
}

/* service box start -----------------------*/
.service-sec19 {
  max-width: 1760px;
  display: block;
  margin: auto;
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .service-sec19 {
    max-width: 100%;
    border-radius: 0;
  }
}

.service_box {
  position: relative;
  border-radius: 20px;
  background-color: var(--white-color);
  padding: 30px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .service_box {
    padding: 25px;
  }
}

.service_box .box-img {
  border-radius: 12px;
  margin-bottom: 30px;
}

.service_box .box-img img {
  width: 100%;
  border-radius: 12px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service_box .line-btn {
  text-transform: capitalize;
}

.service_box.style2 .box-img {
  margin-bottom: 0;
}

.service_box.style2 .service_box_content {
  margin-bottom: -0.4rem;
}

.service_box.style2 .box-img {
  position: relative;
  overflow: hidden;
}

.service_box.style2 .box-img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service_box.style2 .box-icon {
  height: 60px;
  width: 51.96px;
  line-height: 52px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto -15px auto;
  -webkit-filter: drop-shadow(2.5px 2.5px 5px rgba(0, 31, 96, 0.2));
          filter: drop-shadow(2.5px 2.5px 5px rgba(0, 31, 96, 0.2));
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service_box.style2 .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white-color);
  -webkit-clip-path: path("M46.9606 46.8869C50.0543 45.1005 51.96 41.7994 51.96 38.2269V19.7731C51.96 16.2006 50.0543 12.8996 46.9606 11.1131L30.9831 1.88716C27.8892 0.100589 24.0771 0.100386 20.9829 1.88664L5.00035 11.1133C1.90614 12.8996 0 16.201 0 19.7738V38.2262C0 41.799 1.90614 45.1004 5.00035 46.8867L20.9829 56.1134C24.0771 57.8996 27.8892 57.8994 30.9831 56.1128L46.9606 46.8869Z");
          clip-path: path("M46.9606 46.8869C50.0543 45.1005 51.96 41.7994 51.96 38.2269V19.7731C51.96 16.2006 50.0543 12.8996 46.9606 11.1131L30.9831 1.88716C27.8892 0.100589 24.0771 0.100386 20.9829 1.88664L5.00035 11.1133C1.90614 12.8996 0 16.201 0 19.7738V38.2262C0 41.799 1.90614 45.1004 5.00035 46.8867L20.9829 56.1134C24.0771 57.8996 27.8892 57.8994 30.9831 56.1128L46.9606 46.8869Z");
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

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

.service_box.style2 .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service_box.style2 .line-btn {
  padding-bottom: 0;
}

.service_box.style2 .line-btn:before {
  display: none;
}

.service_box.style2:hover .box-icon:before {
  background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
  background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
}

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

.service_box.style2:hover .box-img img {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}

/* service box end -----------------------*/
/* Service 14 end ------------------------------*/
.shepe-text.style2 {
  color: #EFF1F9;
}

.shepe-text.style3 {
  color: #EFF1F9;
}

.shepe-text.style4 {
  color: #3E66F3;
  opacity: 0.1;
}

.body-shape-content {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1699px) {
  .body-shape-content {
    display: none;
  }
}

.body-shape-content.style2 {
  left: unset;
  right: -5%;
}

.body-shape-content.style2 .shepe-text {
  color: #EFF1F9;
}

.body-shape-content.style3 {
  left: unset;
  right: 1%;
}

.body-shape-content.style4 .shepe-text {
  color: #3E66F3;
  opacity: 0.1;
}

.shepe-text {
  font-weight: 700;
  font-size: 84px;
  line-height: 101px;
  color: rgba(239, 241, 249, 0.15);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.service-sec20 {
  background-color: #EFF1F9;
}

/* service area 21 ---------------*/
.service_card7 {
  background: #16181D;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .service_card7 {
    padding: 30px;
  }
}

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

.service_card7 .box-icon {
  position: relative;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  display: block;
  margin: auto;
  margin-bottom: 35px;
}

.service_card7 .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(62, 101, 243, 0.2);
  -webkit-clip-path: path("M199.996 101.044C199.64 130.081 175.858 151.435 152.8 169.151C130.394 186.366 104.396 201.491 76.7058 195.768C48.4632 189.932 28.7224 166.451 15.6344 140.804C2.09126 114.265 -6.09549 83.8636 5.6212 56.4729C17.9187 27.7244 44.6033 6.24063 75.4708 0.921445C104.677 -4.11143 131.415 12.2624 154.494 30.8186C177.379 49.2193 200.355 71.7192 199.996 101.044Z");
          clip-path: path("M199.996 101.044C199.64 130.081 175.858 151.435 152.8 169.151C130.394 186.366 104.396 201.491 76.7058 195.768C48.4632 189.932 28.7224 166.451 15.6344 140.804C2.09126 114.265 -6.09549 83.8636 5.6212 56.4729C17.9187 27.7244 44.6033 6.24063 75.4708 0.921445C104.677 -4.11143 131.415 12.2624 154.494 30.8186C177.379 49.2193 200.355 71.7192 199.996 101.044Z");
}

.service_card7 .box-title {
  color: var(--white-color);
  font-size: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service_card7 .box-title {
    font-size: 24px;
  }
}

.service_card7 .box-text {
  color: #A1A6B0;
  margin-bottom: 30px;
}

.service_card7 .th-btn {
  text-transform: capitalize;
}

.service_card7 .th-btn:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}

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

.service_card7:hover {
  background: -webkit-linear-gradient(269.37deg, rgba(22, 24, 29, 0) -5.59%, rgba(62, 102, 243, 0.2) 99.45%);
  background: linear-gradient(180.63deg, rgba(22, 24, 29, 0) -5.59%, rgba(62, 102, 243, 0.2) 99.45%);
  border: 1px solid #3E66F3;
  border-radius: 20px;
}

/* service_card8 start --------------------------------------*/
.service_card8 {
  position: relative;
  border-radius: 20px;
  background: transparent;
  padding: 30px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service_card8 .service-wrapp {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 12px 15px;
}

.service_card8 .service-wrapp:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 108px;
  height: 56px;
  -webkit-mask-image: url("../img/shape/ser-shape2.png");
          mask-image: url("../img/shape/ser-shape2.png");
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service_card8 .box-number {
  font-size: 14px;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service_card8 .box-title {
  color: var(--white-color);
  margin-top: 20px;
}

.service_card8 .box-text {
  color: #A1A6B0;
  margin-bottom: 15px;
}

.service_card8 .line-btn {
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.service_card8:hover {
  background: #16181D;
}

.service_card8:hover .service-wrapp:before {
  -webkit-mask-image: url("../img/shape/ser-shape3.png");
          mask-image: url("../img/shape/ser-shape3.png");
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
}

.service_card8:hover .service-wrapp .box-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service_card8:hover .service-wrapp .box-number {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* service-item3 start --------------------------*/
.service-item3 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #EFF1F9;
  border-radius: 24px;
  padding: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Large devices */
  /* Small devices */
}

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

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

.service-item3:not(:last-child) {
  margin-bottom: 16px;
}

.service-item3 .service-wrapp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .service-item3 .service-wrapp {
    gap: 7px;
  }
}

.service-item3 .box-number {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: #1C1C25;
}

.service-item3 .box-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  /* Extra small devices */
}

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

.service-item3 .box-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 16px;
}

@media (max-width: 480px) {
  .service-item3 .box-list {
    grid-template-columns: auto;
  }
}

.service-item3 .box-list span {
  background: #FFFFFF;
  border: 1px solid #E3E7F5;
  border-radius: 24px;
  padding: 5px 16px;
  font-weight: 400;
  font-size: 16px;
  color: #1C1C25;
  font-family: var(--title-font);
}

.service-item3:hover {
  background: #1C1C25;
  border-radius: 24px;
}

.service-item3:hover .box-number {
  color: var(--white-color);
}

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

.service-item3:hover .icon-btn:before {
  background-color: #1C1C25;
}

.service-item3:hover .icon-btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-button {
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .service-button {
    margin: 20px 0 0 60px;
  }
}

@media (max-width: 375px) {
  .service-button {
    margin: 20px 0 0 0;
  }
}

.service-button .icon-btn {
  margin-left: 12px;
  border-radius: 50%;
  background: -webkit-linear-gradient(0.04deg, #5484FF 17.55%, #642CDC 87.6%);
  background: linear-gradient(89.96deg, #5484FF 17.55%, #642CDC 87.6%);
  border: none;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-button .icon-btn:before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #EFF1F9;
  border-radius: 50%;
  z-index: -1;
}

.service-button .icon-btn img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* service area -----------------*/
.service-sec24 {
  position: relative;
  z-index: 2;
}



@media (max-width: 1199px) {
  .service-sec24:before {
    -webkit-mask-image: none;
            mask-image: none;
  }
}



@media (max-width: 1199px) {
  .service-sec24:after {
    -webkit-mask-size: cover;
            mask-size: cover;
  }
}

.service-card4 .box-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1C1C25;
  margin-bottom: 0;
}

.service-card4 .box-icon {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: block;
  margin: auto auto 16px auto;
}

.service-card4 .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white-color);
  -webkit-mask-image: url("../img/shape/ser-shape4.png");
          mask-image: url("../img/shape/ser-shape4.png");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

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

.service-card4:hover .box-icon img {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.service-block {
  max-width: 358px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .service-block {
    max-width: 100%;
    text-align: center;
  }

}

.service-block:not(:last-child) {
  margin-bottom: 60px;
}

.service-block.style1 {
  direction: rtl;
  text-align: right;
  /* Medium devices */
}

.service-block.style1 > p  {
  direction: ltr;
  /* Medium devices */
}

@media (max-width: 991px) {
  .service-block.style1 {
    direction: ltr;
	text-align: center;
  }
}

.service-block .box-icon {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  margin-bottom: 8px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .service-block .box-icon {
    display: block;
    margin: auto auto 8px auto;
  }
}

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

.service-block .box-title {
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 0;
}

.service-block .box-title a {
  color: inherit;
}

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

.service-image {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .service-image {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .service-image {
    height: 100%;
  }
}


.service-btn2 {
  margin-top: -3%;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service-btn2 {
    margin-top: 30px;
  }
}

/* service-box4 start ------------------------*/
.service-box4 {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  z-index: 2;
  padding: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 480px) {
  .service-box4 {
    display: block;
    text-align: center;
    padding: 25px;
  }
}

.service-box4:not(:last-child) {
  margin-bottom: 16px;
}

.service-box4 .box-icon {
  min-width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  text-align: center;
  background: #CAEE5A;
}

@media (max-width: 480px) {
  .service-box4 .box-icon {
    max-width: 72px;
    display: block;
    margin: auto auto 20px auto;
  }
}

.service-box4 .box-title {
  max-width: 422px;
  margin-bottom: 2px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-box4 .box-title {
    max-width: 100%;
  }
}

.service-box4 .box-text {
  font-family: var(--title-font);
  font-size: 20px;
  margin-bottom: -0.3rem;
}

.service-list-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-list-content {
    padding: 25px;
  }
}

.service-list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-list:not(:last-child) {
  margin-bottom: 32px;
}

.service-list .service-wrapp {
  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: 24px;
}

.service-list .box-number {
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #1C1C25;
}

.service-list .box-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.service-list .box-author {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.service-list .box-author img {
  border-radius: 50%;
}

.service-list .box-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}



.choose-area {
  position: relative;
  margin-top: 70px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .choose-area {
    margin: 0;
  }
}

.choose-area .one {
  top: -10%;
  left: 0%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .choose-area .one {
    margin-bottom: 20px;
  }
}

.choose-area .two {
  top: 45%;
  left: -2%;
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .choose-area .two {
    left: 0;
  }
}

@media (max-width: 1299px) {
  .choose-area .two {
    margin-bottom: 20px;
  }
}

.choose-area .three {
  bottom: 0%;
  left: -2%;
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .choose-area .three {
    left: 0;
  }
}

@media (max-width: 1299px) {
  .choose-area .three {
    margin-bottom: 20px;
  }
}

.choose-area .four {
  top: -10%;
  right: 5%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .choose-area .four {
    right: 0;
    margin-bottom: 20px;
  }
}

.choose-area .five {
  top: 43%;
  right: -2%;
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .choose-area .five {
    right: 0;
  }
}

@media (max-width: 1299px) {
  .choose-area .five {
    margin-bottom: 20px;
  }
}

.choose-area .six {
  bottom: 0%;
  right: 4%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .choose-area .six {
    right: 0;
  }
}

.service-block2 {
  background-color: #EEF1F5;
  border-radius: 48px;
  padding: 8px 30px 8px 8px;
  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: 16px;
  position: absolute;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-block2 {
    position: relative;
  }
}

.service-block2 .box-title {
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .service-block2 .box-title {
    font-size: 20px;
  }
}

.service-block2 .box-title a {
  color: inherit;
}

.service-block2 .box-icon {
  min-width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  background: var(--theme-color);
  text-align: center;
  border-radius: 48px;
}

.service-image2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-image2 img {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-image2 img {
    margin-bottom: 30px;
  }
}

.service_card9 {
  background-color: var(--white-color);
  box-shadow: 10px 10px 20px 10px rgba(93, 103, 122, 0.04);
  border-radius: 20px;
  padding: 0 30px 40px 30px;
  text-align: center;
  margin-top: 60px;
}

.service_card9 .box-icon {
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 8px solid #F4F6FA;
  text-align: center;
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
  display: block;
  margin: auto auto -30px auto;
  z-index: 2;
}

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

.service_card9 .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  background-color: var(--theme-color);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.service_card9 .th-btn {
  background-color: transparent;
  border: 1px solid #E3E7F0;
  border-radius: 100px;
  color: var(--title-color);
  padding: 15px 20px;
}

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

.service_card9:hover .box-icon:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

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


/*------------------- 4.00. Gallery -------------------*/
/* Gallery Card ---------------------------------- */
.gallery-card .gallery-img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-card .gallery-img:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black-color2);
  opacity: 0.8;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 1;
}

.gallery-card .gallery-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.gallery-card .gallery-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.gallery-card .gallery-img .play-btn > i {
  font-size: 24px;
}

.gallery-card:hover .gallery-img:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.gallery-card:hover .gallery-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery-card:hover .gallery-img .play-btn {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.filter-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.filter-menu .th-btn {
  background: #16181D;
  border-radius: 24px;
  text-transform: capitalize;
  min-width: 112px;
  padding: 14.5px 20px;
}

.filter-menu .th-btn.active:before, .filter-menu .th-btn.active:after {
  background: -webkit-linear-gradient(199.14deg, #FF8139 12.46%, #FF4646 35.9%, #9A5BEB 87.75%);
  background: linear-gradient(250.86deg, #FF8139 12.46%, #FF4646 35.9%, #9A5BEB 87.75%);
}

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

.gallery-card2 .icon-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-card2 .gallery-img {
  border-radius: 24px;
  background: #16181D;
  padding: 24px;
}

.gallery-card2 .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-card2 {
  position: relative;
  z-index: 2;
  background: #16181D;
  border-radius: 20px;
  padding: 20px;
}

.gallery-card2.style2 .box-img {
  position: relative;
  z-index: 3;
  border-radius: 24px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery-card2.style2 .box-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(bottom, rgba(15, 16, 19, 0.5), rgba(15, 16, 19, 0.5));
  background: linear-gradient(0deg, rgba(15, 16, 19, 0.5), rgba(15, 16, 19, 0.5));
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.gallery-card2.style2 .box-img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-card2.style2:hover .box-img:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.gallery-card2.style2:hover:after {
  opacity: 1;
  visibility: visible;
}

.gallery-card2 .box-img {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* Small devices */
}

.gallery-card2 .box-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-linear-gradient(bottom, rgba(24, 26, 30, 0.5), rgba(24, 26, 30, 0.5));
  background: linear-gradient(0deg, rgba(24, 26, 30, 0.5), rgba(24, 26, 30, 0.5));
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .gallery-card2 .box-img {
    border-radius: 20px;
    border: 20px;
  }
}

.gallery-card2 .box-img img {
  width: 100%;
}

.gallery-card2 .simple-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 50px;
  color: var(--white-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.gallery-card2:hover .box-img:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.gallery-card2:hover .box-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.gallery-card2:hover .simple-btn {
  visibility: visible;
  opacity: 1;
}

/* Gallery box start---------------------------------- */
.gallery-row {
  --bs-gutter-y: 1.9rem;
}

.gallery-box {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.gallery-box .gallery-img {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-box .gallery-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.gallery-box .gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 20px;
  background: rgba(22, 24, 29, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.gallery-box .box-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.gallery-box .box-title a:not(:hover) {
  color: var(--white-color);
}

.gallery-box .gallery-subtitle {
  color: var(--theme-color);
  margin-bottom: 8px;
}

.gallery-box .icon-btn {
  width: var(--btn-size, 80px);
  height: var(--btn-size, 80px);
  line-height: var(--btn-size, 80px);
  border-radius: 50%;
  background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
  background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
  color: var(--white-color);
  font-size: 20px;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  border: none;
}

.gallery-box .icon-btn:hover {
  background: -webkit-linear-gradient(top, var(--theme-color2) 0%, var(--theme-color) 100%);
  background: linear-gradient(180deg, var(--theme-color2) 0%, var(--theme-color) 100%);
  border-color: transparent;
}

.gallery-box:hover .gallery-img img {
  -webkit-transform: scale(1.2) rotate(-5deg);
      -ms-transform: scale(1.2) rotate(-5deg);
          transform: scale(1.2) rotate(-5deg);
}

.gallery-box:hover .gallery-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Gallery box end---------------------------------- */
/*------------------- 4.00. Project -------------------*/
/* Project Card ---------------------------------- */
.project-card {
  --space: 30px;
  position: relative;
  overflow: hidden;
}

.project-card .project-img {
  overflow: hidden;
  border-radius: 10px;
  z-index: 2;
}

.project-card .project-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card .project-content-wrap {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: 100%;
  max-width: calc(100% - var(--space)*2 - 28px);
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card .project-content {
  background-color: var(--theme-color);
  background-size: auto;
  background-position: right center;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  padding: 26px 30px;
}

.project-card .box-title {
  color: var(--white-color);
  margin-bottom: 2px;
}

.project-card .box-title a:hover {
  color: var(--smoke-color2);
}

.project-card .project-subtitle {
  margin-bottom: -0.5em;
  color: var(--white-color);
}

.project-card .icon-btn {
  position: absolute;
  right: -28px;
  top: calc(50% - 28px);
  background-color: var(--white-color);
  border: none;
  color: var(--theme-color);
  font-size: 24px;
}

.project-card .icon-btn:hover {
  background-color: var(--title-color);
}

.project-card:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-card:hover .project-img:before {
  height: 100%;
  opacity: 1;
}

.project-card:hover .project-content-wrap {
  bottom: var(--space);
  opacity: 1;
}

/* Extra small devices */
@media (max-width: 375px) {
  .project-card {
    --space: 15px;
  }
}

@media (max-width: 360px) {
  .project-card .box-title {
    font-size: 22px;
  }
  .project-card .project-content {
    padding: 26px 20px;
  }
}

/* Project Card 2 start---------------------------------- */
.project-card2 {
  --space: 30px;
  position: relative;
  overflow: hidden;
}

.project-card2 .project-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}

.project-card2 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card2 .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card2 .project-content-wrap {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: 100%;
  max-width: 474px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card2 .project-content {
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: var(--white-color);
  background-size: auto;
  background-position: center center;
  position: relative;
  z-index: 2;
  padding: 90px 30px 30px 30px;
}

.project-card2 .box-title {
  color: var(--title-color);
  margin-bottom: 0px;
}

.project-card2 .box-title a {
  color: inherit;
}

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

.project-card2 .project-subtitle {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--theme-color);
}

.project-card2 .icon-btn {
  position: absolute;
  right: 20px;
  top: 25px;
  border: none;
  --btn-size: auto;
  color: var(--theme-color);
  font-size: 20px;
}

.project-card2:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-card2:hover .project-img:before {
  height: 100%;
  opacity: 1;
}

.project-card2:hover .project-content-wrap {
  bottom: var(--space);
  opacity: 1;
}

/* Extra small devices */
@media (max-width: 375px) {
  .project-card2 {
    --space: 15px;
  }
}

@media (max-width: 360px) {
  .project-card2 .box-title {
    font-size: 22px;
  }
  .project-card2 .project-content {
    padding: 26px 20px;
  }
}

/* Project Card 2 end---------------------------------- */
/* Project Grid ---------------------------------- */
.project-grid {
  background-color: var(--white-color);
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  border-radius: 10px;
}

.project-grid_img {
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  max-height: 350px;
  min-height: 350px;
  display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.project-grid_img:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black-color2);
  opacity: 0.8;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 1;
}

.project-grid_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-grid_img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.project-grid_img .play-btn > i {
  font-size: 24px;
}

.project-grid_text {
	background-color: var(--theme-color);
	color: #fff;
	border-radius:15px;
	padding: 2px 10px;
	margin-top: -80px;
    margin-bottom: -0.5em;
	font-size: 16px;
}

.project-grid_content .box-title{margin-bottom:-2px;}

.project-grid_content {
  padding: 30px 20px;
  text-align: center;
}

.project-grid:hover .project-grid_img:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.project-grid:hover .project-grid_img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-grid:hover .project-grid_img .play-btn {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

/* Project Box ---------------------------------- */
.project-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.project-box.style2 {
  border-radius: 20px;
}

.project-box.style2 .project-img {
  border-radius: 20px;
  margin-bottom: 30px;
}

.project-box.style2 .project-img img {
  border-radius: 20px;
}

.project-box.style2 .project-box_desc {
  font-size: 14px;
  margin-bottom: 7px;
}

.project-box.style2 .box-title {
  font-weight: 600;
}

.project-box .project-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

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

.project-box .project-content {
  background-color: var(--white-color);
  padding: 22px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.project-box .box-title {
  margin-bottom: 3px;
}

.project-box .project-subtitle {
  margin-bottom: -0.5em;
  color: var(--theme-color);
}

.project-box .icon-btn {
  background-color: var(--theme-color);
  border: none;
  color: var(--white-color);
  font-size: 24px;
  border-radius: 8px;
}

.project-box .icon-btn:hover {
  background-color: var(--title-color);
}

.project-box:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 360px) {
  .project-box .box-title {
    font-size: 22px;
  }
  .project-box .project-content {
    padding: 26px 20px;
  }
}

/* Project Box 4---------------------------------- */
.project-box4 {
  position: relative;
  --space: 40px;
  border-radius: 35px;
  margin-bottom: 0px;
  overflow: hidden;
}

.project-box4 .project-content {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: calc(100% - var(--space)*2);
  z-index: 3;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-box4 .box-title {
  color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.project-box4 .box-title a {
  color: inherit;
}

.project-box4 .box-title:hover {
  color: var(--white-color);
}

.project-box4 .project-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.project-box4 .project-tags a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  background-color: var(--white-color);
  color: var(--title-color);
  border-radius: 100px;
  padding: 4px 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-box4 .project-tags a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.project-box4 .project-img {
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box4 .project-img:before, .project-box4 .project-img:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box4 .project-img:before {
  background: var(--theme-color);
  mix-blend-mode: multiply;
  z-index: 4;
}

.project-box4 .project-img:after {
  background: rgba(64, 102, 242, 0.92);
  z-index: 3;
}

.project-box4 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.project-box4:hover .project-img img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-box4:hover .project-img:before {
  opacity: 1;
  visibility: visible;
}

.project-box4:hover .project-content {
  bottom: var(--space);
  opacity: 1;
  visibility: visible;
}

.project-slider4 {
  margin-left: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .project-slider4 {
    margin: 50px 0 0 0;
  }
}

.project-btn {
  /* Small devices */
}

@media (max-width: 767px) {
  .project-btn {
    text-align: center;
  }
}

/* Project 5---------------------------------- */
.project-area-5 {
  background: #1C1C25;
}

.project-card5 {
  position: relative;
  border-radius: 20px;
  border: 1px solid #2E3039;
  background-color: #1C1C25;
  padding: 20px;
  overflow: hidden;
}

.project-card5 .project-img {
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}

.project-card5 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card5 .project-content {
  padding: 30px 20px 20px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .project-card5 .project-content {
    padding: 30px 0px 20px;
  }
}

.project-card5 .box-title {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 14px;
  letter-spacing: -0.22px;
}

.project-card5_desc {
  margin-bottom: 22px;
}

.project-card5 .line-btn {
  font-family: var(--body-font);
}

.project-card5 .line-btn:hover {
  color: var(--white-color);
}

.project-card5 .line-btn:hover:before {
  background-color: var(--white-color);
}

.project-card5:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 360px) {
  .project-card5 .box-title {
    font-size: 22px;
  }
  .project-card5 .project-content {
    padding: 26px 20px;
  }
}

/*project-card3 start --------------------------*/
.project-card3 {
  text-align: center;
}

.project-card3 .project-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.project-card3 .project-img:after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  mix-blend-mode: normal;
  opacity: 0;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scale(0.3);
      -ms-transform: scale(0.3);
          transform: scale(0.3);
}

.project-card3 .project-img img {
  width: 100%;
  border-radius: 20px;
}

.project-card3 .shape {
  position: absolute;
  inset: 30px;
  border: 1px solid var(--white-color);
  z-index: 2;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .project-card3 .shape {
    inset: 20px;
  }
}

@media (max-width: 375px) {
  .project-card3 .shape {
    inset: 10px;
  }
}

.project-card3 .project-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  mix-blend-mode: normal;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}

.project-card3 .icon-btn {
  background-color: var(--white-color);
  border-radius: 50%;
  border: none;
  color: var(--theme-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.project-card3 .icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.project-card3 .project-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
  margin-bottom: 0;
}

.project-card3 .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 0;
}

.project-card3 .box-title a {
  color: inherit;
}

.project-card3:hover .project-img:after {
  opacity: 0.89;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-card3:hover .shape {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.project-card3:hover .project-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*project-card start --------------------------*/
.project-area9 {
  background-color: #EFF1F9;
}

.project-card.style2 .project-img {
  border-radius: 20px;
}

.project-card.style2 .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  border-radius: 20px;
  background-color: var(--theme-color);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card.style2 .project-content-wrap {
  max-width: calc(100% - var(--space)*2 - 111px);
}

@media (max-width: 1699px) {
  .project-card.style2 .project-content-wrap {
    max-width: calc(100% - var(--space)*2 - 30px);
  }
}

.project-card.style2 .project-content {
  background-color: var(--white-color);
  padding: 11px 23px;
  border-radius: 10px;
}

.project-card.style2 .project-subtitle {
  color: var(--theme-color);
}

.project-card.style2 .box-title {
  font-size: 18px;
  color: var(--title-color);
}

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

.project-card.style2 .icon-btn {
  --btn-size: 70px;
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  top: 0;
}

.project-card.style2:hover .project-img:before {
  height: 100%;
  opacity: 0.6;
}

/*project-card end --------------------------*/
/*project-card3 end --------------------------*/
/* Project Details ---------------------------------- */
.project-inner-box {
  background-color: var(--smoke-color);
  border-radius: 5px;
  padding: 30px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-inner-box {
    padding: 20px;
  }
}

/*project-card start --------------------------*/
.project-card.style3 {
  --space: 0px;
  border-radius: 30px;
}

.project-card.style3 .project-img {
  border-radius: 20px;
}

.project-card.style3 .project-img:before {
  display: none;
}

.project-card.style3 .project-content {
  position: relative;
  background-color: transparent;
  border-radius: 0px;
  padding: 20px 40px;
  z-index: 2;
}

.project-card.style3 .project-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
  background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
  -webkit-clip-path: path("M-13.0656 17.2667C-8.12633 6.72988 2.46095 0 14.098 0H222.716C236.147 0 247.941 8.92694 251.589 21.8532L267.253 77.3697C272.939 97.5197 256.758 117.149 235.893 115.413L-5.01712 95.3679C-25.8475 93.6347 -38.565 71.6641 -29.6932 52.7379L-13.0656 17.2667Z");
          clip-path: path("M-13.0656 17.2667C-8.12633 6.72988 2.46095 0 14.098 0H222.716C236.147 0 247.941 8.92694 251.589 21.8532L267.253 77.3697C272.939 97.5197 256.758 117.149 235.893 115.413L-5.01712 95.3679C-25.8475 93.6347 -38.565 71.6641 -29.6932 52.7379L-13.0656 17.2667Z");
  z-index: -1;
}

.project-card.style3 .project-subtitle {
  color: var(--white-color);
  margin-bottom: 3px;
}

.project-card.style3 .box-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
}

.project-card.style3 .box-title a:hover {
  color: var(--title-color);
}

.project-card.style3 .icon-btn {
  --btn-size: 70px;
  background-color: var(--white-color);
  border-radius: 50%;
  color: var(--theme-color);
  top: 30px;
  right: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  /* Medium devices */
  right: 20px;
}

.project-card.style3 .icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .project-card.style3 .icon-btn {
    --btn-size: 50px;
    top: 20px;
  }
}

.project-card.style3:hover .icon-btn {
  opacity: 1;
  visibility: visible;
}

/*project-card end --------------------------*/
/* project-card4 start ----------------------*/
.project-card4 {
  background: #EFF1F9;
  border-radius: 24px;
  padding: 24px;
}

.project-card4 .project-img {
  margin-bottom: 24px;
}

.project-card4 .project-img img {
  border-radius: 24px;
}

.project-card4 .project-content span {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #1C1C25;
  border-radius: 24px;
  padding: 3px 20px;
  display: inline-block;
  background: -webkit-linear-gradient(0.04deg, #5484FF 17.55%, #642CDC 87.6%);
  background: linear-gradient(89.96deg, #5484FF 17.55%, #642CDC 87.6%);
  z-index: 2;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-card4 .project-content span {
    margin-bottom: 3px;
  }
}

.project-card4 .project-content span:before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #EFF1F9;
  z-index: -1;
}

.project-card4 .box-title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .project-card4 .box-title {
    font-size: 25px;
  }
}

/*project area start --------------------------*/
.projectSlider12 {
  margin-right: -45% !important;
  /* Small devices */
}

@media (max-width: 767px) {
  .projectSlider12 {
    margin-right: 0 !important;
  }
}

.projectSlider12 .slider-controller {
  width: 1380px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1399px) {
  .projectSlider12 .slider-controller {
    width: 1100px;
  }
}

@media (max-width: 1199px) {
  .projectSlider12 .slider-controller {
    width: 700px;
  }
}

.projectSlider12 .slider-arrow {
  position: relative;
  --pos-x: 84px;
  min-width: 30px;
  max-width: 30px;
  height: 40px;
  line-height: 40px;
  left: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: var(--title-color);
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Extra large devices */
  /* Small devices */
}

@media (max-width: 1500px) {
  .projectSlider12 .slider-arrow {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .projectSlider12 .slider-arrow {
    display: none !important;
  }
}

.projectSlider12 .slider-arrow.slider-next:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F3F6FF;
  -webkit-mask-image: url("../img/shape/arrow-left.png");
          mask-image: url("../img/shape/arrow-left.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  margin: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: -1;
}

.projectSlider12 .slider-arrow.slider-prev:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F3F6FF;
  -webkit-mask-image: url("../img/shape/arrow-right.png");
          mask-image: url("../img/shape/arrow-right.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  margin: 0;
  z-index: -1;
}

.projectSlider12 .slider-arrow:hover:before, .projectSlider12 .slider-arrow:hover:after {
  background-color: #00E3DB;
}

.projectSlider12 .swiper-pagination-progressbar.swiper-pagination-horizontal {
  margin: 0;
}

.projectSlider12 .slider-pagination2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.projectSlider12 .total-slides {
  position: relative;
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color);
  z-index: 2;
}

.projectSlider12 .total-slides:before {
  content: "/";
  position: absolute;
  left: -10px;
  top: 0;
}

.projectSlider12 .slider-pagination2 {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 24px;
  color: var(--theme-color);
}

.projectSlider12 .swiper-pagination-progressbar {
  background: #E2E8F6;
}

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

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

.project-card6 .project-img {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.project-card6 .project-img img {
  -webkit-mask-image: url("../img/project/project-shape.png");
          mask-image: url("../img/project/project-shape.png");
}

.project-card6 .project-img .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 172px;
  height: 80px;
  line-height: 80px;
  display: block;
  margin: auto;
  text-align: center;
  background: #00E3DB;
  padding-left: 60px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 47% 100%, 20% 0);
          clip-path: polygon(100% 0, 100% 100%, 47% 100%, 20% 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-card6 .project-img .icon:hover {
  background-color: var(--theme-color);
}

.project-card6 .project-img .icon:hover i {
  color: var(--white-color);
}

.project-card6 .project-img .icon i {
  font-size: 40px;
  color: var(--title-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.project-card6 .box-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-card6 .box-title {
    font-size: 24px;
  }
}

.project-card6 .box-text {
  margin-bottom: 0;
}

/* project-item2 -------------------*/
.project-area13 {
  background-color: var(--theme-color);
  border-radius: 40px;
  padding: 48px;
  /* Small devices */
}

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

.project-area13 .project-image img {
  border-radius: 24px;
}

.project-item2_wrapper:first-child .project-item2-details {
  direction: rtl;
  margin-right: 100px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .project-item2_wrapper:first-child .project-item2-details {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .project-item2_wrapper:first-child .project-item2-details {
    margin-right: 0;
  }
}

.project-item2_wrapper .sec-title {
  max-width: 400px;
}

.project-item2_wrapper .box-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  max-width: 500px;
}

.project-item2 .project-item2-details {
  margin-left: 100px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .project-item2 .project-item2-details {
    margin-left: 30px;
    /* Medium devices */
  }
}

@media (max-width: 1299px) and (max-width: 991px) {
  .project-item2 .project-item2-details {
    margin-left: 0;
  }
}

.scenarios-item {
  position: relative;
  border-radius: 24px;
  z-index: 2;
  overflow: hidden;
}

.scenarios-item_wrap:last-child .scenarios-item .box-content {
  -webkit-mask-image: url("../img/project/shape-1.png");
          mask-image: url("../img/project/shape-1.png");
  width: 670px;
}

.scenarios-item .box-content {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask-image: url("../img/project/shape-1-1.png");
          mask-image: url("../img/project/shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--theme-color);
  padding: 30px 62px;
  width: 554px;
  text-align: center;
}

.scenarios-item .box-img {
  border-radius: 24px;
}

.scenarios-item .box-img img {
  border-radius: 24px;
}

.scenarios-item .box-title {
  font-family: var(--body-font);
  font-size: 30px;
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .scenarios-item .box-title {
    font-size: 20px;
  }
}

/*------------------- 4.00. Skill -------------------*/
.skill-feature:not(:last-child) {
  margin-bottom: 25px;
}

.skill-feature_title,
.skill-feature .progress-value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: -0.2em;
  font-family: var(--title-font);
  color: var(--title-color);
}

.skill-feature .progress {
  position: relative;
  height: 10px;
  background-color: var(--white-color);
  overflow: visible;
  border-radius: 100px;
}

.skill-feature .progress-bar {
  background-color: var(--theme-color);
  height: 4px;
  margin: 3px;
  border-radius: inherit;
  position: relative;
  overflow: visible;
}

.skill-feature .progress-value {
  position: absolute;
  top: -34px;
  right: 0;
}

.skill-feature.style2:not(:last-child) {
  margin-bottom: 32px;
}

.skill-feature.style2 .progress {
  background-color: var(--smoke-color2);
}

@media (min-width: 1430px) {
  .video-box1 {
    margin-right: -105px;
  }
}

@media (min-width: 1300px) {
  .video-box1 {
    margin-left: 30px;
  }
}

.video-box1 {
  position: relative;
  text-align: center;
}

.video-box1 img {
  width: 100%;
  max-width: 650px;
}

.video-box1 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* video box2 start ---------------------------------*/
.video-box2 {
  position: relative;
  text-align: center;
  margin-top: 35px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .video-box2 {
    margin-bottom: 80px;
  }
}

.video-box2 img {
  width: 100%;
  border-radius: 30px;
}

.video-box2 .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 0;
  width: 100px;
  height: 100px;
  line-height: 102px;
  -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0, 0, 0.2, 1);
  border-radius: 50%;
  background: transparent;
  margin: 0 auto;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  color: var(--white-color);
  /* Small devices */
}

@media (max-width: 767px) {
  .video-box2 .video-play-btn {
    width: 50px;
    height: 50px;
    line-height: 52px;
    font-size: 20px;
  }
}

.video-box2 .video-play-btn i {
  color: var(--white-color);
}

.video-box2 .video-play-btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3;
  transition: 0.3;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  -webkit-animation: ripple 2s linear infinite;
          animation: ripple 2s linear infinite;
}

.video-box2 .video-play-btn:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3;
  transition: 0.3;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  -webkit-animation: ripple 2s linear 1s infinite;
          animation: ripple 2s linear 1s infinite;
}


/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

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

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

.fs-20 {
  font-size: 20px;
}

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

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.6rem;
}

.mt-n3 {
  margin-top: -0.8rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.6rem;
}

.mb-n3 {
  margin-bottom: -0.8rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

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

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

.margin2 {
  margin-top: 200px;
}
.space2 {
  padding-top: 150px;
}

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

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

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

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

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
	.space2 {
	padding-top: 100px;
	}
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
  .footer-layout12 {
    border-radius: 0;
}
}