@charset "UTF-8";
/*
Template Name: Fitkit
Template URL: https://themeholy.com/html/fitkit/
Description: Gym & Fitness Centre HTML Template
Author: themeholy
Author URI: https://themeforest.net/user/themeholy
Version: 1.0.0
*/
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base
    1.1. Mixin
    1.2. Function
    1.3. Variable
    1.4. Typography
    1.5. Extend
    1.7. Wordpress Default
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
    
04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb
    4.5. Pagination
    4.6. Blog
    4.7. Comments
    4.8. Hero Area
    4.9. Error    
    4.00. Popup Search
    4.00. Popup Side Menu
    4.00. Wocommerce
    4.00. Products
    4.00. Cart
    4.00. Checkout
    4.00. Wishlist
    4.00. Contact
    4.00. About
    4.00. Team
    4.00. Testimonial
    4.00. Counter
    4.00. Blog
    4.00. Brand
    4.00. Simple Sections
    4.00. Why
    4.00. Faq
    4.00. Service
    4.00. Process
    4.00. Pricing
    4.00. Feature
    4.00. Project
    4.00. Category
    4.00. Color Scheme
    4.00. CTA
    4.00. Appointment
    4.00. Video
    4.00. Tab Menu
    4.00. Schedule

05. Spacing

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #F41E1E;
  --theme-color2: #3843C1;
  --title-color: #1D2229;
  --body-color: #6A6A6A;
  --smoke-color: #F8F8F8;
  --smoke-color2: #F6F6F6;
  --smoke-color3: #F2F2F2;
  --black-color: #000000;
  --black-color2: #141414;
  --black-color3: #171717;
  --black-color4: #2F394A;
  --black-color5: #22272E;
  --black-color6: #2D333D;
  --black-color7: #0E0E13;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #AFB1C3;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #D8DDE1;
  --th-border-color2: #2F343B;
  --th-border-color3: #252A31;
  --th-border-color4: #353B45;
  --th-border-color5: #49515C;
  --th-border-color6: #383D46;
  --title-font: "Kanit", sans-serif;
  --body-font: "Archivo", sans-serif;
  --icon-font: "Font Awesome 6 Free";
  --main-container: 1230px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #ffffff;
}

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

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  background: var(--th-body-background);
  -webkit-font-smoothing: antialiased;
  /***scroll-bar***/
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 0px;
}

body::-webkit-scrollbar-track {
  background: rgba(252, 0, 18, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
  border-radius: 0px;
}

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


button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

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

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

ul {
  list-style-type: disc;
}

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

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

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

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

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

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}


p:empty {
  display: none;
}

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

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

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

.h1,
h1 {
  font-size: 94px;
  line-height: 1.18;
}

.h2,
h2 {
  font-size: 48px;
  line-height: 1.227;
}

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

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

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

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

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

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

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

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

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

/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/

.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}

/* Small devices */

/*blog-navigation*****************/

/* Extra small devices */

/*blog-author*****************/

/* Small devices */

/* Extra small devices */

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

/* Hight Resoulation devices */

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

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

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

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

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

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

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

/* Medium devices */

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

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

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

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

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

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

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

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

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

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

input[type=date] {
  padding: 0 25px 0 25px;
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

input[type=time] {
  padding: 0 30px;
  position: relative;
}

input[type=time]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

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

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

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

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

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

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

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

.form-group.style-border textarea,
.form-group.style-border input {
  background: transparent;
  border: 1px solid rgba(230, 230, 230, 0.3);
  color: var(--white-color);
}

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

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

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

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

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

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

.form-group.style-white .form-select,
.form-group.style-white .form-control {
  background: var(--white-color);
}

.form-group.style-white > i {
  top: 20px;
  background: transparent;
  color: var(--theme-color);
}

.form-group.style-dark2 .form-select,
.form-group.style-dark2 .form-control {
  background: var(--black-color3);
  border: 1px solid var(--th-border-color2);
  color: #6B7586;
  border-radius: 0;
}

.form-group.style-dark2 .form-select::-webkit-input-placeholder, .form-group.style-dark2 .form-control::-webkit-input-placeholder {
  color: #6B7586;
}

.form-group.style-dark2 .form-select::-moz-placeholder, .form-group.style-dark2 .form-control::-moz-placeholder {
  color: #6B7586;
}

.form-group.style-dark2 .form-select:-ms-input-placeholder, .form-group.style-dark2 .form-control:-ms-input-placeholder {
  color: #6B7586;
}

.form-group.style-dark2 .form-select::-ms-input-placeholder, .form-group.style-dark2 .form-control::-ms-input-placeholder {
  color: #6B7586;
}

.form-group.style-dark2 .form-select::placeholder,
.form-group.style-dark2 .form-control::placeholder {
  color: #6B7586;
}

.form-group.style-dark2 > i {
  top: 20px;
  background: transparent;
  color: #6B7586;
}

.form-group.style-radius .form-select,
.form-group.style-radius .form-control {
  border-radius: 30px;
}

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

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

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

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

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

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

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

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

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

textarea.is-invalid,
select.is-invalid,
input.is-invalid {
  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;
  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;
}

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

.slider-pagination {
  bottom: var(--swiper-pagination-bottom, 0px);
}

.slider-area {
  position: relative;
}

.arrow-wrap {
  position: relative;
}

/* Extra large devices */

/* Medium Large devices */

/* Medium devices */

/* Medium devices */

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

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-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: 50%;
}

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

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

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

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

