﻿:root {
  --theme-color: #7b5dff;
  --theme-color2: #d4ff12;
  --title-color: #06050b;
  --body-color: #484848;
  --smoke-color: #d4d4d4;
  --smoke-color2: #f5f5f5;
  --smoke-color3: #c5dacc;
  --smoke-color4: #e9f5ed;
  --black-color: #000000;
  --black-color2: #0a0a0a;
  --gray-color: #d8dde1;
  --white-color: #ffffff;
  --light-color: #b7bec8;
  --yellow-color: #ffb539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #e0e0e0;
  --title-font: "Sora", sans-serif;
  --title-font2: "Urbanist", sans-serif;
  --body-font: "Work Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1620px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --slidingAT: 1.3s;
  --controlSize: 60px;
}
html,
body {
  scroll-behavior: auto !important;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
iframe {
  border: none;
  width: 100%;
}

button:focus,
a:focus,
a:active,
a.nice-select.open,
input,
input:hover,
input:focus,
input:active,
input.nice-select.open,
textarea,
textarea:hover,
textarea:focus,
textarea:active,
textarea.nice-select.open {
  outline: none;
}
input:focus {
  outline: none;
  -webkit-box-shadow: 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%;
}

.whatsapp-float {
  position: fixed;
  right: calc(env(safe-area-inset-right, 0px) + 20px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  border: 2px solid #ffffff;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.3);
  opacity: 0.98;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.whatsapp-number {
  display: none !important;
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: calc(env(safe-area-inset-right, 0px) + 16px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 767px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

table {
  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.nice-select.open,
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%;
}
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;
}

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: 600;
  line-height: 1.4;
  margin: 0 0 15px 0;
}
.h1,
h1 {
  font-size: 84px;
  line-height: 1.1;
}
.h2,
h2 {
  font-size: 64px;
  line-height: 1.1;
}
.h3,
h3 {
  font-size: 48px;
  line-height: 1.25;
}
.h4,
h4 {
  font-size: 32px;
  line-height: 1.5;
}
.h5,
h5 {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.333;
}
.h6,
h6 {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 1500px) {
  .h1,
  h1 {
    font-size: 67px;
    line-height: 1.26;
  }
  .h2,
  h2 {
    font-size: 47px;
    line-height: 1.31;
  }
}
@media (max-width: 1399px) {
  .h2,
  h2 {
    font-size: 40px;
    line-height: 1.25;
  }
}
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 57px;
    line-height: 1.26;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .h3,
  h3 {
    font-size: 26px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.35;
  }
  .h2,
  h2 {
    font-size: 32px;
  }
}

.breadcumb-title {
  word-break: break-word;
}
.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}
@media (min-width: 1370px) {
  .th-container {
    --main-container: 1848px;
  }
}
@media (min-width: 1370px) {
  .th-container5 {
    --main-container: 1320px;
  }
}
@media only screen and (min-width: 1300px) {
  
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
select,
.form-control,
.form-select,
textarea,
input {
  height: 56px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  color: var(--body-color);
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid var(--smoke-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--title-color);
  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;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--theme-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--title-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(--title-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(--title-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(--title-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--title-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(--title-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(--title-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--title-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: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0px;
}
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: 17px;
  font-size: 16px;
  color: var(--theme-color);
}
.form-group > i.fa-envelope {
  padding-top: 1px;
}
[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;
}
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: "";
  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;
  color: #6e6e6e;
  display: block;
}
input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #6e6e6e;
  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: hsla(0, 0%, 100%, 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: "";
  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: 900;
  background: var(--white-color);
  color: rgba(0, 0, 0, 0);
  -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 {
  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 {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right
    calc(0.375em + 0.8875rem);
}
.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: rgba(0, 0, 0, 0);
  color: inherit;
}
input[type="time"] {
  padding: 0 30px;
  position: relative;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  background: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}
.swiper-wrapper.row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.slider-controller {
  margin-top: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.slider-controller .button {
  width: calc(100% - 204px);
}
@media (max-width: 1199px) {
  .slider-controller {
    margin-top: 45px;
  }
}
.slider-area {
  position: relative;
}
.arrow-wrap {
  position: relative;
}
:root {
  --input-height: 50px;
}
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-image: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  position: relative;
  line-height: calc(var(--input-height) - 2px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.nice-select:after {
  content: "";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 16px;
  pointer-events: none;
  border-bottom: 1px solid var(--body-color);
  border-right: 1px solid var(--body-color);
  position: absolute;
  right: 20px;
  line-height: calc(var(--input-height) - 2px);
  top: 21px;
  height: 8px;
  width: 8px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  border-radius: 0;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  border-bottom: 3px solid var(--theme-color);
}
.nice-select.disabled {
  border-color: rgb(237.1, 237.1, 237.1);
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #ccc;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-28px);
  transform: scale(0.75) translateY(-28px);
  -webkit-transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: rgba(0, 0, 0, 0) !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: var(--smoke-color);
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: rgba(0, 0, 0, 0);
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
.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-color: var(--smoke-color2);
}
.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: 48px;
}
.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-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: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}
.th-mobile-menu ul li a:before {
  content: "";
  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);
  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);
  -webkit-box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  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: "";
  font-family: var(--icon-font);
}
.th-mobile-menu ul .th-item-has-children > a:after {
  content: "";
  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: "";
  font-family: var(--icon-font);
}
.th-mobile-menu ul .th-item-has-children.th-active > a:after {
  content: "";
  font-family: var(--icon-font);
}
.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: 48px;
}
@media (max-width: 375px) {
  .th-menu-toggle {
    width: 48px;
    height: 48px;
  }
}
.th-menu-toggle:hover {
  background-color: var(--title-color);
}
@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.preloader-bg-one {
  top: 0;
}
.preloader-bg-two {
  bottom: 0;
}
.loader-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  direction: ltr;
}
.loader-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 120px;
  width: auto;
  margin: 2rem;
  font-family: var(--title-font);
  font-size: 84px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  scale: 2;
}
@-webkit-keyframes transform-animation {
  0% {
    -webkit-transform: translate(-55%);
    transform: translate(-55%);
  }
  100% {
    -webkit-transform: translate(55%);
    transform: translate(55%);
  }
}
@keyframes transform-animation {
  0% {
    -webkit-transform: translate(-55%);
    transform: translate(-55%);
  }
  100% {
    -webkit-transform: translate(55%);
    transform: translate(55%);
  }
}
@-webkit-keyframes opacity-animation {
  0%,
  100% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
}
@keyframes opacity-animation {
  0%,
  100% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
}
@-webkit-keyframes loader-letter-anim {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 0;
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 4px #8d8379;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-transform: scale(1.1) translateY(-2px);
    transform: scale(1.1) translateY(-2px);
  }
  20% {
    opacity: 0.2;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
  }
}
@keyframes loader-letter-anim {
  0% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 0;
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 4px #8d8379;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    -webkit-transform: scale(1.1) translateY(-2px);
    transform: scale(1.1) translateY(-2px);
  }
  20% {
    opacity: 0.2;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
  100% {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
  }
}
.th-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  border-radius: 48px;
  line-height: 1;
  padding: 20px 24px 20px 24px;
  gap: 38px;
}
.th-btn:before,
.th-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 50px;
  background: var(--theme-color2);
  width: 56px;
  height: 56px;
  border-radius: 0px 32px 32px 0px;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: -1;
}
.th-btn:before {
  z-index: -1;
}
.th-btn:after {
  z-index: -2;
}
.th-btn .icon {
  text-align: center;
  display: inline-block;
}
.th-btn:hover,
.th-btn.active {
  color: var(--title-color);
}
.th-btn:hover:before,
.th-btn.active:before {
  width: 56px;
  background: var(--theme-color2);
  background-color: var(--theme-color);
}
.th-btn:hover:after,
.th-btn.active:after {
  background-color: var(--theme-color2);
  width: 100%;
}
.th-btn:hover img,
.th-btn.active img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.th-btn.style1:before,
.th-btn.style1:after {
  background-color: var(--white-color);
}
.th-btn.style1:hover {
  color: var(--title-color);
}
.th-btn.style2 {
  background-color: rgba(0, 0, 0, 0);
  color: var(--white-color);
  border: 1px solid var(--white-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.th-btn.style2:hover {
  color: var(--title-color);
  border-color: var(--white-color);
}
.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
  background-color: var(--theme-color2);
}
.th-btn.style2:hover img {
  -webkit-filter: none;
  filter: none;
}
.th-btn.style3 {
  background-color: rgba(0, 0, 0, 0);
  color: var(--title-color);
  border: 1px solid var(--smoke-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.th-btn.style3:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}
.th-btn.style3:hover:before,
.th-btn.style3:hover:after {
  background-color: var(--theme-color);
}
.th-btn.th-border {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--smoke-color);
  color: var(--title-color);
}
.th-btn.th-border:before {
  z-index: -1;
}
.th-btn.th-border:after {
  z-index: -2;
}
.th-btn.th-border:hover {
  border-color: var(--theme-color);
  color: var(--title-color);
}
.th-btn.th-border:hover:before {
  width: 28%;
}
.th-btn.th-border:hover:after {
  background-color: var(--theme-color2);
  width: 100%;
}
.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, 18px);
  background-color: var(--icon-bg, transparent);
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  color: var(--title-color);
  text-align: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.icon-btn a {
  color: var(--title-color);
}
.icon-btn img {
  margin-top: -4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.icon-btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: none !important;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
.scroll-top:after {
  content: " ";
  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);
  -webkit-box-shadow: none;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 10px);
  margin-top: -0.12em;
}
.sub-title {
  position: relative;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  color: var(--title-color);
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid #e5e5e5;
  border-radius: 33px;
  padding: 8px 17px 8px 37px;
}
@media (max-width: 575px) {
  .sub-title {
    font-size: 16px;
  }
}
.sub-title:has(img) {
  margin-top: 0;
}
.sub-title:before {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 28px;
  height: 24px;
  background-image: url("../img/theme-img/sub-title.svg");
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0);
}
.sub-title.style2 {
  background-color: var(--white-color);
}
.sub-title.style3 {
  padding: 0;
  border: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}