.th-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: '\f105';
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

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

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

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

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

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

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

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  font-weight: 900;
  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 .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

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

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

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

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

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

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--white-color);
}

.preloader .th-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

.loader {
  color: var(--theme-color);
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
          animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
 -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
 -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
 -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
 -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
 -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
 -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
 -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
 -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
 -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
 -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
 -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
 -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

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

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

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 21px 40px;
  min-width: 170px;
  border-radius: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-btn:before, .th-btn:after {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  height: 100%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.th-btn .icon {
  overflow: hidden;
  display: inline-block;
}

.th-btn i {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  position: relative;
  right: 2px;
}

.th-btn:hover:before {
  top: -70%;
  background-image: -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 20%, var(--theme-color) 20%, transparent 30%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-image: radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 20%, var(--theme-color) 20%, transparent 30%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
 10% 10%, 18% 18%;
  background-position: 50% 120%;
  -webkit-animation: greentopBubbles 0.6s ease;
          animation: greentopBubbles 0.6s ease;
}

.th-btn:hover:after {
  bottom: -70%;
  top: auto;
  background-image: -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%), -webkit-radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-image: radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, transparent 10%, var(--theme-color) 15%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%), radial-gradient(circle, var(--theme-color) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  -webkit-animation: greenbottomBubbles 0.6s ease;
          animation: greenbottomBubbles 0.6s ease;
}

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

.th-btn:hover i, .th-btn:active i {
  -webkit-animation: btn-icon-anim 0.9s both;
          animation: btn-icon-anim 0.9s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

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

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

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

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

@-webkit-keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes btn-icon-anim {
  0% {
    top: 0;
    right: 2px;
  }
  25% {
    top: -10px;
    right: -10px;
  }
  50% {
    top: 10px;
    opacity: 0;
    right: 17px;
  }
  100% {
    top: 0;
    right: 2px;
    opacity: 1;
  }
}

@keyframes btn-icon-anim {
  0% {
    top: 0;
    right: 2px;
  }
  25% {
    top: -10px;
    right: -10px;
  }
  50% {
    top: 10px;
    opacity: 0;
    right: 17px;
  }
  100% {
    top: 0;
    right: 2px;
    opacity: 1;
  }
}

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

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

.icon-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
  border-radius: 99px;
}

.icon-btn.style2:hover {
  background-color: var(--theme-color2);
}

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

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

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

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

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

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

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

.sub-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--theme-color);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 24px;
  margin-top: -0.34em;
  position: relative;
  /* Extra small devices */
}

.sub-title:before, .sub-title:after {
  content: '';
  position: relative;
  height: 2px;
  width: 60px;
  background: var(--theme-color);
  display: inline-block;
}

.sub-title.after-none:after {
  display: none;
}

.sub-title.h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-top: -0.14em;
}

.sub-title i {
  font-size: 32px;
  margin-right: 10px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .sub-title i {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .sub-title.after-lg-none:after {
    display: none;
  }
}

@media (max-width: 575px) {
  .sub-title:after, .sub-title:before {
    display: none;
  }
}

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

.box-title a {
  color: inherit;
}

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

.box-subtitle {
  margin-bottom: 8px;
}

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

.title-area .sec-title {
  margin-bottom: 22px;
}

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

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

.title-area.text-center .sub-title {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 992px) {
  .title-area.text-lg-start.text-center .sub-title {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

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

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

/* Small devices */

/* Extra small devices */

/* Extra small devices */

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

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

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

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

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

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.25em 0.45em;
  font-size: 0.7em;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.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(--title-color);
  border: 1px solid #6B7586;
  color: var(--body-color);
  font-size: 16px;
  text-align: center;
  margin-right: 7px;
  border-radius: 50%;
}

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

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

.th-social.style2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.th-social.style2 a {
  background: var(--smoke-color);
  border: 0;
  color: var(--title-color);
}

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

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

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

.btn-group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Small devices */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*------------------- 3.10. Animation -------------------*/

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

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

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

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

@-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 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 movingCar {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
            transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%));
            transform: translateX(calc(100vw*-1 + 108%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
            transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
            transform: translateX(0) rotateY(180deg);
  }
}

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

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

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

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-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 bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}

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

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

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