.sub-title.style3:before {
  display: none;
}
.box-title {
  font-size: 20px;
  line-height: 1.1;
  text-transform: capitalize;
  margin-top: 0;
}
.box-title a {
  color: inherit;
}
.box-title a:hover {
  color: var(--theme-color);
}
.title-area {
  margin-bottom: calc(var(--section-title-space) - 10px);
  position: relative;
  z-index: 2;
}
.title-area .sec-title {
  margin-bottom: 15px;
}
.title-area .sec-title .title {
  display: block;
  margin-left: 321px;
}
@media (max-width: 1699px) {
  .title-area .sec-title .title {
    margin-left: 200px;
  }
}
@media (max-width: 1199px) {
  .title-area .sec-title .title {
    margin-left: 140px;
  }
}
@media (max-width: 767px) {
  .title-area .sec-title .title {
    margin-left: 40px;
  }
}
@media (max-width: 375px) {
  .title-area .sec-title .title {
    margin-left: 0px;
  }
}
.title-area .sec-title.style2 {
  font-size: 56px;
}
@media (max-width: 1299px) {
  .title-area .sec-title.style2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .title-area .sec-title.style2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .title-area .sec-title.style2 {
    font-size: 32px;
  }
}
@media (max-width: 375px) {
  .title-area .sec-title.style2 {
    font-size: 30px;
  }
}
.title-area .sec-title.style3 {
  font-family: var(--title-font2);
  font-size: 56px;
}
@media (max-width: 1299px) {
  .title-area .sec-title.style3 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .title-area .sec-title.style3 {
    font-size: 38px;
  }
}
@media (max-width: 375px) {
  .title-area .sec-title.style3 {
    font-size: 30px;
  }
}
.title-area .th-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
}
@media (max-width: 991px) {
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
}
.line {
  height: 70px;
  position: relative;
  overflow: hidden;
}
.line span {
  position: absolute;
}
.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}
.shape-mockup {
  position: absolute;
  z-index: -1;
}
.media-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.badge {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  color: var(--white-color);
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.bg-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.th-social a {
  display: inline-block;
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  background-color: var(--white-color);
  color: var(--title-color);
  font-size: 16px;
  text-align: center;
  margin-right: 10px;
  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: #f4f7ff;
  color: var(--title-color);
  border: 1px solid #f4f7ff;
}
.th-social.style2 a:hover {
  border-color: var(--theme-color);
  color: var(--white-color);
  background-color: var(--theme-color);
}
.th-social.style3 a {
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  margin-right: 10px;
}
.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.btn-group.style2 {
  gap: 20px 70px;
}
@media (max-width: 767px) {
  .btn-group.style2 {
    gap: 20px 30px;
  }
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.text-white {
  color: var(--white-color) !important;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 0;
  }
}
@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.4;
  }
  50% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.4;
  }
  50% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(2.2);
    transform: scale(2.2);
    opacity: 0;
  }
}
@-webkit-keyframes scrollMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes scrollMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@-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%;
  }
}
@-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);
  }
}
.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);
  }
}
@-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);
  }
}
@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);
  }
}
@-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);
  }
}
@-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%;
  }
}
@-webkit-keyframes lineDown {
  0% {
    -webkit-transform: 0;
    transform: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    opacity: 1;
  }
}
@keyframes lineDown {
  0% {
    -webkit-transform: 0;
    transform: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    opacity: 1;
  }
}
@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
@keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translate3d(var(--move-initial), 0, 0);
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(var(--move-final), 0, 0);
    transform: translate3d(var(--move-final), 0, 0);
  }
}
.zoom {
  -webkit-animation: zoom 35s linear infinite;
  animation: zoom 35s linear infinite;
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.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);
  }
}
@-webkit-keyframes barbellMove {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-12px) rotate(-6deg);
    transform: translateX(-12px) rotate(-6deg);
  }
  50% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(12px) rotate(6deg);
    transform: translateX(12px) rotate(6deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes barbellMove {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-12px) rotate(-6deg);
    transform: translateX(-12px) rotate(-6deg);
  }
  50% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(12px) rotate(6deg);
    transform: translateX(12px) rotate(6deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes marble {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateY(-10px) rotate(5deg);
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateY(10px) rotate(-5deg);
    transform: translateY(10px) rotate(-5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes marble {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateY(-10px) rotate(5deg);
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateY(10px) rotate(-5deg);
    transform: translateY(10px) rotate(-5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
}
@-webkit-keyframes scaleUpDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleUpDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes roundFill {
  0% {
    width: 0;
  }
  60% {
    width: 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes roundFill {
  0% {
    width: 0;
  }
  60% {
    width: 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes border-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes border-spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes smoothRadius {
  0% {
    border-radius: 8px;
  }
  50% {
    border-radius: 250px;
  }
  100% {
    border-radius: 500px;
  }
}
@keyframes smoothRadius {
  0% {
    border-radius: 8px;
  }
  50% {
    border-radius: 250px;
  }
  100% {
    border-radius: 500px;
  }
}
@-webkit-keyframes dance {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    -webkit-transform: translateX(calc(100vw - 290px));
    transform: translateX(calc(100vw - 290px));
  }
}
@keyframes dance {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    -webkit-transform: translateX(calc(100vw - 290px));
    transform: translateX(calc(100vw - 290px));
  }
}
@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-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);
  }
}
@-webkit-keyframes dance3 {
  0% {
    -webkit-transform: translate3d(-10px, -100px, 0) rotate(-15deg) scaleY(1.1);
    transform: translate3d(-10px, -100px, 0) rotate(-15deg) scaleY(1.1);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) scaleY(0.85);
    transform: translate3d(0, 8px, 0) scaleY(0.85);
  }
  100% {
    -webkit-transform: translate3d(10px, -100px, 0) rotate(15deg) scaleY(1.1);
    transform: translate3d(10px, -100px, 0) rotate(15deg) scaleY(1.1);
  }
}
@keyframes dance3 {
  0% {
    -webkit-transform: translate3d(-10px, -100px, 0) rotate(-15deg) scaleY(1.1);
    transform: translate3d(-10px, -100px, 0) rotate(-15deg) scaleY(1.1);
  }
  50% {
    -webkit-transform: translate3d(0, 8px, 0) scaleY(0.85);
    transform: translate3d(0, 8px, 0) scaleY(0.85);
  }
  100% {
    -webkit-transform: translate3d(10px, -100px, 0) rotate(15deg) scaleY(1.1);
    transform: translate3d(10px, -100px, 0) rotate(15deg) scaleY(1.1);
  }
}
@-webkit-keyframes floatMarble {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-6px) rotate(3deg);
    transform: translateX(-6px) rotate(3deg);
  }
  50% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(6px) rotate(-3deg);
    transform: translateX(6px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}
@keyframes floatMarble {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(-6px) rotate(3deg);
    transform: translateX(-6px) rotate(3deg);
  }
  50% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
  75% {
    -webkit-transform: translateX(6px) rotate(-3deg);
    transform: translateX(6px) rotate(-3deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    top: 0%;
    left: 20%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  20% {
    top: 0%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  24% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  25.01% {
    top: 0%;
    left: 60%;
    opacity: 1;
  }
  35% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  45% {
    top: 0%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  50.01% {
    top: 0%;
    left: 40%;
    opacity: 1;
  }
  60% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  70% {
    top: 0%;
  }
  74% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  75.01% {
    top: 0%;
    left: 80%;
    opacity: 1;
  }
  85% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  95% {
    top: 0%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bounce {
  0% {
    top: 0%;
    left: 20%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  20% {
    top: 0%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  24% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  25.01% {
    top: 0%;
    left: 60%;
    opacity: 1;
  }
  35% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  45% {
    top: 0%;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  50.01% {
    top: 0%;
    left: 40%;
    opacity: 1;
  }
  60% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  70% {
    top: 0%;
  }
  74% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  75.01% {
    top: 0%;
    left: 80%;
    opacity: 1;
  }
  85% {
    top: calc(100% - 50px);
    -webkit-transform: scale(1.05, 0.85);
    transform: scale(1.05, 0.85);
  }
  95% {
    top: 0%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translate(0px, -12vh);
    transform: translate(0px, -12vh);
  }
  100% {
    -webkit-transform: translate(0px, 12vh);
    transform: translate(0px, 12vh);
  }
}
@-webkit-keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes zoom1 {
  0% {
    scale: 0.2;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.2;
  }
}
@keyframes zoom1 {
  0% {
    scale: 0.2;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.2;
  }
}
@-webkit-keyframes topBottomLine {
  0% {
    top: 0;
  }
  50% {
    top: calc(100% - 30px);
  }
  100% {
    top: 0;
  }
}
@keyframes topBottomLine {
  0% {
    top: 0;
  }
  50% {
    top: calc(100% - 30px);
  }
  100% {
    top: 0;
  }
}
@-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;
  }
}
@keyframes footerLine {
  0% {
    left: 40px;
  }
  50% {
    left: 0;
  }
  100% {
    left: 40px;
  }
}
@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@-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);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-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);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes dance {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@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);
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}
.widget_nav_menu > ul,
.widget_nav_menu .menu {
  margin: 0 0 -10px 0;
}
.widget_nav_menu a {
  position: relative;
  display: block;
  padding: 16px 0 16px 19px;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.313;
  color: var(--body-color);
  border-bottom: 1px solid #e0e0e0;
}
.widget_nav_menu a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 25px;
  font-family: var(--icon-font);
  font-weight: 900;
  color: var(--body-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  width: 8px;
  height: 8px;
  background-color: var(--body-color);
  border-radius: 50%;
}
.widget_nav_menu li {
  display: block;
  position: relative;
}
.widget_nav_menu li:last-child a {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.widget_nav_menu li > span {
  color: var(--body-color);
  font-weight: 400;
  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 {
  color: var(--theme-color);
}
.widget_nav_menu a:hover:before {
  color: var(--theme-color);
  background-color: var(--theme-color);
}
.widget_nav_menu a:hover ~ span {
  color: var(--theme-color);
}
.widget_nav_menu .children {
  margin-left: 10px;
}
.widget_nav_menu a {
  padding-right: 20px;
}
.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: #f4f7ff;
  margin-bottom: 32px;
  position: relative;
  border-radius: 8px;
}
@media (max-width: 1299px) {
  .widget {
    padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 30px);
  }
}
.widget .th-social a {
  background-color: var(--smoke-color);
  color: var(--title-color);
}
.widget .th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.widget_title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: capitalize;
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}

.widget_title.style2 {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  line-height: 1em;
  padding-bottom: 17px;
  margin: -0.12em 0 30px 0;
}

.widget_title.style2:after,
.widget_title.style2:before {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #e0e0e0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.widget_title.style2:after {
  background-color: var(--theme-color);
  width: 50px;
}
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 20px;
    --widget-padding-x: 20px;
  }
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}
@media (max-width: 991px) {
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}
@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: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.footer-widget .form-group > i {
  color: var(--theme-color);
  top: 18px;
}
.footer-widget .widget_title {
  max-width: 270px;
  padding: 0 0 25px 0;
  margin: 0 0 15px 0;
}

.footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}