.slidebottomright,
.slideinup {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
          animation-name: var(--animation-name);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}

@keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

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

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

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

.widget select,
.widget input,
.widget .form-select,
.widget .form-control,
.widget textarea {
  background-color: var(--white-color);
  border-radius: 0px;
}

.widget textarea {
  min-height: 120px;
}

.widget .form-group > i {
  background-color: var(--white-color);
}

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

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

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

/* Medium Large devices */

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

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

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

.about-logo {
  margin-bottom: 15px;
}

.th-widget-about {
  max-width: 315px;
  margin-bottom: -0.5em;
}

.th-widget-about .about-logo {
  margin-bottom: 34px;
}

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

/* Large devices */

/* Small devices */
@media (max-width: 767px) {
  .th-widget-about .about-text {
    margin-bottom: 20px;
  }
}

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

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

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

.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-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
          filter: drop-shadow(0 0 10px 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-weight: 500;
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--title-color);
  text-transform: uppercase;
}

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

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

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

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

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

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

.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  font-weight: 900;
  margin-left: 5px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: var(--title-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

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

@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 13px;
  }
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header-button .icon-btn {
  border: 1px solid #383E47;
  --icon-bg: transparen;
  color: var(--white-color);
}

.header-button .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-button .icon-btn:hover {
  border: 1px solid var(--white-color);
  background: transparent;
}

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

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

.menu-expand {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
  background-color: var(--theme-color2);
  padding: 17px 25px;
  width: 100%;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .menu-expand {
    font-size: 15px;
  }
}

.menu-expand i {
  margin-right: 15px;
}

.menu-expand:hover {
  color: var(--white-color);
}

/* Header default ---------------------------------- */

/* Medium Large devices */

/* Large devices */

/* Medium devices */
@media (max-width: 991px) {
  .header-logo {
    padding-top: 16.5px;
    padding-bottom: 16.5px;
  }
}

/* Small devices */

/* Extra small devices */

/* Extra small devices */

@media (max-width: 360px) {
  .header-logo {
    padding-top: 20.5px;
    padding-bottom: 20.5px;
  }
  .header-logo img {
    max-width: 130px;
  }
}

/* Header 2 ---------------------------------- */
.header-layout2 {
  background: var(--black-color2);
}

.header-layout2 .main-menu > ul > li > a {
  color: var(--white-color);
  padding: 37px 0;
}

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

.header-layout2 .main-menu > ul > li.menu-item-has-children > a:after {
  color: var(--white-color);
}

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

.header-layout2 .sticky-wrapper.sticky {
  background: var(--black-color2);
}

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

@media (max-width: 1600px) {
  .header-layout2 .th-btn {
    display: none;
  }
}