.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -5px;
}

.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin-bottom: 21px;
  font-family: var(--body-font);
  color: #5e5e60;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: relative;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.footer-widget.widget_nav_menu a:before {
  display: none;
}

.footer-widget.widget_nav_menu a:hover {
  color: var(--theme-color);
}

.footer-widget.widget_nav_menu a:hover:before {
  background-color: var(--theme-color);
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}

.footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget.widget_nav_menu.style2 a:before {
  content: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cpath d='M16.25 6.47399V9.52606C16.25 9.75581 16.0638 9.94225 15.8338 9.94225H10.1923V15.5838C10.1923 15.8139 10.0058 16 9.77606 16H6.72399C6.49437 16 6.30779 15.8138 6.30779 15.5838V9.94225H0.666193C0.436253 9.94225 0.25 9.75581 0.25 9.52606V6.47399C0.25 6.24419 0.436253 6.05779 0.666193 6.05779H6.30779V0.416193C6.30779 0.186162 6.49432 0 6.72399 0H9.77606C10.0058 0 10.1923 0.186162 10.1923 0.416193V6.05779H15.8338C16.0639 6.05779 16.25 6.24419 16.25 6.47399Z' fill='%235C5F71'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.footer-widget.widget_nav_menu.style2 a:hover:before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6.47399V9.52606C16 9.75581 15.8138 9.94225 15.5838 9.94225H9.94225V15.5838C9.94225 15.8139 9.75581 16 9.52606 16H6.47399C6.24437 16 6.05779 15.8138 6.05779 15.5838V9.94225H0.416193C0.186253 9.94225 0 9.75581 0 9.52606V6.47399C0 6.24419 0.186253 6.05779 0.416193 6.05779H6.05779V0.416193C6.05779 0.186162 6.24432 0 6.47399 0H9.52606C9.75581 0 9.94225 0.186162 9.94225 0.416193V6.05779H15.5838C15.8139 6.05779 16 6.24419 16 6.47399Z' fill='%23F96363'/%3E%3C/svg%3E%0A");
  color: var(--theme-color);
}
.th-widget-about .about-logo {
  margin-bottom: 32px;
}
.th-widget-about .about-text {
  font-size: 16px;
  color: #5e5e60;
  margin-bottom: 30px;
  margin-top: -0.5em;
}
@media (max-width: 1199px) {
  
  .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .th-widget-about .about-text {
    margin-bottom: 20px;
  }
}
.th-header {
  position: relative;
  z-index: 41;
}
.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);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}
@-webkit-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-family: var(--body-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--title-color);
  text-transform: capitalize;
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu > ul > li {
  margin: 0 16px;
}
.main-menu > ul > li > a {
  padding: 29px 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:has(.sub-menu) > a:after,
.main-menu ul li:has(.mega-menu) > a:after {
  content: "";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 900;
  top: 0;
  font-size: 14px;
}
.main-menu ul li:last-child {
  margin-right: 0 !important;
}
.main-menu ul li:first-child {
  margin-left: 0 !important;
}
.header-button {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.header-button .icon-btn {
  position: relative;
}
.header-logo {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 575px) {
  .header-logo {
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  .main-menu > ul > li > a {
    padding: 37px 0;
  }
}
@media (max-width: 1299px) {
  .header-button .th-btn:not(:last-child) {
    display: none;
  }
}
.header-layout1.style2 .menu-area {
  background-color: #f5f5f5;
  border-radius: 24px;
  margin: 20px 0;
  padding: 0 6px;
}
@media (max-width: 575px) {
  .header-layout1.style2 .menu-area {
    margin: 10px 0;
    padding: 10px 10px;
  }
}
@media (max-width: 1199px) {
  .header-layout1 .sticky-wrapper.sticky {
    padding: 12px 0;
  }
}
@media (max-width: 1199px) {
  .header-layout1 .menu-area {
    padding: 12px 0;
  }
}
.header-layout1 .header-button {
  gap: 16px;
}
@media (max-width: 575px) {
  .header-layout1 .header-button {
    gap: 8px;
  }
}
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.widget-area {
  padding-top: var(--section-space);
  padding-bottom: 30px;
}
.footer-links ul {
  padding: 0;
  margin: 0;
}
.footer-links li {
  font-size: 16px;
  font-family: var(--body-font);
  display: inline-block;
  padding-right: 25px;
  margin-right: 10px;
  position: relative;
}
@media (max-width: 575px) {
  .footer-links li {
    padding-right: 20px;
    margin-right: 5px;
  }
}
.footer-links li:after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4001_6480)'%3E%3Cpath d='M10.6221 8.20517C9.30864 8.20517 8.20908 9.27419 8.20908 10.6181V15.6577C8.20908 15.7927 8.09968 15.9022 7.96473 15.9022C7.82978 15.9022 7.72038 15.7927 7.72038 15.6577V10.6181C7.72038 9.27419 6.62082 8.20517 5.27691 8.20517H0.267785C0.132835 8.20517 0.0234375 8.09577 0.0234375 7.96082C0.0234375 7.82588 0.132835 7.71647 0.267785 7.71647H5.27691C6.62082 7.68593 7.72038 6.61691 7.68984 5.27301V0.279151C7.68984 0.135767 7.80608 0.0195312 7.94946 0.0195312C8.09284 0.0195312 8.20908 0.135767 8.20908 0.279151V5.27301C8.20908 6.61691 9.30864 7.68593 10.6221 7.68593H15.6464C15.7897 7.68593 15.9061 7.80216 15.9061 7.94555C15.9061 8.08893 15.7897 8.20517 15.6464 8.20517H10.6221Z' fill='%23D4FF12'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4001_6480'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  top: 10%;
  right: 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: #5c5f71;
}
.footer-links a:hover {
  color: var(--theme-color);
}
.copyright-wrap {
  background-color: var(--white-color);
  padding: 18px 0;
}
.copyright-text {
  margin: 0;
  color: var(--body-color);
}
.copyright-text a {
  color: var(--theme-color);
}
.copyright-text a:hover {
  color: var(--title-color);
}
.copyright-wrap {
  background-color: rgba(0, 0, 0, 0);
}
.copyright-wrap .copyright-text {
  color: var(--body-color);
}
.copyright-wrap .footer-links a {
  color: #fff;
}
.copyright-wrap .footer-links a:hover {
  color: var(--theme-color2);
}
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 30px;
  }
}
.footer-layout1 {
  --smoke-color2: #fff;
}
.footer-layout1 .footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #525252;
  margin-bottom: 80px;
  gap: 30px;
}
@media (max-width: 1199px) {
  .footer-layout1 .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-bottom: 80px;
  }
}
.footer-layout1 .footer-top .box-title {
  font-weight: 600;
  font-size: 56px;
  line-height: 74px;
  max-width: 625px;
  margin-bottom: 80px;
}
@media (max-width: 1299px) {
  .footer-layout1 .footer-top .box-title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 1199px) {
  .footer-layout1 .footer-top .box-title {
    margin-bottom: 0;
  }
}
.footer-layout1 .about-text {
  color: var(--smoke-color);
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .footer-layout1 .about-text {
    margin-bottom: 30px;
  }
}
.footer-layout1 .th-widget-about {
  max-width: 248px;
}
.footer-layout1 .widget-area {
  padding-top: 80px;
}
.footer-layout1.style2 .footer-line:before {
  content: "";
  position: absolute;
  top: 0;
  right: -150px;
  background-color: #3c3a3f;
  width: 1px;
  height: 100%;
}
@media (max-width: 1399px) {
  .footer-layout1.style2 .footer-line:before {
    right: -70px;
  }
}
@media (max-width: 1199px) {
  .footer-layout1.style2 .footer-line:before {
    display: none;
  }
}
.footer-layout1 .footer-line:before {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  background-color: #3c3a3f;
  width: 1px;
  height: 100%;
}
@media (max-width: 1399px) {
  .footer-layout1 .footer-line:before {
    right: -70px;
  }
}
@media (max-width: 1199px) {
  .footer-layout1 .footer-line:before {
    display: none;
  }
}
.footer-layout1 .footer-widget {
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .footer-layout1 .footer-widget {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .footer-layout1 .footer-widget {
    margin-bottom: 30px;
  }
}
.footer-layout1 .footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  text-transform: uppercase;
}
.footer-layout1 .footer-widget.widget_nav_menu a {
  color: #d4d4d4;
}
.footer-layout1 .footer-widget.widget_nav_menu a:hover {
  color: var(--theme-color2);
}
.footer-layout1 .footer-widget.widget_nav_menu a:before {
  background-color: #d4d4d4;
}
.footer-layout1 .copyright-text {
  color: var(--white-color);
  text-align: left;
}
@media (max-width: 1199px) {
  .footer-layout1 .copyright-text {
    text-align: center;
  }
}
.footer-layout1 .copyright-text a:hover {
  color: var(--white-color);
}
.footer-layout1 .th-social a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #484848;
  border-radius: 48px;
  color: var(--white-color);
  font-size: 13px;
  margin-right: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1500px) {
  .footer-layout1 .th-social a {
    margin-right: 5px;
  }
}
.footer-layout1 .th-social a:hover {
  background-color: var(--theme-color2);
  color: var(--title-color);
}
.footer-layout1 .copyright-wrap {
  border-top: 1px solid #525252;
  margin-top: 20px;
  padding: 25px 0;
}
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 20px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}
.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  color: var(--white-color);
  position: relative;
  font-weight: 400;
  font-size: 18px;
}
.breadcumb-menu li:after {
  content: ">";
  position: relative;
  margin-left: 10px;
  font-weight: 400;
  font-size: 15px;
  color: var(--white-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 a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 18px;
  color: var(--white-color);
}
.breadcumb-title {
  color: var(--white-color);
  font-weight: 700;
  font-size: 57px;
  letter-spacing: 0.02em;
  margin: -0.22em 0 -0.14em 0;
  line-height: 1.1;
}
@media (max-width: 1500px) {
  .breadcumb-title {
    font-size: 47px;
    line-height: 1.31;
  }
}
.breadcumb-wrapper {
  position: relative;
  background-color: var(--title-color);
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}
@media (max-width: 575px) {
  .breadcumb-wrapper {
    padding: 100px 0;
  }
}
.breadcumb-wrapper:before {
  content: ">";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(16, 16, 22, 0.7)),
    to(rgba(16, 16, 22, 0.7))
  );
  background: linear-gradient(
    0deg,
    rgba(16, 16, 22, 0.7),
    rgba(16, 16, 22, 0.7)
  );
  z-index: 1;
}
.breadcumb-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 40px;
  }
  .breadcumb-menu {
    margin: 20px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 30px;
  }
}
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .btn-group:has(.call-btn) {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .btn-group:has(.call-btn) {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .hero-image {
    text-align: center;
  }
}
.hero-1 .hero-card {
  border-radius: 24px;
  padding: 51px 40px;
}
@media (max-width: 1799px) {
  .hero-1 .hero-card {
    padding: 40px 20px;
  }
}
@media (max-width: 1299px) {
  .hero-1 .hero-card {
    padding: 40px 8px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-card {
    padding: 10px 18px;
  }
}
.hero-1 .hero-card .box-number {
  line-height: 48px;
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-card .box-number {
    font-size: 38px;
    line-height: 38px;
  }
}
.hero-1 .hero-card .box-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 0;
}
@media (max-width: 1699px) {
  .hero-1 .hero-card .box-text {
    font-size: 20px;
    line-height: 23px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-card .box-text {
    font-size: 18px;
    line-height: 23px;
  }
}
.hero-1 .hero-video {
  height: 100%;
  margin-bottom: 20px;
}
.hero-1 .hero-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}
.hero-style1 {
  position: relative;
  padding: 102px 56px 102px 56px;
  z-index: 4;
  border-radius: 24px;
  margin-bottom: 20px;
}
@media (max-width: 1899px) {
  .hero-style1 {
    padding: 102px 36px 102px 56px;
  }
}
@media (max-width: 1299px) {
  .hero-style1 {
    padding: 102px 26px 102px 36px;
  }
}
@media (max-width: 991px) {
  .hero-style1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-style1 {
    padding: 60px 20px 50px 20px;
  }
}
@media (max-width: 375px) {
  .hero-style1 .sub-title {
    font-size: 14px;
  }
}
.hero-style1 .sub-title:before {
  top: 13px;
  left: 14px;
}
.hero-style1 .hero-title {
  margin-bottom: 20px;
}
@media (max-width: 1700px) {
  .hero-style1 .hero-title {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .hero-style1 .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-style1 .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 320px) {
  .hero-style1 .hero-title {
    font-size: 30px;
  }
}
.hero-style1 .hero-text {
  color: #06050b;
  font-size: 18px;
  max-width: 546px;
  margin-bottom: 54px;
}
@media (max-width: 991px) {
  .hero-style1 .hero-text {
    max-width: 100%;
  }
}
.hero-style1 .th-btn {
  padding: 24px 24px;
  gap: 40px;
}
.hero-style1 .th-btn:before,
.hero-style1 .th-btn:after {
  width: 64px;
  height: 64px;
}
.hero-style1 .th-btn:hover:after {
  width: 100%;
}
.hero-style1 .btn-group {
  gap: 30px;
}
@media (max-width: 480px) {
  .hero-style1 .btn-group {
    gap: 14px;
  }
}
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: rgba(0, 0, 0, 0);
  font-size: 22px;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: var(--theme-color);
}
.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition:
    transform ease 0.4s,
    -webkit-transform ease 0.4s;
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--theme-color);
  background-color: rgba(0, 0, 0, 0);
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}
.popup-search-box form input::-moz-placeholder {
  color: #fff;
}
.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}
.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form input::-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form input::placeholder {
  color: #fff;
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.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 .widget {
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}
.sidemenu-wrapper .widget .widget_title {
  color: var(--title-color);
}
.sidemenu-wrapper .widget.footer-widget .th-widget-about .about-text {
  color: var(--body-color);
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 35px 40px 35px 40px;
  background-color: var(--smoke-color2);
  margin-bottom: 0;
  border-radius: 10px;
}
@media (max-width: 575px) {
  
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 40px 20px;
  }
}

.woocommerce-form-coupon select,
.woocommerce-form-coupon .form-control,
.woocommerce-form-coupon .form-select,
.woocommerce-form-coupon textarea,
.woocommerce-form-coupon input,
.woocommerce-form-login select,
.woocommerce-form-login .form-control,
.woocommerce-form-login .form-select,
.woocommerce-form-login textarea,
.woocommerce-form-login input {
  background-color: var(--white-color);
  border-color: var(--white-color);
  border-radius: 48px;
}

.woocommerce-form-coupon select::-moz-placeholder,
.woocommerce-form-coupon .form-control::-moz-placeholder,
.woocommerce-form-coupon .form-select::-moz-placeholder,
.woocommerce-form-coupon textarea::-moz-placeholder,
.woocommerce-form-coupon input::-moz-placeholder,
.woocommerce-form-login select::-moz-placeholder,
.woocommerce-form-login .form-control::-moz-placeholder,
.woocommerce-form-login .form-select::-moz-placeholder,
.woocommerce-form-login textarea::-moz-placeholder,
.woocommerce-form-login input::-moz-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select::-webkit-input-placeholder,
.woocommerce-form-coupon .form-control::-webkit-input-placeholder,
.woocommerce-form-coupon .form-select::-webkit-input-placeholder,
.woocommerce-form-coupon textarea::-webkit-input-placeholder,
.woocommerce-form-coupon input::-webkit-input-placeholder,
.woocommerce-form-login select::-webkit-input-placeholder,
.woocommerce-form-login .form-control::-webkit-input-placeholder,
.woocommerce-form-login .form-select::-webkit-input-placeholder,
.woocommerce-form-login textarea::-webkit-input-placeholder,
.woocommerce-form-login input::-webkit-input-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select:-ms-input-placeholder,
.woocommerce-form-coupon .form-control:-ms-input-placeholder,
.woocommerce-form-coupon .form-select:-ms-input-placeholder,
.woocommerce-form-coupon textarea:-ms-input-placeholder,
.woocommerce-form-coupon input:-ms-input-placeholder,
.woocommerce-form-login select:-ms-input-placeholder,
.woocommerce-form-login .form-control:-ms-input-placeholder,
.woocommerce-form-login .form-select:-ms-input-placeholder,
.woocommerce-form-login textarea:-ms-input-placeholder,
.woocommerce-form-login input:-ms-input-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select::-webkit-input-placeholder,
.woocommerce-form-coupon .form-control::-webkit-input-placeholder,
.woocommerce-form-coupon .form-select::-webkit-input-placeholder,
.woocommerce-form-coupon textarea::-webkit-input-placeholder,
.woocommerce-form-coupon input::-webkit-input-placeholder,
.woocommerce-form-login select::-webkit-input-placeholder,
.woocommerce-form-login .form-control::-webkit-input-placeholder,
.woocommerce-form-login .form-select::-webkit-input-placeholder,
.woocommerce-form-login textarea::-webkit-input-placeholder,
.woocommerce-form-login input::-webkit-input-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select::-moz-placeholder,
.woocommerce-form-coupon .form-control::-moz-placeholder,
.woocommerce-form-coupon .form-select::-moz-placeholder,
.woocommerce-form-coupon textarea::-moz-placeholder,
.woocommerce-form-coupon input::-moz-placeholder,
.woocommerce-form-login select::-moz-placeholder,
.woocommerce-form-login .form-control::-moz-placeholder,
.woocommerce-form-login .form-select::-moz-placeholder,
.woocommerce-form-login textarea::-moz-placeholder,
.woocommerce-form-login input::-moz-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select:-ms-input-placeholder,
.woocommerce-form-coupon .form-control:-ms-input-placeholder,
.woocommerce-form-coupon .form-select:-ms-input-placeholder,
.woocommerce-form-coupon textarea:-ms-input-placeholder,
.woocommerce-form-coupon input:-ms-input-placeholder,
.woocommerce-form-login select:-ms-input-placeholder,
.woocommerce-form-login .form-control:-ms-input-placeholder,
.woocommerce-form-login .form-select:-ms-input-placeholder,
.woocommerce-form-login textarea:-ms-input-placeholder,
.woocommerce-form-login input:-ms-input-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select::-ms-input-placeholder,
.woocommerce-form-coupon .form-control::-ms-input-placeholder,
.woocommerce-form-coupon .form-select::-ms-input-placeholder,
.woocommerce-form-coupon textarea::-ms-input-placeholder,
.woocommerce-form-coupon input::-ms-input-placeholder,
.woocommerce-form-login select::-ms-input-placeholder,
.woocommerce-form-login .form-control::-ms-input-placeholder,
.woocommerce-form-login .form-select::-ms-input-placeholder,
.woocommerce-form-login textarea::-ms-input-placeholder,
.woocommerce-form-login input::-ms-input-placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon select::placeholder,
.woocommerce-form-coupon .form-control::placeholder,
.woocommerce-form-coupon .form-select::placeholder,
.woocommerce-form-coupon textarea::placeholder,
.woocommerce-form-coupon input::placeholder,
.woocommerce-form-login select::placeholder,
.woocommerce-form-login .form-control::placeholder,
.woocommerce-form-login .form-select::placeholder,
.woocommerce-form-login textarea::placeholder,
.woocommerce-form-login input::placeholder {
  color: #6e6e6e;
}