/* Extra large devices */
@media (max-width: 1500px) {
  .header-layout2 .th-btn {
    display: inline-block;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .header-layout2 .header-button .th-btn {
    display: none;
  }
}

/* Header 3 ---------------------------------- */

/* Medium Large devices */

/* Medium devices */

/* Extra small devices */

/*------------------- 4.3. Footer  -------------------*/

/*footer default**********************/

.info-box {
  display: block;
  margin-bottom: 27px;
}

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

.info-box_title {
  display: block;
  color: var(--theme-color);
  margin-top: -0.45em;
  margin-bottom: 9px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

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

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

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

.newsletter-widget {
  min-width: 290px;
}

.newsletter-widget .form-group {
  margin-bottom: 0;
}

/* Medium devices */

/* Small devices */

/* Extra small devices */

/* Medium devices */

/* footer 1 ---------------------------------- */

/* footer 2 ---------------------------------- */

/*------------------- 4.4. Breadcumb  -------------------*/

/* Extra large devices */

/* Medium Large devices */

/* Large devices */

/* Medium devices */

/* Small devices */

/* Extra small devices */

/*------------------- 4.5. Pagination  -------------------*/

/* Small devices */

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

/* Large devices */

/* Small devices */

/* Extra small devices */

/* Extra small devices */

/* Medium Large devices */

/* Large devices */

/* Medium devices */

/* Small devices */

/* Extra small devices */

/*------------------- 4.7. Comments  -------------------*/

/* Large devices */

/* Medium devices */

/* Small devices */

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

/* Hero 1 ---------------------------------- */
.hero-title {
  line-height: 1;
  margin-bottom: 19px;
  margin-top: -0.2em;
  text-transform: uppercase;
  /* Small devices */
}

.hero-title span {
  display: block;
}

@media (max-width: 767px) {
  .hero-title {
    line-height: 1.2;
  }
}

.hero-text {
  margin-bottom: 32px;
  font-size: 16px;
}

/* Hero 2 --------------------------------------*/
.hero-2 {
  overflow: hidden;
  margin-top: 0;
  /* Extra large devices */
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

.hero-2 .hero-img {
  position: absolute;
  top: 20px;
  right: 13%;
  /* Extra large devices */
  /* Medium devices */
}

@media (max-width: 1500px) {
  .hero-2 .hero-img {
    right: 5%;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-img {
    position: relative;
    top: unset;
    right: unset;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}

@media (max-width: 1500px) {
  .hero-2 .hero-img {
    right: 1%;
  }
}

@media (max-width: 1299px) {
  .hero-2 .hero-img {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-img {
    max-width: 570px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-img {
    max-width: 500px;
  }
}

.hero-style2 {
  position: relative;
  z-index: 6;
  padding: 260px 0;
  max-width: 650px;
  /* Extra large devices */
  /* Medium Large devices */
  /* Medium Large devices */
  /* Medium devices */
  /* Extra small devices */
  /* Extra small devices */
}

.hero-style2 .hero-title {
  color: var(--white-color);
  font-weight: 600;
}

.hero-style2 .hero-title span {
  display: block;
}

.hero-style2 .sub-title {
  margin-bottom: 35px;
}

.hero-style2 .hero-text {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 1500px) {
  .hero-style2 {
    padding: 200px 0;
  }
}

@media (max-width: 1399px) {
  .hero-style2 {
    padding: 180px 0;
  }
  .hero-style2 .hero-text {
    font-size: 16px;
  }
  .hero-style2 .hero-title {
    line-height: 1.1;
  }
}

@media (max-width: 1299px) {
  .hero-style2 {
    padding: 160px 0;
  }
}

@media (max-width: 991px) {
  .hero-style2 {
    padding: 120px 0 0px 0;
    text-align: center;
    margin: 0 auto;
    max-width: none;
  }
  .hero-style2 .sub-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-style2 .sub-title:before {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-style2 {
    padding: 100px 0 40px 0;
  }
  .hero-style2 .hero-title {
    font-size: 42px;
  }
  .hero-style2 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

/* Hero 3 -------------------------------------*/

/*------------------- 4.9. Error  -------------------*/

/* Medium devices */

/* Small devices */

/*------------------- 4.00. Popup Search  -------------------*/
.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%);
      -ms-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;
  line-height: 58px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: var(--white-color);
}

.popup-search-box button.searchClose:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
  background: var(--theme-color);
  -webkit-transform: rotate(90deg);
      -ms-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);
      -ms-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;
  /* Large devices */
}

@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: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
  padding-right: 80px;
}

.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: transparent;
  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);
      -ms-transform: scale(1.001);
          transform: scale(1.001);
}

.popup-search-box form button:hover {
  -webkit-transform: scale(1.1);
      -ms-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);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

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

.sidemenu-wrapper .info-box_link {
  color: var(--title-color);
}

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

.sidemenu-wrapper .th-social a {
  box-shadow: none;
}

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

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

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

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

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

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

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

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

/* Extra small devices */
@media (max-width: 575px) {
  .sidemenu-wrapper {
    background: transparent;
  }
  .sidemenu-wrapper .sidemenu-content {
    width: 100%;
  }
}

/*------------------- 4.00. Wocommerce  -------------------*/


.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 35px 40px 35px 40px;
  background-color: var(--white-color);
  box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
  margin-bottom: 0;
  border-radius: 0px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 40px 20px;
    border-radius: 10px;
  }
}


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

.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);
  font-weight: 900;
  content: "\e28b";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}

.rating-select p.stars a:hover ~ a::before {
  content: "\e28b";
  font-weight: 400;
}

.rating-select p.stars:hover a::before {
  content: "\e28b";
  font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
  content: "\e28b";
  font-weight: 700;
}

.rating-select p.stars.selected a.active ~ a::before {
  content: "\e28b";
  font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
  content: "\e28b";
  font-weight: 700;
}

/* Small devices */

/*------------------- 4.00. Products  -------------------*/

.woocommerce-Reviews .comment-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 24px;
  margin: -12px !important;
  margin-bottom: 28px !important;
}

.woocommerce-Reviews .comment-list li {
  width: 50%;
  /* Medium devices */
}

@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list li {
    width: 100%;
  }
}

/* Large devices */

/* Medium devices */
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Extra small devices */

#description {
  margin-bottom: 30px;
}

/* Medium Large devices */

/* Medium Large devices */

/* Large devices */

/* Medium devices */

/* Small devices */

/* Extra small devices */

/* Extra small devices */

/*------------------- 4.00. Cart  -------------------*/

/* Medium devices */

/* Small devices */

/*------------------- 4.00. Checkout  -------------------*/

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

/* Small devices */

/*------------------- 4.00. Wishlist  -------------------*/

/* Medium devices */

/* Small devices */

/*------------------- 4.00. Contact  -------------------*/
/* Contact Area 1 ---------------------------------- */

/* Contact feature ---------------------------------- */

/* Contact feature 2---------------------------------- */

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

/* About 2 ---------------------------------- */

.about-wrap2 .checklist.style-line li {
  color: var(--light-color);
}

.about-wrap2 .checklist.style-line li::before {
  width: 60px;
}

/* About 3 ---------------------------------- */

/*------------------- 4.00. Team  -------------------*/
/* Team global ---------------------------------- */

/* Team Card ---------------------------------- */

/* Team Card 2---------------------------------- */

/* Team Card 3---------------------------------- */

/* Team Details ---------------------------------- */

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

/* Testimonial card ---------------------------------- */

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

/* Testimonial Area 3---------------------------------- */

/*------------------- 4.00. Counter  -------------------*/
/* Counter 1 ---------------------------------- */
.counter-card {
  text-align: center;
}

.counter-card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.counter-card-wrap .divider {
  height: 100px;
  border: 2px solid var(--th-border-color4);
}

.counter-card-wrap .divider:last-of-type {
  display: none;
}

.counter-card .box-number {
  font-size: 84px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 2px;
  margin-top: -0.3em;
}

.counter-card .box-number .counter-number {
  color: var(--white-color);
}

.counter-card .box-number .counter-sign {
  font-weight: 300;
}