.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 20px;
}

.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}
.woocommerce-form-login {
  margin-bottom: 30px;
}
.rating-select label {
  margin: 0;
  margin-right: 10px;
}
.rating-select p.stars {
  margin-bottom: 0;
  line-height: 1;
}
.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}
.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  font-family: var(--icon-font);
  content: "";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}
.rating-select p.stars a:hover ~ a::before {
  content: "";
  font-weight: 400;
}
.rating-select p.stars:hover a::before {
  content: "";
  font-weight: 700;
}
.rating-select p.stars.selected a.active::before {
  content: "";
  font-weight: 700;
}
.rating-select p.stars.selected a.active ~ a::before {
  content: "";
  font-weight: 400;
}
.rating-select p.stars.selected a:not(.active)::before {
  content: "";
  font-weight: 700;
}
.woocommerce-Reviews .comment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.woocommerce-Reviews .comment-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  margin: -12px !important;
  margin-bottom: 28px !important;
}
.woocommerce-Reviews .comment-list li {
  width: 50%;
}
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list li {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#description {
  margin-bottom: 30px;
}
.mfp-close-btn-in .mfp-close {
  color: var(--white-color);
}
.woocommerce-form-login select,
.woocommerce-form-login .form-select,
.woocommerce-form-login .form-control,
.woocommerce-form-coupon select,
.woocommerce-form-coupon .form-select,
.woocommerce-form-coupon .form-control {
  margin-bottom: var(--bs-gutter-x);
}
#ship-to-different-address {
  margin-top: 15px;
}
.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  background-position: right 13px center;
}
.shipping-calculator-form .th-btn {
  font-size: 14px;
  padding: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
}
.contact-media {
  background-color: #f4f7ff;
  border-radius: 16px;
  padding: 35px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.contact-media:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 252px;
  height: 210px;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  border-radius: 75.9166px 0px 16px;
  background-image: url("../img/shape/contact-shape.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .contact-media {
    padding: 40px 25px;
  }
}
@media (max-width: 375px) {
  .contact-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.contact-media:nth-child(2) {
  background-color: #ebf5de;
}
.contact-media:nth-child(2):hover .icon-btn {
  background-color: #57b33e;
}
.contact-media:nth-child(3) {
  background-color: #f2f3fc;
}
.contact-media:nth-child(3):hover .icon-btn {
  background-color: #8487ff;
}
.contact-media:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 1299px) {
  .contact-media {
    padding: 24px;
  }
}
@media (max-width: 375px) {
  .contact-media {
    padding: 16px;
    gap: 15px;
  }
}
.contact-media .icon-btn {
  --btn-size: 56px;
  font-size: 20px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  color: var(--title-color);
  margin-bottom: 16px;
}
@media (max-width: 375px) {
  .contact-media .icon-btn {
    display: block;
    margin: auto;
  }
}
.contact-media .box-text,
.contact-media a {
  color: var(--title-color);
  max-width: 285px;
  display: block;
  margin: auto auto 0 auto;
}
@media (max-width: 375px) {
  .contact-media .box-text,
  .contact-media a {
    max-width: 100%;
    display: block;
    margin: auto;
  }
}
.contact-media .box-text a,
.contact-media a a {
  color: inherit;
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.contact-media .box-text a:hover,
.contact-media a a:hover {
  color: var(--theme-color);
}
.contact-media .box-title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1299px) {
  .contact-media .box-title {
    font-size: 20px;
  }
}
.contact-media:hover:before {
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}
.contact-media:hover .icon-btn {
  background-color: var(--theme-color);
  color: var(--white-color);
}
@-webkit-keyframes location-anim {
  0% {
    -webkit-transform: rotate(5deg) translate(5px, 5px);
    transform: rotate(5deg) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(5deg) translate(-5px, -5px);
    transform: rotate(5deg) translate(-5px, -5px);
  }
}
@keyframes location-anim {
  0% {
    -webkit-transform: rotate(5deg) translate(5px, 5px);
    transform: rotate(5deg) translate(5px, 5px);
  }
  100% {
    -webkit-transform: rotate(5deg) translate(-5px, -5px);
    transform: rotate(5deg) translate(-5px, -5px);
  }
}
@-webkit-keyframes location-anim2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes location-anim2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.image {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.about-tab {
  border-bottom: 1px solid #e5e5e5;
  max-width: 466px;
  gap: 47px;
}
.about-tab .nav-link {
  padding: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: #06050b;
  padding-bottom: 10px;
}
.about-tab .nav-link.active {
  border-bottom: 1px solid var(--theme-color);
}
.about-text {
  max-width: 466px;
  padding-top: 24px;
}
@media (max-width: 1500px) {
  .about-text {
    max-width: 400px;
  }
}
@media (max-width: 1199px) {
  .about-text {
    max-width: 100%;
  }
}
.img-box3 .img1 {
  border-radius: 20px;
}
.img-box3 .img1 img {
  border-radius: 20px;
}
.about-area {
  position: relative;
  z-index: 2;
}
.testi-thumb .tab-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
}
@media (max-width: 1299px) {
  .testi-thumb .tab-btn {
    display: none;
  }
}
.testi-thumb .tab-btn:nth-child(1) {
  position: absolute;
  top: 0%;
  left: 5%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(1) {
    left: 0;
  }
}
.testi-thumb .tab-btn:nth-child(2) {
  position: absolute;
  top: 35%;
  left: 5%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(2) {
    left: 0;
  }
}
.testi-thumb .tab-btn:nth-child(3) {
  position: absolute;
  bottom: 6%;
  left: 8%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(3) {
    left: 0;
  }
}
.testi-thumb .tab-btn:nth-child(4) {
  position: absolute;
  top: 0%;
  right: 5%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(4) {
    right: 0;
  }
}
.testi-thumb .tab-btn:nth-child(5) {
  position: absolute;
  top: 50%;
  right: 5%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(5) {
    right: 0;
  }
}
.testi-thumb .tab-btn:nth-child(6) {
  position: absolute;
  bottom: 0%;
  right: 15%;
}
@media (max-width: 1399px) {
  .testi-thumb .tab-btn:nth-child(6) {
    right: 0;
  }
}
.testi-thumb .tab-btn.active img {
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
  border: 10px solid rgba(249, 99, 99, 0.1);
}
.testi-thumb .tab-btn img {
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(92, 95, 113, 0.2);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.testi-card2 {
  position: relative;
  -webkit-filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
  filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
  z-index: 2;
  padding: 48px 30px 80px 70px;
  display: block;
  width: 536px;
  margin: auto;
}
@media (max-width: 575px) {
  .testi-card2 {
    width: 100%;
    padding: 40px 20px 40px 40px;
  }
}
.testi-card2:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("../img/testimonial/testi-shape4.png");
  mask-image: url("../img/testimonial/testi-shape4.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.testi-card2 .box-text {
  font-size: 20px;
  margin-bottom: 40px;
}
.testi-card2 .box-title {
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}
.testi-sec2 {
  clip-path: polygon(94.36% 0px, 100% 4%, 100% 100%, 0px 100%, 0% 50%, 0px 0px);
}
.testi-sec2 {
  position: relative;
  overflow: hidden;
}
.counter-area {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .counter-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 40px 30px;
  }
}
@media (max-width: 480px) {
  .counter-area {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1399px) {
  .counter-card {
    text-align: center;
  }
}
.counter-card .box-number {
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 5px;
  margin-top: 0;
}
.counter-card .box-text {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
  margin-bottom: 0;
  min-width: 145px;
}
@media (max-width: 991px) {
  .counter-card .box-text {
    font-size: 18px;
  }
}
.counter-card:hover .box-icon img {
  -webkit-animation: scaleUpDown 0.6s ease;
  animation: scaleUpDown 0.6s ease;
}
.counter-card.style2 .box-number {
  color: var(--theme-color2);
}
.counter-card.style2 .box-text {
  color: var(--white-color);
}
.counter-card.style3 .box-number {
  font-size: 64px;
  line-height: 64px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .counter-card.style3 .box-number {
    font-size: 40px;
    line-height: 40px;
  }
}
.counter-card.style3 .box-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color);
}
@media (max-width: 1199px) {
  .counter-card .box-number {
    font-size: 36px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .counter-card .box-number {
    font-size: 36px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .counter-card {
    text-align: center;
  }
  .counter-card:not(:last-child) {
    margin-bottom: 25px;
  }
  .counter-card .box-number {
    font-size: 30px;
  }
}
.cursor-outer {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--theme-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 1;
  -webkit-transition: all 0.43s ease-out 0s;
  transition: all 0.43s ease-out 0s;
  mix-blend-mode: difference;
}
.cursor-outer.cursor-hover {
  margin-left: -5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  mix-blend-mode: difference;
  opacity: 1;
}
.cursor-outer.cursor-big {
  width: 160px;
  height: 160px;
  margin-left: -80px;
  margin-top: -80px;
  background-color: var(--white-color);
  mix-blend-mode: difference;
}
.cursor-outer.not-cursor-outer {
  opacity: 0;
}
.mouseCursor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
.cursor-inner {
  margin-left: -5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme-color);
  opacity: 1;
  -webkit-transition: all 0.26s ease-out 0s;
  transition: all 0.26s ease-out 0s;
  mix-blend-mode: difference;
}
.cursor-inner.cursor-big {
  opacity: 0;
}
.cursor-inner.cursor-hover {
  opacity: 0;
}
.cursor-inner span {
  width: 160px;
  min-width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  margin-left: -80px;
  margin-top: -80px;
  background-color: var(--theme-color);
  color: var(--title-color);
  line-height: 1;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  letter-spacing: 1px;
  mix-blend-mode: difference !important;
  text-align: center;
}
.cursor-inner span i {
  font-size: 24px;
  margin-bottom: -8px;
}
.cursor-inner.not-cursor-outer {
  opacity: 0;
}
.award-item {
  background: #fff9eb;
  border: 1px solid #ffc183;
  border-radius: 50px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  padding: 40px 20px 20px 30px;
  width: 550px;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .award-item {
    width: 100%;
    height: 100%;
  }
}
.award-item.style2 {
  width: 312px;
  height: 300px;
  border-radius: 16px;
  padding: 40px;
  background: var(--white-color);
  border: none;
}
@media (max-width: 767px) {
  .award-item.style2 {
    width: 100%;
    height: 100%;
  }
}
.award-item.style2 .box-title {
  font-family: var(--title-font2);
}
.award-item.style2:nth-child(2) {
  background: var(--white-color);
  border: none;
  margin-left: -7%;
  -webkit-filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
  filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
}
.award-item.style2:nth-child(3) {
  background: var(--white-color);
  border: none;
  border-radius: 16px;
  margin-left: -6%;
  -webkit-filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
  filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
}
.award-item.style2:nth-child(4) {
  background: var(--white-color);
  border: none;
  border-radius: 16px;
  margin-left: -4%;
  -webkit-filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
  filter: drop-shadow(0px 20px 50px rgba(11, 11, 11, 0.1));
}
.award-item:nth-child(2) {
  background: #fffafd;
  border: 1px solid #ff78c9;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  margin-left: -15%;
}
@media (max-width: 575px) {
  .award-item:nth-child(2) {
    margin-left: 0;
  }
}
.award-item:nth-child(3) {
  background: #f0f3fe;
  border: 1px solid #456ff8;
  border-radius: 50px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  margin-left: -15%;
}
@media (max-width: 575px) {
  .award-item:nth-child(3) {
    margin-left: 0;
  }
}
.award-item:nth-child(4) {
  background: #f3fffc;
  border: 1px solid #5dffd9;
  border-radius: 50px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  margin-left: -15%;
}
@media (max-width: 575px) {
  .award-item:nth-child(4) {
    margin-left: 0;
  }
}
.award-item .box-title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .award-item .box-title {
    font-size: 18px;
  }
}
.award-item .box-title .number {
  margin-right: 10px;
}
.award-item .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-area {
  position: relative;
  z-index: 2;
}
.video-area.style2 .video-thumb-img {
  left: 0;
}
@media (max-width: 1799px) {
  .video-area.style2 .video-thumb-img {
    left: -30px;
  }
}
.video-area.style2 .video-thumb-img2 {
  right: 0;
}
@media (max-width: 1799px) {
  .video-area.style2 .video-thumb-img2 {
    right: -30px;
  }
}
.video-area .video-thumb-img {
  position: absolute;
  top: 0%;
  left: 10%;
  height: 100%;
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
  z-index: -1;
  border-radius: 16px;
  will-change: transform;
}
@media (max-width: 991px) {
  .video-area .video-thumb-img {
    display: none;
  }
}
.video-area .video-thumb-img img {
  border-radius: 16px;
}
.video-area .video-thumb-img2 {
  position: absolute;
  top: 0%;
  right: 10%;
  height: 100%;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
  z-index: -1;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .video-area .video-thumb-img2 {
    display: none;
  }
}
.video-area .video-thumb-img2 img {
  border-radius: 16px;
}
.video-thumb-img {
  text-align: center;
  position: relative;
  z-index: 2;
}
.history-list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .history-list-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.history-list-wrap {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.history-list-wrap.active {
  -webkit-box-flex: 700%;
  -ms-flex: 700%;
  flex: 700%;
}
@media (max-width: 1199px) {
  .history-list-wrap.active {
    max-width: 100%;
  }
}
.history-list-wrap.active .icon-btn {
  opacity: 0;
  visibility: hidden;
}
.cta-area2 {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 80px 40px;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-area2.style2:before {
  display: none;
}
.cta-area2.style2:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/bg/cta-shape.png");
  z-index: -1;
}
@media (max-width: 767px) {
  .cta-area2 {
    padding: 40px 20px;
    min-height: 380px;
  }
  .cta-area2 .th-btn.th-border {
    padding: 20px 30px 20px 30px;
  }
}
.cta-area2 .box-text {
  max-width: 632px;
  color: var(--white-color);
  font-size: 20px;
  display: block;
  margin: auto auto 60px auto;
}
@media (max-width: 767px) {
  .cta-area2 .box-text {
    font-size: 18px;
  }
}
.cta-area2 .th-btn.th-border {
  color: var(--white-color);
}
.cta-area2 .th-btn.th-border:hover {
  color: var(--title-color);
}
.cta-area2.style2:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 11, 0.7);
  z-index: -1;
}
.cta-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 24px;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .cta-list {
    display: grid;
    grid-template-columns: auto auto;
  }
}
@media (max-width: 480px) {
  .cta-list {
    grid-template-columns: auto;
  }
}
.cta-list li {
  color: var(--white-color);
  list-style: none;
}
.cta-list li i {
  color: var(--theme-color2);
  margin-right: 8px;
}
.newsletter-form {
  position: relative;
  min-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: auto;
}
@media (max-width: 1199px) {
  .newsletter-form {
    max-width: 525px;
  }
}
@media (max-width: 767px) {
  .newsletter-form {
    display: block;
    max-width: 100%;
    min-width: 100%;
  }
}
.newsletter-form .form-control {
  border: 1px solid var(--white-color);
  border-radius: 100px;
  min-height: 80px;
  font-weight: 400;
  font-size: 16px;
  padding-right: 200px;
}
.newsletter-form .form-control::-moz-placeholder {
  color: var(--white-color);
}
.newsletter-form .form-control::-webkit-input-placeholder {
  color: var(--white-color);
}
.newsletter-form .form-control:-ms-input-placeholder {
  color: var(--white-color);
}
.newsletter-form .form-control::-ms-input-placeholder {
  color: var(--white-color);
}
.newsletter-form .form-control::placeholder {
  color: var(--white-color);
}
.newsletter-form .form-control:focus {
  color: var(--white-color);
}
@media (max-width: 767px) {
  .newsletter-form .form-control {
    padding-right: 50px;
  }
}
.newsletter-form .th-btn {
  min-width: 130px;
  padding: 16px 24px;
  border-radius: 100px;
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (max-width: 767px) {
  .newsletter-form .th-btn {
    position: relative;
    right: 0;
    top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 19px 24px;
  }
}
.cta-wrapp {
  position: relative;
}
.cta-wrapp {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto;
  gap: 20px;
}
@media (max-width: 1199px) {
  .cta-wrapp {
    grid-template-columns: auto auto auto auto;
  }
}
@media (max-width: 767px) {
  .cta-wrapp {
    grid-template-columns: auto auto;
  }
}
.cta-wrapp .cta-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  z-index: 2;
}
.cta-wrapp .cta-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(6, 5, 11, 0.5);
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrapp .cta-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.cta-wrapp .cta-item:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cta-wrapp .cta-item:hover .icon {
  opacity: 1;
  visibility: visible;
}
.cta-wrapp .cta-item img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.cta-wrapp {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.cta-item {
  will-change: transform;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition:
    box-shadow 0.4s ease,
    -webkit-box-shadow 0.4s ease;
}
.cta-item:hover {
  -webkit-box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}
.slide-text {
  height: 60vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slide-text .title {
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.service-area {
  background-color: #f5f5f5;
  border-radius: 32px;
  margin: 20px;
}
@media (max-width: 1699px) {
  .service-area {
    margin: 0;
    border-radius: 0;
  }
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 40px;
}
@media (max-width: 1500px) {
  .service-card {
    padding: 30px 25px;
  }
}
.service-card .box-icon {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 32px;
  z-index: 2;
}
.service-card .box-icon:before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: inherit;
  background-color: var(--theme-color2);
  -webkit-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-card .box-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.service-card .box-title {
  margin-bottom: 10px;
}
.service-card .box-text {
  margin-bottom: -0.3rem;
}
.service-card:hover .box-icon:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.service-card:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
@media (max-width: 767px) {
  .service-card.style2 {
    text-align: center;
  }
}
.service-card.style2 .box-icon {
  z-index: 2;
}
@media (max-width: 767px) {
  .service-card.style2 .box-icon {
    display: block;
    margin: auto auto 30px auto;
  }
}
.service-card.style2 .box-icon img {
  padding: 13px;
}
.service-card.style2 .box-icon:before {
  display: none;
}
.service-box2 {
  position: relative;
  z-index: 2;
  background: #f4f7ff;
  border-radius: 16px;
  padding: 44px 40px;
}
@media (max-width: 1299px) {
  .service-box2 {
    padding: 35px 25px;
  }
}
.service-box2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/shape/service-shape.png");
  background-repeat: no-repeat;
  border-radius: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.service-box2 .box-icon {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background: linear-gradient(309.43deg, #a378ff 9.12%, #1c4eff 100%);
  border-radius: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.service-box2 .box-icon:before {
  content: "";
  position: absolute;
  inset: 10px;
  background-color: var(--white-color);
  border-radius: inherit;
  z-index: -1;
}
.service-box2 .box-title {
  margin-bottom: 10px;
}
@media (max-width: 1299px) {
  .service-box2 .box-title {
    font-size: 20px;
  }
}
.service-box2 .box-text {
  margin-bottom: 35px;
}
.service-box2 .icon-btn {
  position: absolute;
  right: 0;
  bottom: 7px;
  background-color: var(--white-color);
  border-color: var(--white-color);
}
.service-box2 .icon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.service-box2:hover:before {
  opacity: 1;
  visibility: visible;
}
.pricing-tabs.style2 {
  max-width: 247px;
  display: block;
  margin: auto;
  padding: 14px 12px 12px;
  border: 1px solid #404040;
  border-radius: 48px;
}
.pricing-tabs.style3 {
  max-width: 288px;
  display: block;
  margin: auto;
  background-color: #f4f7ff;
  padding: 12px;
  border-radius: 48px;
}
.project-item2 .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.project-item2 .th-box-img {
  min-width: 250px;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .project-item2 .th-box-img {
    min-width: 100%;
  }
}
.project-item2 .th-box-img img {
  border-radius: 24px;
}
.project-item2 .box-title {
  font-size: 32px;
}
.project-item2 .box-text {
  max-width: 270px;
}
.project-item2.item-2 {
  display: block;
  margin-left: auto;
}
.process-line {
  background-color: var(--smoke-color) !important;
  opacity: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .process-line {
    display: none;
  }
}
.process-area {
  position: relative;
  margin: 0 20px;
  border-radius: 32px;
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .process-area {
    border-radius: 0;
    margin: 0;
  }
}
.process-area::before {
  border-radius: inherit;
}
.choose-wrapper {
  background-color: #f4f7ff;
  display: grid;
  grid-template-columns: auto auto;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.choose-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 219px;
  height: 253px;
  background: #7b5dff;
  opacity: 0.4;
  -webkit-filter: blur(75px);
  filter: blur(75px);
  border-radius: 16px 260px 16px 16px;
}
.choose-item {
  padding: 52px 70px;
}
@media (max-width: 1299px) {
  .choose-item {
    padding: 30px 40px;
  }
}
@media (max-width: 375px) {
  .choose-item {
    padding: 30px 20px;
  }
}
.choose-item:not(:last-child) {
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.choose-item:nth-child(2) {
  border-right-color: rgba(0, 0, 0, 0);
}
.choose-item:nth-child(3) {
  border-bottom-color: rgba(0, 0, 0, 0);
}
.choose-item .box-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--title-color);
  display: block;
  margin-bottom: 10px;
}
.choose-item .box-number {
  margin-bottom: 0;
}
.choose-item .box-text {
  max-width: 174px;
  margin-bottom: 0;
}
.choose-img-box {
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.choose-img-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06050b;
  opacity: 0.5;
  border-radius: 16px;
}
.choose-img-box .img1 {
  height: 100%;
  border-radius: 16px;
}
.choose-img-box .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}
.choose-img-box .title-area {
  position: absolute;
  top: 50%;
  left: 56px;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .choose-img-box .title-area {
    left: 30px;
  }
  .choose-img-box .title-area .sec-title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .choose-img-box .title-area {
    left: 18px;
  }
  .choose-img-box .title-area .sec-title {
    font-size: 24px;
  }
}
.choose-content .title-area {
  max-width: 550px;
}
@-webkit-keyframes grow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes grow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.th-feature-revealing-slider-control {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 5%;
  width: var(--controlSize);
  height: var(--controlSize);
  margin-left: calc(var(--controlSize) / -2);
  margin-top: calc(var(--controlSize) / -2);
  border-radius: 50%;
  background-color: #fff;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .th-feature-revealing-slider-control {
    display: none;
  }
}
.th-feature-revealing-slider-control:hover {
  background-color: var(--theme-color2);
}
@media (max-width: 575px) {
  .th-feature-revealing-slider-control {
    top: 70%;
    left: 10%;
  }
}
.th-feature-revealing-slide {
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vmax;
  height: 150vmax;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transition: clip-path 0s calc(var(--slidingAT) * 0.7);
  transition: clip-path 0s calc(var(--slidingAT) * 0.7);
  clip-path: circle(calc(var(--controlSize) / 2) at 120vw 50%);
}
.th-feature-revealing-slide-heading {
  font-size: 84px;
  font-weight: 600;
  line-height: 94px;
  color: var(--white-color);
  font-family: var(--body-font);
}
@media (max-width: 1299px) {
  .th-feature-revealing-slide-heading {
    font-size: 58px;
    line-height: 68px;
  }
}
@media (max-width: 767px) {
  .th-feature-revealing-slide-heading {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (max-width: 575px) {
  .th-feature-revealing-slide-heading {
    font-size: 34px;
    line-height: 44px;
  }
}
.th-feature-revealing-slide-heading a {
  color: inherit;
}
.th-feature-revealing-slide.s-prev {
  clip-path: circle(calc(var(--controlSize) / 2) at 30vw 50%);
}
.th-feature-revealing-slide.s-active {
  z-index: 1;
  -webkit-transition: clip-path var(--slidingAT);
  transition: clip-path var(--slidingAT);
  clip-path: circle(120vmax at 120vw 50%);
}
.th-feature-revealing-slide.s-active.s-active-prev {
  clip-path: circle(120vmax at 30vw 50%);
}
.color-scheme-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99;
  background: var(--white-color);
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2);
}
.color-scheme-wrap .switchIcon {
  position: absolute;
  left: 0;
  top: 10px;
  border: 0;
  background: var(--theme-color);
  color: var(--white-color);
  height: 45px;
  width: 45px;
  border-radius: 5px 0 0 5px;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.color-scheme-wrap .color-switch-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}
.color-scheme-wrap .color-switch-btns button {
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0);
  font-size: 34px;
  color: var(--theme-color);
  text-align: left;
}
.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.mt-5 {
  margin-top: 5px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mt-50 {
  margin-top: 50px;
}
.space,
.space-top {
  padding-top: var(--section-space);
}
.space {
  padding-bottom: var(--section-space);
}
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space {
    padding-bottom: var(--section-space-mobile);
  }
}