.counter-card .box-text {
  font-weight: 400;
  color: var(--light-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .counter-card-wrap .divider {
    height: 90px;
    border: 1px solid var(--black-color6);
  }
  .counter-card .box-number {
    font-size: 60px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .counter-card .box-number {
    font-size: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .counter-card {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .counter-card-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    position: relative;
  }
  .counter-card-wrap .divider {
    display: none;
  }
  .counter-card:nth-child(1), .counter-card:nth-child(3) {
    padding-bottom: 50px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .counter-card .box-text {
    font-size: 14px;
  }
}

/* Counter 2 ---------------------------------- */

.counter-card.style2 {
  text-align: center;
  padding: 106px 25px;
  width: 25%;
  border-right: 1px solid var(--th-border-color);
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

.counter-card.style2 .box-number {
  color: var(--title-color);
  font-size: 80px;
}

.counter-card.style2 .box-number .counter-number {
  color: var(--title-color);
}

.counter-card.style2 .box-text {
  color: var(--body-color);
  font-size: 18px;
  font-family: var(--title-font);
}

@media (max-width: 1199px) {
  .counter-card.style2 .box-number {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .counter-card.style2 {
    width: 50%;
    border-bottom: 1px solid var(--th-border-color);
    padding: 80px 25px;
  }
  .counter-card.style2 .box-number {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .counter-card.style2 {
    padding: 60px 25px;
  }
  .counter-card.style2 .box-number {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .counter-card.style2 {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
        -ms-flex: auto;
            flex: auto;
  }
}

/* Counter 3 ---------------------------------- */

/*------------------- 4.00. Blog  -------------------*/
/* Blog Card ---------------------------------- */

/* Blog Card 2---------------------------------- */

/* Blog Card 3---------------------------------- */

/*------------------- 4.00. Brand  -------------------*/
/* Brand 1 ---------------------------------- */

/* Brand 2 ---------------------------------- */

/* Brand 3 ---------------------------------- */

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

.checklist li {
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--title-font);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  line-height: 1;
}

.checklist li > i {
  color: var(--theme-color);
}

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

.checklist.style2 li {
  font-size: 16px;
  font-weight: 500;
  color: var(--title-color);
  gap: 12px;
  line-height: initial;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.checklist.style2 li:before {
  content: url(../img/icon/dumbbell_icon.svg);
  position: relative;
  line-height: 1;
}

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

.checklist.style-line li {
  font-size: 16px;
  font-family: var(--body-font);
  position: relative;
  gap: 15px;
}

.checklist.style-line li::before {
  content: '';
  position: relative;
  height: 1px;
  width: 30px;
  background: var(--theme-color);
}

.checklist.style-white li {
  color: var(--white-color);
}

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

.btn-wrap.style2 {
  gap: 20px 40px;
}

/* Large devices */
@media (max-width: 1199px) {
  p.mb-40 {
    margin-bottom: 35px;
  }
}

/*------------------- 4.00. Why -------------------*/
/* Why Choose Us Area ---------------------------------- */

/* Why Choose Us Area 2---------------------------------- */

.why-wrap2 {
  /* Large devices */
  /* Medium devices */
}

.why-wrap2 .why-wrap-content {
  padding: 80px 0;
}

@media (max-width: 1199px) {
  .why-wrap2 .why-wrap-content {
    padding: 60px 0 120px;
  }
}

@media (max-width: 991px) {
  .why-wrap2 .why-wrap-content {
    padding: 60px 0 80px;
  }
}

/* Why Choose Us Area 3---------------------------------- */

/*------------------- 4.00. Faq -------------------*/
/* Faq 1 ---------------------------------- */

/* Extra small devices */

/* Faq 2 ---------------------------------- */

/*------------------- 4.00. Service -------------------*/
/* Service Card ---------------------------------- */

/* Service Card 2---------------------------------- */
.service-card2 {
  background: var(--title-color);
  padding: 0px 30px 30px;
  border-radius: 30px;
  position: relative;
  margin-top: 40px;
  z-index: 1;
  /* Medium Large devices */
}

.service-card2 .box-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.service-card2 .box-shape svg {
  color: var(--black-color6);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card2 .service-card-icon {
  width: 80px;
  height: 80px;
  line-height: 70px;
  background: var(--black-color6);
  border-radius: 50%;
  border: 5px solid var(--black-color2);
  text-align: center;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: -40px;
}

.service-card2 .service-card-icon img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card2 .box-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 13px;
  margin-top: 23px;
}

.service-card2 .box-title a {
  color: var(--white-color);
}

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

.service-card2 .box-text {
  color: var(--light-color);
  margin-bottom: 13px;
  max-width: 225px;
}

.service-card2:hover .box-shape svg {
  color: var(--theme-color);
}

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

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

.service-card2:hover .box-img {
  opacity: 1;
}

@media (max-width: 1299px) {
  .service-card2 .box-title {
    font-size: 20px;
  }
}

.service-card2.style2 {
  background: var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card2.style2 .service-card-icon {
  border-color: var(--white-color);
  background: var(--theme-color);
}

.service-card2.style2 .box-shape svg {
  color: var(--theme-color);
}

.service-card2.style2 .box-title a {
  color: var(--title-color);
}

.service-card2.style2 .box-text {
  color: var(--body-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card2.style2:hover {
  background: var(--theme-color);
}

.service-card2.style2:hover .service-card-icon {
  background: var(--title-color);
}

.service-card2.style2:hover .box-shape svg {
  color: var(--title-color);
}

.service-card2.style2:hover .box-title a {
  color: var(--white-color);
}

.service-card2.style2:hover .box-title a:hover {
  color: var(--title-color);
}

.service-card2.style2:hover .box-text {
  color: var(--white-color);
}

/* Service Card 3---------------------------------- */

/* Service Card 4---------------------------------- */

/* Service Details ---------------------------------- */

/*------------------- 4.00. Process -------------------*/
/* Process Card ---------------------------------- */

/* Process Card ---------------------------------- */

/*------------------- 4.00. Pricing -------------------*/
/* Pricing Card ---------------------------------- */

/* Pricing Card 2---------------------------------- */

/*------------------- 4.00. Feature -------------------*/
/* Feature card ---------------------------------- */

/*------------------- 4.00. Project -------------------*/
/* Project Card -------------------------------*/

/* Medium devices */

/* Extra small devices */

/* Project Card 2 -------------------------------*/

/* Project Card 3 -------------------------------*/

/* Medium devices */

/* Extra small devices */

/* Project Card 4-------------------------------*/

/* Project Card 5-------------------------------*/

/* Project Card 6-------------------------------*/

/* Project Card 7-------------------------------*/

/*------------------- 4.00. Category -------------------*/
/* Category Card -------------------------------------*/

/* Category Box -------------------------------------*/

/*------------------- 4.00. CTA -------------------*/
.cta-bg-shape1-1 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--title-color);
  width: 735px;
  z-index: 1;
  -webkit-clip-path: polygon(290px 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(290px 0%, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.7;
  /* Extra large devices */
  /* Medium Large devices */
}

@media (max-width: 1500px) {
  .cta-bg-shape1-1 {
    width: 700px;
  }
}

@media (max-width: 1299px) {
  .cta-bg-shape1-1 {
    width: 630px;
  }
}

.cta-bg-shape1-2 {
  position: absolute;
  right: 270px;
  top: 0;
  bottom: 0;
  background: var(--theme-color);
  width: 735px;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, calc(100% - 290px) 0, 100% 100%, 290px 100%);
          clip-path: polygon(0 0, calc(100% - 290px) 0, 100% 100%, 290px 100%);
  /* Extra large devices */
  /* Medium Large devices */
}

@media (max-width: 1500px) {
  .cta-bg-shape1-2 {
    right: 120px;
    width: 600px;
    -webkit-clip-path: polygon(0 0, calc(100% - 200px) 0, 100% 100%, 200px 100%);
            clip-path: polygon(0 0, calc(100% - 200px) 0, 100% 100%, 200px 100%);
  }
}

@media (max-width: 1299px) {
  .cta-bg-shape1-2 {
    width: 550px;
    right: 60px;
  }
}

/*------------------- 4.00. Color Scheme -------------------*/
/* color scheme ---------------------------------- */
.color-scheme-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 99;
  background: var(--black-color2);
  padding: 20px;
  border-radius: 10px 0 0 10px;
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.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);
      -ms-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}

.color-scheme-wrap .color-switch-btns {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 18px;
}

.color-scheme-wrap .color-switch-btns button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 24px;
  color: var(--theme-color);
  text-align: left;
}

.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

/*------------------- 4.00. Appointment -------------------*/
/* Appointment ---------------------------------- */

/*------------------- 4.00. Video -------------------*/
/* Video Area 1 -------------------------------*/

/*------------------- 4.00. Client -------------------*/
/* Client Card -------------------------------------*/

/*------------------- 4.00. Tab Menu -------------------*/
/* Tab Menu 1 ------------------------------------*/

/*------------------- 4.00. Schedule -------------------*/
/* Schedule area 1---------------------------------- */

/* Schedule area 2---------------------------------- */

/*------------------- 4.00. BMI -------------------*/
/* BMI area 1 ---------------------------------- */

.bmi-calculator-form .form-group {
  margin-bottom: 0;
}

.bmi-calculator-form .form-group select,
.bmi-calculator-form .form-group .form-control,
.bmi-calculator-form .form-group .form-select,
.bmi-calculator-form .form-group textarea,
.bmi-calculator-form .form-group input {
  padding: 0 30px;
}

.bmi-calculator-form .th-btn {
  padding: 0;
  width: 100%;
  min-width: auto;
}

.bmi-calculator-form .th-btn input {
  width: 100%;
  padding: 21px 40px;
  height: auto;
  background: transparent;
  color: inherit;
  font-family: inherit;
  text-transform: uppercase;
  -webkit-transition: none;
  transition: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  border: 0;
}

/* BMI area 2 ---------------------------------- */
.bmi-table-wrap {
  background: var(--black-color3);
  border-radius: 30px;
  padding: 60px;
  /* Extra small devices */
}

.bmi-table-wrap .bmi-table-wrap-text {
  margin-bottom: -0.4em;
  color: var(--light-color);
}

.bmi-table-wrap .bmi-table-wrap-text span {
  color: var(--white-color);
  font-weight: 600;
}

@media (max-width: 575px) {
  .bmi-table-wrap {
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
}

.bmi-table {
  border: 0;
  border-top: 1px solid var(--th-border-color6);
  margin-bottom: 22px;
  /* Extra small devices */
}

.bmi-table thead tr th {
  border: 0;
  border-left: 1px solid var(--th-border-color6);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--white-color);
  padding: 26px 30px;
}

.bmi-table thead tr th:first-child {
  border-left: 0;
  padding-left: 0;
}

.bmi-table thead tr th:last-child {
  padding-right: 0;
}

.bmi-table tbody tr {
  border-top: 1px solid var(--th-border-color6);
  color: var(--light-color);
}

.bmi-table tbody tr th {
  border: 0;
  color: var(--light-color);
  font-weight: 400;
  padding: 17px 30px;
  padding-left: 0;
}

.bmi-table tbody tr td {
  border: 0;
  border-left: 1px solid var(--th-border-color6);
  padding: 17px 30px;
  padding-right: 0;
}

.bmi-table tbody tr:last-child th {
  padding-bottom: 0;
}

.bmi-table tbody tr:last-child td {
  padding-bottom: 0;
}

@media (max-width: 575px) {
  .bmi-table thead tr th {
    font-size: 20px;
  }
}

/*------------------- 4.00. Marquee -------------------*/
/* Marquee Area ---------------------------------- */
.marquee-slider1 {
  margin: 0 -50px;
}

.marquee-slider1 .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.marquee-slider1 .swiper-slide {
  width: auto;
}

.marquee-card {
  margin-bottom: 0;
  padding: 31px 0;
  display: inline-block;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

.marquee-card a {
  font-size: 64px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--white-color);
  letter-spacing: 0.25em;
  display: inline-block;
  line-height: 1;
}

@media (max-width: 1199px) {
  .marquee-card {
    padding: 25px 0;
  }
  .marquee-card a {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .marquee-card a {
    font-size: 40px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 575px) {
  .marquee-card {
    padding: 25px 0 20px;
  }
  .marquee-card a {
    font-size: 24px;
    letter-spacing: 0.2em;
  }
}

/* Marquee Area 2---------------------------------- */

/*------------------- 4.00. Class -------------------*/
/* Class area 1 ---------------------------------- */

/* Class area 2 ---------------------------------- */

/*------------------- 4.00. Gallery -------------------*/
/* Gallery Area 1 -------------------------------*/
.gallery-slider1 {
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

.gallery-slider1 .swiper-wrapper {
  margin: 0 -305px;
}

.gallery-slider1 .swiper-slide {
  margin-top: 74px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gallery-slider1 .swiper-slide.swiper-slide-active {
  margin-top: 0;
}

.gallery-slider1 .swiper-slide.swiper-slide-active .gallery-card .box-content {
  opacity: 1;
  visibility: visible;
}

.gallery-slider1 .slider-pagination {
  margin-top: -23px;
  max-width: var(--main-container);
  margin-left: auto;
  margin-right: auto;
  bottom: 0;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gallery-slider1 .slider-pagination:after, .gallery-slider1 .slider-pagination:before {
  content: '';
  position: relative;
  height: 1px;
  width: -webkit-fill-available;
  background: -webkit-linear-gradient(right, var(--theme-color), transparent);
  background: linear-gradient(to left, var(--theme-color), transparent);
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: -1px;
  margin-right: 28px;
}

.gallery-slider1 .slider-pagination:after {
  background: -webkit-linear-gradient(left, var(--theme-color), transparent);
  background: linear-gradient(to right, var(--theme-color), transparent);
  margin-left: 28px;
  margin-right: 0;
}

.gallery-slider1 .slider-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

@media (max-width: 1199px) {
  .gallery-slider1 .swiper-wrapper {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .gallery-slider1 {
    margin: 0 30px;
  }
  .gallery-slider1 .swiper-slide {
    margin-top: 0;
  }
  .gallery-slider1 .slider-pagination {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .gallery-slider1 {
    margin: 0 15px;
  }
  .gallery-slider1 .slider-pagination {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery-slider1 .slider-pagination .swiper-pagination-bullet {
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-horizontal-gap: 10px;
  }
  .gallery-slider1 .slider-pagination:before {
    margin-right: 10px;
  }
  .gallery-slider1 .slider-pagination:after {
    margin-left: 10px;
  }
}

.gallery-card {
  /* Extra small devices */
  /* Extra small devices */
}

.gallery-card .box-img {
  border-radius: 30px;
  overflow: hidden;
}

.gallery-card .box-img img {
  width: 100%;
}

.gallery-card .box-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
}

.gallery-card .box-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-color);
}

.gallery-card .box-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.gallery-card .box-title a {
  color: var(--white-color);
}

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

.gallery-card .box-number {
  font-size: 64px;
  font-family: var(--title-font);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--th-border-color3);
}

@media (max-width: 575px) {
  .gallery-card .box-title {
    font-size: 24px;
  }
  .gallery-card .box-number {
    font-size: 50px;
  }
}

@media (max-width: 375px) {
  .gallery-card .box-title {
    font-size: 20px;
  }
}

/* Gallery Area 2 -------------------------------*/

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

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

/*-- Padding Top --*/

/*-- Padding Bottom --*/

/*-- Padding Left --*/

/*-- Padding Right --*/

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

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

/*-- margin Top --*/

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

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

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

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

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

/*-- margin Left --*/

/*-- margin Right --*/

.mt-n3 {
  margin-top: -0.8rem;
}

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

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

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