/*=================================================================
   MAPA DE PÁGINAS:
   ┌─────────────────────────────────────────────────────┐
   │ index.html        → Página Principal (Home)         │
   │ blog.html         → Lista de Posts do Blog          │
   │ blog-details.html → Detalhe / Artigo do Blog        │
   │ error.html        → Página 404 (Erro)               │
   │ typography.html   → Tipografia e Componentes UI     │
   └─────────────────────────────────────────────────────┘
   
   Cada seção indica para qual(is) página(s) ela é relevante.
   Regras globais são compartilhadas por todos os arquivos.

=================================================================*/


/*=================================================================
   STYLE.CSS - LIMPO
   Gerado automaticamente a partir dos arquivos HTML utilizados:
   - index.html        (Página Principal)
   - blog.html         (Lista de Posts)
   - blog-details.html (Detalhe do Post)
   - error.html        (Página de Erro 404)
   - typography.html   (Tipografia / Componentes)
   
   Apenas seletores realmente utilizados foram mantidos.
   Regras de elementos base (body, a, h1-h6, etc.) sempre incluídas.
=================================================================*/

/*=================================
    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. Feature
    4.00. Gallery
    4.00. Category
    4.00. CTA
    4.00. Deal
    4.00. Tab Menu

05. Spacing

*/
/*=================================
    CSS Index End

   [ Página(s): TODOS OS ARQUIVOS HTML ]
=*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
@use "sass:math";

/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #4D1F27;
  --theme-color2: #40472D;
  --title-color: #E3D3C3;
  --body-color: #868686;
  --smoke-color: #FFF6EE;
  --smoke-color2: #F5F5F5;
  --black-color: #000000;
  --black-color2: #121212;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #bdbdbd;
  --yellow-color: #c9a96e;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --dark-color: #021526;
  --title-font: "Playfair Display", serif;
  --body-font: "Poppins", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1320px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-black2 p {
  color: #A5A8A8;
}

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]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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,
h3,
.h4,
h4,
h5,
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: 84px;
  line-height: 1.119;
}

h2 {
  font-size: 54px;
  line-height: 1.185;
}

h3 {
  font-size: 48px;
  line-height: 1.417;
}

.h4,
h4 {
  font-size: 36px;
  line-height: 1.27;
}

h5 {
  font-size: 30px;
  line-height: 1.333;
}

h6 {
  font-size: 24px;
  line-height: 1.416;
}

/* Medium Large devices */
@media (max-width: 1399px) {

  .h1,
  h1 {
    font-size: 70px;
  }
}

/* Large devices */
@media (max-width: 1199px) {

  .h1,
  h1 {
    font-size: 55px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  .h4,
  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .h1,
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  .h4,
  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {

  .h1,
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {

  .h1,
  h1 {
    font-size: 32px;
  }
}

/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}

@media (min-width: 1560px) {
  .th-container2 .container {
    --main-container: 1220px;
  }

  .th-container3 .container {
    --main-container: 1220px;
  }
}

/* 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);
  }

  .container.px-0 {
    max-width: var(--main-container);
  }
}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1780px;
  }
}

@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/*------------------- 2.2. Grid -------------------*/
@media (min-width: 1300px) {
  .row {
    --bs-gutter-x: 24px;
  }
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

.gy-50 {
  --bs-gutter-y: 50px;
}

@media (min-width: 1299px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .gy-50 {
    --bs-gutter-y: 40px;
  }
}

/*------------------- 2.3. Input -------------------*/
select,
.form-control,
textarea,
input {
  height: 50px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid var(--th-border-color);
  color: var(--body-color);
  border-radius: 27px;
  font-size: 14px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  background-color: var(--white-color);
}

select:focus,
.form-control: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,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-ms-input-placeholder,
.form-control::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  color: var(--body-color);
}

select::placeholder,
.form-control::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select.style2,
select.style2 {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E");
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 20px;
}

textarea.form-control.style2,
textarea.style2 {
  min-height: 100px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group.style-border input {
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
}

.form-group.style-border textarea {
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
}

.form-group.style-white input {
  background-color: var(--white-color);
  border: 1px solid var(--smoke-color);
}

.form-group.style-white textarea {
  background-color: var(--white-color);
  border: 1px solid var(--smoke-color);
}

.form-group>i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 16px;
  color: var(--theme-color);
}

.form-group>i.fa-envelope {
  padding-top: 1px;
}

.form-group>i.fa-comment {
  margin-top: -2px;
}

.form-group>i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color2);
}

.form-group.has-label>i {
  top: 50px;
}

[class*="col-"].form-group>i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

.form-rounded-10 .form-control {
  border-radius: 10px !important;
}

.form-rounded-10 .th-btn {
  border-radius: 10px;
}

option:checked,
option:focus,
option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked~label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"]~label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"]~label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="checkbox"].style2~label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type="checkbox"].style2~label:before {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #8B929C;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

input[type="checkbox"].style2:checked~label:before {
  color: var(--theme-color);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"]~label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"]~label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked~label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.row.no-gutters>.form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.swiper-wrapper.row {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.th-slider.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
  padding: 25px 0;
}

.swiper-fade .swiper-slide {
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 4px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  margin: 0px;
  opacity: 1;
  background-color: var(--theme-color);
  position: relative;
  cursor: pointer;
  width: 20%;
  border-radius: 0;
  background-color: var(--th-border-color);
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet::before {
  inset: 0;
  border: 2px solid var(--theme-color);
}

.style-2.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  top: 50%;
  border: none;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 56px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 56px) / -2);
  z-index: 3;
  border-radius: 99px;
}

.slider-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}

.slider-arrow.slider-next {
  right: var(--pos-x, -120px);
  left: auto;
}

.slider-arrow:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.arrow-margin .slider-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slider-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .arrow-wrap .slider-arrow {
    display: none;
  }
}

.arrow-wrap:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slider-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -70px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .slider-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -17px;
  }
}

.icon-box .slider-arrow:not(:last-child) {
  margin-right: 8px;
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }

  .slider-arrow.slider-next {
    margin-right: 0;
    margin-left: 40px;
  }

  .icon-box .slider-arrow {
    margin-right: 0;
  }
}

/*------------------- 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);
  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);
}

.th-mobile-menu ul .menu-item-has-children>a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  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: 55px;
  height: 55px;
  padding: 0;
  font-size: 20px;
  border: 1px solid transparent;
  border: none;
  background-color: var(--theme-color2);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
}

.th-menu-toggle:hover {
  background-color: var(--theme-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

@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(--dark-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;
}

.loader {
  display: inline-grid;
  width: 80px;
  aspect-ratio: 1;
}

.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
}

.loader:before {
  margin: 25%;
  background: repeating-conic-gradient(var(--theme-color2) 0 60deg, var(--theme-color) 0 120deg);
  -webkit-transform: rotate(0turn) translate(50%) rotate(0turn);
  -ms-transform: rotate(0turn) translate(50%) rotate(0turn);
  transform: rotate(0turn) translate(50%) rotate(0turn);
  -webkit-animation: l1 3s linear infinite;
  animation: l1 3s linear infinite;
}

.loader:after {
  padding: 10%;
  margin: -10%;
  background: repeating-conic-gradient(from -15deg, var(--theme-color2) 0 30deg, var(--theme-color) 0 60deg);
  -webkit-mask: conic-gradient(#000 0 0) content-box, conic-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

@-webkit-keyframes l1 {
  to {
    -webkit-transform: rotate(1turn) translate(50%) rotate(-2turn);
    transform: rotate(1turn) translate(50%) rotate(-2turn);
  }
}

@keyframes l1 {
  to {
    -webkit-transform: rotate(1turn) translate(50%) rotate(-2turn);
    transform: rotate(1turn) translate(50%) rotate(-2turn);
  }
}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 21px 42px;
  min-width: 170px;
  border-radius: 30px;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.th-btn:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  width: 0%;
  right: 0;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn i {
  font-size: 0.95em;
  margin-left: 6px;
}

.th-btn:hover,
.th-btn.active {
  color: var(--title-color);
  box-shadow: none;
}

.th-btn:hover::before,
.th-btn.active::before {
  width: 51%;
  border-radius: 0;
}

.th-btn:hover::after,
.th-btn.active::after {
  width: 50%;
  border-radius: 0;
}

.th-btn.style2 {
  background-color: var(--theme-color2);
}

.th-btn.style2:hover {
  color: var(--white-color);
}

.th-btn.style2:hover:before,
.th-btn.style2:hover:after {
  background-color: var(--theme-color);
}

.th-btn.style3 {
  /* background-color: transparent; */
  color: var(--smoke-color2);
  /* border: 1px solid var(--smoke-color2); */
  padding: 20px 42px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.th-btn.style3:hover {
  color: #E3D3C3;
  background-color: var(--title-color) !important;
}

.th-btn.style4 {
  color: var(--white-color);
  box-shadow: none;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.th-btn.style4:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 0%;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn.style4:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  width: 0%;
  right: 0;
  background-color: var(--theme-color2);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.th-btn.style4:hover {
  box-shadow: none;
}

.th-btn.style4:hover::before {
  width: 50%;
  border-radius: 0;
}

.th-btn.style4:hover::after {
  width: 50%;
  border-radius: 0;
}

.th-btn.style5 {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-btn.style5:hover {
  color: var(--theme-color);
}

.th-btn.style5:hover:before,
.th-btn.style5:hover:after {
  background-color: var(--white-color);
}

.th-btn.style6 {
  background-color: var(--title-color);
}

.th-btn.style6:hover {
  color: var(--theme-color);
}

.th-btn.style6:hover:before,
.th-btn.style6:hover:after {
  background-color: var(--white-color);
}

.th-btn.btn-fw {
  width: 100%;
}

.th-btn.btn-fw:before,
.th-btn.btn-fw:after {
  display: none;
}

.th-btn.btn-fw:hover {
  background-color: var(--title-color);
}

.th-btn.btn-sm {
  padding: 16px 25px;
  min-width: 152px;
}

.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, 18px);
  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;
  background-color: transparent;
}

.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);
}

.th-btn.btn-bg-theme-3 {
  background: var(--theme-color3);
  box-shadow: var(--theme-color3) 0px 3px 8px -2px;
}

.th-btn.btn-bg-theme-2 {
  background: var(--theme-color2);
  box-shadow: var(--theme-color2) 0px 3px 8px -2px;
  color: var(--title-color);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.play-btn>i {
  display: inline-block;
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  text-align: center;
  background-color: transparent;
  color: var(--white-color);
  font-size: var(--icon-font-size, 1.4em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border: 3px solid var(--white-color);
}

.play-btn:after,
.play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn.style2 i {
  font-size: var(--icon-font-size, 2.4em);
}

.play-btn.style2:before,
.play-btn.style2:after {
  background-color: transparent;
  border: 3px solid var(--white-color);
}

.play-btn.style3>i {
  --icon-size: 40px;
  font-size: 14px;
  border: 1px solid;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn.style3:before,
.play-btn.style3:after {
  background-color: var(--white-color);
}

.play-btn.style3:hover>i {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.play-btn.style3:hover:before,
.play-btn.style3:hover:after {
  background-color: var(--white-color);
}

.link-btn {
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
  color: var(--title-color);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.link-btn i {
  margin-left: 1px;
  font-size: 15px;
  -webkit-transition: auto;
  transition: auto;
  margin-bottom: -2px;
}

.link-btn:hover {
  color: var(--theme-color);
}

.link-btn:hover::before {
  width: 0%;
}

.link-btn.style-2 {
  color: var(--theme-color);
}

.link-btn.style-2:hover {
  color: var(--white-color);
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 11px);
  margin-top: -0.2em;
  text-transform: capitalize;
}

.sub-title {
  font-family: var(--title-font);
  color: #4D1F27;
  margin-bottom: 25px;
  position: relative;
  margin-top: -0.4em;
  padding-top: 0;
  letter-spacing: normal;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  display: block;
}

.sub-title:has(img) {
  margin-top: 0;
}

.sub-title.style-theme2 {
  color: var(--theme-color2);
}

.sub-title.style-theme2:before {
  background-color: var(--theme-color2);
}

.sub-title.style-theme2::after {
  background-color: var(--theme-color2);
}

.sub-title.h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-top: -0.14em;
}

.sub-title img {
  margin: -11px 10px 0 0;
}

.sub-title i {
  font-size: 32px;
  margin-right: 10px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .sub-title i {
    font-size: 24px;
  }
}

.sub-title.style-3 {
  position: relative;
  color: var(--theme-color3);
}

.sub-title.style-3:before {
  display: none;
}

.sub-title.style-3:after {
  display: none;
}

.sub-title.style-3 .left {
  height: 2px;
  width: 60px;
  background-color: var(--theme-color3);
  display: block;
  margin-right: 8px;
  position: relative;
}

.sub-title.style-3 .left::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--theme-color3);
  top: -3px;
  right: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 450px) {
  .sub-title.style-3 .left {
    display: none;
  }
}

.sub-title.style-3 .right {
  height: 2px;
  width: 60px;
  background-color: var(--theme-color3);
  display: block;
  margin-left: 8px;
  position: relative;
}

.sub-title.style-3 .right::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--theme-color3);
  top: -3px;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 450px) {
  .sub-title.style-3 .right {
    display: none;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .title-area.text-center.text-xl-start .sub-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.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);
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 11px);
  position: relative;
  z-index: 2;
}

.title-area .sec-title {
  margin-bottom: 20px;
}

.title-area.mb-0 .sec-title {
  margin-bottom: -0.24em;
}

.title-area .th-btn {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }

  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }

  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 36px;
  }

  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 40px;
  }
}

/* Medium devices */
@media (max-width: 991px) {

  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }

  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 35px;
  }

  .sub-title.h4 {
    font-size: 22px;
  }
}

/* Small devices */
/* Extra small devices */
/* Extra small devices */
/*------------------- 3.4. Common -------------------*/
.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-mockup.z-index-3 {
  z-index: 3;
  pointer-events: none;
}

.shape-mockup.z-index-1 {
  z-index: 1;
  pointer-events: none;
}

.shape-mockup .svg-img {
  height: 110px;
  width: 110px;
}

.z-index-3 {
  z-index: 3;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*------------------- 4.00. Color Scheme -------------------*/
/* color scheme ---------------------------------- */
.color-scheme-wrap.active {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.th-social a {
  display: inline-block;
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  background-color: transparent;
  color: var(--body-color);
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 10px;
  border: 1px solid var(--th-border-color);
}

.th-social a:last-child {
  margin-right: 0;
}

.th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-social.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.box-text {
  margin-bottom: -0.5em;
}

.btn-group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  /* Small devices */
  /* Extra 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;
  }
}

@media (max-width: 375px) {
  .btn-group {
    display: block;
  }
}

/*------------------- 3.6. Font -------------------*/
/*------------------- 3.7. Background -------------------*/
.bg-theme2 {
  background-color: var(--theme-color2) !important;
}

.bg-black2 {
  background-color: var(--black-color2) !important;
}

[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-theme--3 {
  background-color: #242C2E;
}

.bg-footer-color {
  background-color: #011c1a;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
[data-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="smoke"]:before {
  background-color: var(--smoke-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--black-color);
}

[data-overlay="overlay1"]:before {
  background-color: #080E1C;
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.play-btn:after,
.play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
  animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  30% {
    opacity: 0.4;
  }

  100% {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
    opacity: 0;
  }
}

@-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 scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-100% - var(--gap)));
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@-webkit-keyframes 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 zoom1 {
  0% {
    scale: 0.3;
  }

  50% {
    scale: 1;
  }

  100% {
    scale: 0.3;
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  60% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@-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 textcolor {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes textcolor {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.widget_nav_menu a,
.widget_categories a {
  display: block;
  background-color: var(--white-color);
  margin: 0 0 14px;
  padding: 16px 30px 16px 30px;
  font-size: 16px;
  line-height: 1.313;
  color: var(--body-color);
  border-radius: 50px;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

.widget_nav_menu li,
.widget_categories li {
  display: block;
  position: relative;
}

.widget_nav_menu li>span,
.widget_categories li>span {
  color: var(--title-color);
  position: absolute;
  right: 30px;
  top: 17px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  pointer-events: none;
  min-width: 20px;
  text-align: right;
}

.widget_nav_menu .menu>li:last-child>a,
.widget_nav_menu>ul>li:last-child>a,
.widget_meta .menu>li:last-child>a,
.widget_pages .menu>li:last-child>a,
.widget_archive .menu>li:last-child>a,
.widget_categories .menu>li:last-child>a,
.widget_categories>ul>li:last-child>a,
.wp-block-categories .menu>li:last-child>a {
  border-bottom: none;
  margin-bottom: 0;
}

.widget_nav_menu a:hover,
.widget_categories a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.widget_nav_menu a:hover~span,
.widget_categories a:hover~span {
  color: var(--white-color);
}

.widget_nav_menu .sub-menu,
.widget_nav_menu .children,
.widget_meta .sub-menu,
.widget_meta .children,
.widget_pages .sub-menu,
.widget_pages .children,
.widget_archive .sub-menu,
.widget_archive .children,
.widget_categories .sub-menu,
.widget_categories .children,
.wp-block-categories .sub-menu,
.wp-block-categories .children {
  margin-left: 10px;
}

.widget_nav_menu a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.th-blog ul.wp-block-archives li {
  margin: 5px 0;
}

.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color2);
  margin-bottom: 40px;
  position: relative;
  border-radius: 24px;
}

.widget[data-overlay]:before {
  z-index: -1;
}

.widget .th-social a {
  box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}

.widget.widget-author {
  padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 30px);
  background-color: transparent;
  border: 1px solid var(--th-border-color);
  border-radius: 24px;
  margin-right: 16px;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .widget.widget-author {
    margin: 0;
  }
}

.widget.widget-author .author-widget-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  /* Small devices */
}

@media (max-width: 767px) {
  .widget.widget-author .author-widget-wrap {
    display: block;
    text-align: center;
  }
}

.widget.widget-author .author-widget-wrap .avater {
  min-width: 150px;
  display: grid;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid var(--th-border-color);
  height: 150px;
  /* Small devices */
}

@media (max-width: 767px) {
  .widget.widget-author .author-widget-wrap .avater {
    margin-bottom: 25px;
  }
}

.widget.widget-author .author-widget-wrap .avater img {
  border-radius: 15px;
  width: 120px;
}

.widget.widget-author .author-widget-wrap .box-title {
  margin-bottom: 3px;
}

.widget.widget-author .author-widget-wrap .desig {
  color: var(--theme-color);
  display: block;
  margin-bottom: 5px;
}

.widget.widget-author .author-widget-wrap .author-bio {
  margin-bottom: -0.3rem;
}

.widget select,
.widget input,
.widget .form-select,
.widget .form-control,
.widget textarea {
  background-color: var(--white-color);
  border-radius: 30px;
}

.widget textarea {
  min-height: 120px;
}

.widget .form-group>i {
  background-color: var(--white-color);
}

.widget_title {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}

.widget .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.widget .search-form input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 30px;
  padding-right: 65px;
  border: 1px solid transparent;
  box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.04);
}

.widget .search-form input:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  border: none;
  font-size: 16px;
  font-size: 500;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  padding: 0;
  width: 56px;
  height: 100%;
  text-align: center;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.widget .search-form button:hover {
  background-color: var(--title-color);
}

.tagcloud a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
  text-transform: capitalize;
  line-height: 1;
  padding: 11px 15px;
  margin-right: 2px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 99px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--th-border-color);
}

.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
  border-color: var(--theme-color);
}

.tagcloud {
  margin-right: -10px;
  margin-bottom: -10px;
}

.recent-post {
  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;
  margin-bottom: 20px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post .media-img {
  margin-right: 15px;
  width: 85px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.recent-post .media-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.recent-post .media-img:after {
  content: '\f0c1';
  font-family: var(--icon-font);
  position: absolute;
  inset: 0;
  text-align: center;
  line-height: 85px;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--theme-color);
  pointer-events: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.recent-post .post-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px 0;
  font-family: var(--title-font);
  text-transform: capitalize;
}

.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 16px;
  color: var(--body-color);
  font-family: var(--body-font);
}

.recent-post .recent-post-meta a i {
  margin-right: 6px;
  color: var(--theme-color);
}

.recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}

.recent-post:hover .media-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.recent-post:hover .media-img:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.sidebar-area {
  margin-bottom: -10px;
}

.sidebar-area ul.wp-block-latest-posts {
  margin-bottom: 0;
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
  margin-bottom: 0;
}

.sidebar-area select,
.sidebar-area input {
  background-color: var(--white-color);
}

.sidebar-area .widget_nav_menu>ul,
.sidebar-area .widget_nav_menu .menu,
.sidebar-area .widget_meta>ul,
.sidebar-area .widget_meta .menu,
.sidebar-area .widget_pages>ul,
.sidebar-area .widget_pages .menu,
.sidebar-area .widget_archive>ul,
.sidebar-area .widget_archive .menu,
.sidebar-area .widget_categories>ul,
.sidebar-area .widget_categories .menu,
.sidebar-area .wp-block-categories>ul,
.sidebar-area .wp-block-categories .menu {
  margin: none;
}

.sidebar-area .wp-block-categories {
  margin: -20px 0 -20px 0;
}

.sidebar-area .sidebar-gallery {
  margin-bottom: 0 !important;
}

.sidebar-area .widget .wp-block-search {
  margin-bottom: 0;
}

.sidebar-area .wp-block-search__label,
.sidebar-area .wp-block-group__inner-container h2 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  padding-bottom: 20px;
  margin: -0.12em 0 38px 0;
}

.sidebar-area .wp-block-search__label:after,
.sidebar-area .wp-block-search__label:before,
.sidebar-area .wp-block-group__inner-container h2:after,
.sidebar-area .wp-block-group__inner-container h2:before {
  content: '';
  height: 3px;
  width: 100%;
  background-color: var(--th-border-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sidebar-area .wp-block-search__label:after,
.sidebar-area .wp-block-group__inner-container h2:after {
  background-color: var(--theme-color);
  width: 40px;
}

.sidebar-area ol.wp-block-latest-comments {
  padding: 0;
  margin: 0;
}

.sidebar-area ol.wp-block-latest-comments li {
  line-height: 1.5;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.download-widget-wrap .th-btn {
  width: 100%;
}

.download-widget-wrap .th-btn:first-child {
  margin-bottom: 15px;
}

.download-widget-wrap .th-btn.style2 {
  color: var(--body-color);
}

.download-widget-wrap .th-btn.style2:before {
  background-color: var(--theme-color);
}

.download-widget-wrap .th-btn.style2:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}

.widget_call .widget_title {
  color: var(--white-color);
}

.widget-call .text {
  display: block;
  margin: 22px auto 25px auto;
  color: var(--white-color);
  max-width: 310px;
}

.widget-call .play-btn {
  --icon-size: 60px;
}

.widget-call .play-btn>i {
  font-size: 30px;
}

.widget-call .box-title {
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 2px;
}

.widget_call .info-box_icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  line-height: 52px;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  background: var(--theme-color2);
}

.widget_call .info-box_link {
  font-size: 18px;
  color: var(--white-color);
  /* Small devices */
}

@media (max-width: 767px) {
  .widget_call .info-box_link {
    font-size: 20px;
  }
}

.widget_call .info-box_text {
  font-size: 18px;
  color: var(--white-color);
}

/* Medium Large devices */
.widget_info .info-box {
  margin-bottom: 28px;
}

.widget_info .info-box .info-box_icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  line-height: 56px;
  font-size: 14px;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 22px;
  border-radius: 20px;
}

.widget_info .info-box .info-box_text {
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
}

.widget_info .info-box .info-box_subtitle {
  display: block;
  margin-bottom: 7px;
}

.widget_info .info-box:nth-child(2) .info-box_icon {
  background-color: var(--theme-color);
}

.widget_info .info-box:nth-child(3) .info-box_icon {
  background-color: var(--theme-color2);
}

.widget_info .info-box:nth-child(4) .info-box_icon {
  background-color: var(--theme-color3);
}

.widget_info .info-box:nth-child(5) .info-box_icon {
  background-color: #162479;
}

.widget_shopping_cart .widget_title {
  margin-bottom: 35px;
  border-bottom: none;
}

.widget_shopping_cart .th-btn {
  margin-right: 15px;
}

.widget_shopping_cart .th-btn:last-child {
  margin-right: 0;
}

.th-video-widget .play-btn {
  --icon-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.th-video-widget .play-btn i {
  font-size: 16px;
}

.widget_overview .th-social a {
  --icon-size: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--theme-color2);
  color: var(--white-color);
}

.widget_overview .th-social a:hover {
  background-color: var(--theme-color);
}

.sidebar-area .widget_shopping_cart .th-btn {
  margin-right: 10px;
  padding: 8px 22px;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .sidebar-shop .widget {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .sidebar-shop .widget {
    margin-bottom: 24px;
  }
}

/* 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;
  }

  .author-widget-wrap .name {
    font-size: 22px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }

  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 30px;
    border-radius: 10px;
  }
}

@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 14px;
    line-height: 24px;
  }

  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget .form-group>i {
  color: var(--theme-color);
  top: 18px;
}

.footer-widget .sidebar-gallery {
  max-width: 287px;
  gap: 11px;
}

.footer-widget .sidebar-gallery .gallery-thumb {
  border-radius: 5px;
}

.footer-widget .widget_title {
  max-width: 270px;
  color: var(--white-color);
  text-transform: capitalize;
  margin: -0.12em 0 15px 0;
  padding: 0 0 15px 0;
  position: relative;
}

.footer-widget .widget_title img {
  margin: -7px 10px 0 0;
}

.footer-widget.widget_meta ul,
.footer-widget.widget_pages ul,
.footer-widget.widget_archive ul,
.footer-widget.widget_categories ul,
.footer-widget.widget_nav_menu ul {
  margin-top: -4px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta>ul,
.footer-widget.widget_pages .menu,
.footer-widget.widget_pages>ul,
.footer-widget.widget_archive .menu,
.footer-widget.widget_archive>ul,
.footer-widget.widget_categories .menu,
.footer-widget.widget_categories>ul,
.footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu>ul {
  margin-bottom: -4px;
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 0px;
  margin-bottom: 18px;
  font-family: var(--body-font);
  color: #99a4a3;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
  border: 0;
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.footer-widget.widget_meta li>span,
.footer-widget.widget_pages li>span,
.footer-widget.widget_archive li>span,
.footer-widget.widget_categories li>span,
.footer-widget.widget_nav_menu li>span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 300px;
  margin-top: -0.4em;
  margin-bottom: 20px;
}

.footer-widget .recent-post .media-img {
  max-width: 74px;
}

.footer-widget .recent-post .media-img:after {
  line-height: 74px;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
  font-weight: 500;
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta a {
  font-weight: 400;
  line-height: 1.2;
}

.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}

.footer-widget .sidebar-gallery {
  max-width: 250px;
}

.footer-widget .th-widget-about .about-text {
  color: #99a4a3;
}

.footer-top .info-box_text {
  color: #99a4a3;
}

.footer-top .info-box_link {
  color: #99a4a3;
}

/* Extra small devices */
@media (max-width: 575px) {
  .col-md-6:last-child .newsletter-widget {
    margin-bottom: 27px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .col-md-6:last-child .newsletter-widget {
    margin-bottom: 15px;
  }
}

.about-logo {
  margin-bottom: 15px;
}

.th-widget-about .about-logo {
  margin-bottom: 40px;
}

.th-widget-about .about-text {
  margin-bottom: 30px;
  margin-top: -0.9em;
}

.footer-text {
  margin-top: -0.5em;
  margin-bottom: 25px;
}

/* Large devices */
@media (max-width: 1199px) {

  .footer-widget.widget_meta a,
  .footer-widget.widget_pages a,
  .footer-widget.widget_archive a,
  .footer-widget.widget_categories a,
  .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin: -0.12em 0 25px 0;
    padding: 0 0 11px 0;
  }

  .th-widget-about .about-text {
    margin-bottom: 20px;
  }

  .social-box.mb-30 {
    margin-bottom: 25px;
  }
}

/*------------------- 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;
}

.sticky-wrapper.sticky .header-logo {
  padding: 22px 96px 22px 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .sticky-wrapper.sticky .header-logo {
    padding: 22px 0px 22px 0;
  }
}

@-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: capitalize;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu>ul>li {
  margin: 0 15px;
}

.main-menu>ul>li>a {
  padding: 22px 0;
}

.main-menu>ul>li>a:hover {
  color: var(--theme-color);
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\f078";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  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: "\f077";
  color: var(--theme-color);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\2b";
  float: right;
  top: 1px;
  display: inline-block;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
  content: "\f068";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: capitalize;
}

.main-menu ul.sub-menu li a:before {
  content: "\f24e";
  position: absolute;
  top: 6px;
  left: 10px;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 900;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

@media (max-width: 1500px) {
  .main-menu>ul>li {
    margin: 0 10px;
  }
}

.menu-style1 ul li.menu-item-has-children>a:after {
  color: var(--white-color);
}

.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: 25px;
  /* Extra large devices */
  /* Medium Large devices */
}

@media (max-width: 1500px) {
  .header-button {
    gap: 12px;
  }

  .header-button .th-btn.style4 {
    padding: 21px 30px;
  }
}

.header-button .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-button .icon-btn:hover .badge {
  background-color: var(--title-color);
}

@media (max-width: 1399px) {
  .header-button .th-btn {
    display: none;
  }
}

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1) translateX(0%);
  -ms-transform: scaleY(1) translateX(0%);
  transform: scaleY(1) translateX(0%);
  z-index: 9;
}

/* Header layout 1 ---------------------------------- */
.header-layout1 .header-logo {
  z-index: 2;
  padding: 0px 85px 46px 0;
  /* Extra large devices */
  /* Medium Large devices */
  /* Small devices */
}

@media (max-width: 1500px) {
  .header-layout1 .header-logo {
    padding: 22px 65px 22px 0;
  }
}

@media (max-width: 1299px) {
  .header-layout1 .header-logo {
    padding: 22px 96px 22px 0;
  }
}

@media (max-width: 767px) {
  .header-layout1 .header-logo {
    padding: 22px 0px 22px 0;
  }
}

.header-layout1 .header-logo .logo-bg {
  position: absolute;
  top: unset;
  bottom: 0;
  background-color: var(--smoke-color);
  z-index: -1;
  width: 300px;
  left: 0;
  height: 152px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .header-layout1 .header-logo .logo-bg {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .header-layout1 .header-logo .logo-bg {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .header-logo img {
    max-width: 180px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .header-logo img {
    max-width: 160px;
  }
}

/* Header 1 ---------------------------------- */
.header-default .sticky-wrapper.sticky {
  background-color: var(--title-color);
}

@media (min-width: 1300px) {
  .header-default .container {
    --main-container: 1920;
    padding: 0 60px;
  }
}

.header-default .main-menu>ul>li>a {
  padding: 22px 0;
  color: var(--white-color);
}

.header-default .main-menu ul li.menu-item-has-children>a::after {
  color: var(--white-color);
}

.header-default .icon-btn {
  border-radius: 99px;
  color: var(--white-color);
}

/* Header 2 ---------------------------------- */
.header-layout2 {
  background-color: var(--title-color);
  border-bottom: 1px solid #FFFFFF14;
}

.header-layout2 .sticky-wrapper.sticky {
  background-color: var(--title-color);
}

.header-layout2 .sticky-wrapper.sticky .header-logo {
  padding: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 1300px) {
  .header-layout2 .header-1-container {
    --main-container: 1920;
    padding: 0 60px;
  }
}

.header-layout2 .menu-area {
  padding: 6px 0;
}

.header-layout2 .main-menu>ul>li>a {
  padding: 22px 0;
  color: var(--white-color);
}

.header-layout2 .main-menu ul li.menu-item-has-children>a::after {
  color: var(--white-color);
}

.header-layout2 .icon-btn {
  border-radius: 99px;
  color: var(--white-color);
}

/* breadcumb-header ---------------------------------- */
.header-layout2.breadcumb-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
}

.header-icons .icon-btn {
  font-size: 18px;
}

.header-icons .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-icons .icon-btn:hover .badge {
  background-color: var(--title-color);
}

.category-menu li.menu-item-has-children {
  position: relative;
}

.category-menu li.menu-item-has-children>a:after {
  content: "\f054";
  float: right;
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 1px;
  font-size: 0.9em;
  color: var(--theme-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.category-menu li.menu-item-has-children>a:hover:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.category-menu li ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 0;
  left: 100%;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.category-menu li ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.category-menu li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.call-btn .box-icon {
  color: var(--theme-color2);
  font-size: 36px;
}

.call-btn .box-title {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--white-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .call-btn .box-title {
    font-size: 16px;
  }
}

.header-layout3 .menu-area {
  position: relative;
  z-index: 2;
  background-color: var(--theme-color);
}

.header-layout3 .th-menu-toggle {
  background-color: var(--theme-color2);
  border-radius: 0;
  height: 60px;
  width: 60px;
}

.header-layout3 .icon-btn {
  border: none;
  background-color: var(--smoke-color2);
}

.header-layout3 .icon-btn:hover {
  background-color: var(--theme-color);
}

/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  --body-color: #788094;
  position: relative;
  z-index: 2;
  background-color: var(--title-color);
  overflow: hidden;
}

.footer-wrapper .th-social a {
  background-color: #1F2432;
  color: var(--white-color);
}

.footer-wrapper .th-social a:hover {
  background-color: var(--theme-color);
}

.footer-wrapper .social-links a {
  margin: 0 30px 0 0;
}

.widget-area {
  padding-top: 100px;
  padding-bottom: 40px;
}

.copyright-wrap {
  padding: 27px 0;
  background: var(--theme-color);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .copyright-wrap {
    background-color: var(--theme-color2);
    padding: 25px 0 20px;
  }
}

.copyright-wrap .copyright-text {
  color: var(--white-color);
  line-height: 1.4;
}

.copyright-wrap .copyright-text a {
  color: var(--theme-color);
}

.copyright-wrap .copyright-text a:hover {
  color: var(--white-color);
}

.copyright-wrap.bg-title .copyright-text a:hover {
  color: var(--theme-color2);
}

.copyright-text {
  margin: 0;
}

.copyright-text a {
  color: var(--theme-color);
}

.copyright-text a:hover {
  color: var(--white-color);
}

.th-widget-contact {
  max-width: 265px;
}

.newsletter-widget {
  width: 330px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .newsletter-widget {
    width: inherit;
  }
}

.newsletter-widget .form-group {
  margin-bottom: 0;
}

.newsletter-widget .icon-btn {
  color: var(--white-color);
  padding: 0;
  border: none;
  position: absolute;
  border-radius: 30px;
  width: 46px;
  height: 46px;
  line-height: 4px;
  right: 0;
  top: 0;
  background: var(--theme-color);
}

.newsletter-widget .icon-btn:hover {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

.newsletter-widget .footer-text {
  margin-bottom: 20px;
  color: #99a4a3;
}

.newsletter-widget .footer-info-title {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 8px;
}

.newsletter-widget .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.newsletter-widget .bottom .icon i {
  color: var(--theme-color2);
  font-size: 13px;
}

.newsletter-widget p {
  padding-right: 10px;
}

.footer-widget .newsletter-widget .icon-btn {
  background: var(--theme-color);
}

.newsletter-form {
  width: 100%;
  max-width: 500px;
  position: relative;
  /* Large devices */
}

@media (max-width: 1199px) {
  .newsletter-form {
    max-width: 460px;
  }
}

.newsletter-form .form-group {
  margin-bottom: 0;
  width: 100%;
}

.newsletter-form .form-group>i {
  color: var(--theme-color);
}

.newsletter-form input {
  background-color: var(--white-color);
  border: 1px solid #FFFFFF6B;
  width: 100%;
  margin-bottom: 15px;
  background-color: transparent;
  padding: 6px 20px;
  padding-right: 20px;
  padding-right: 70px;
}

.newsletter-form input:focus {
  background-color: var(--white-color);
  color: var(--body-color);
}

.newsletter-form .newsletter-btn {
  display: inline-block;
  border: none;
  background-color: var(--theme-color);
  color: var(--title-color);
  width: 55px;
  height: 55px;
  line-height: 55px;
  min-width: 55px;
}

.newsletter-wrap .form-control {
  border-radius: 10px;
}

.newsletter-wrap .th-btn {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .newsletter-wrap .newsletter-form {
    max-width: 100%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .widget-area {
    padding-bottom: 10px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-wrapper .newsletter-form {
    max-width: 400px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-wrapper .newsletter-form {
    max-width: 550px;
    gap: 15px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .newsletter-wrap .newsletter-form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-wrapper .newsletter-form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .widget-area {
    padding-bottom: 0px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 0px;
  }

  .copyright-text {
    text-align: center;
  }
}

/* Footer 1  ---------------------------------- */
.news-letter-1-wrapper {
  background-position: top right;
  position: relative;
}

.news-letter-1-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 49%;
  height: 100%;
  background-color: var(--theme-color2);
  /* Large devices */
}

@media (max-width: 1199px) {
  .news-letter-1-wrapper::before {
    display: none;
  }
}

.news-letter-1-wrapper .newsletter-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .news-letter-1-wrapper .newsletter-form {
    gap: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.news-letter-1-wrapper .newsletter-form .th-btn {
  position: absolute;
  right: 1px;
  margin-top: 1px;
  margin-right: 1px;
  top: 1px;
  padding: 19px 42px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .news-letter-1-wrapper .newsletter-form .th-btn {
    position: relative;
  }
}

.news-letter-1-wrapper .newsletter-form .form-control {
  position: relative;
  background: #ffffff21;
  border-color: #ffffff3d;
  color: var(--white-color);
  padding-right: 220px;
  margin-bottom: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .news-letter-1-wrapper .newsletter-form .form-control {
    padding-right: 25px;
  }
}

.news-letter-1-wrapper .newsletter-form .form-control::-webkit-input-placeholder {
  color: var(--white-color);
}

.news-letter-1-wrapper .newsletter-form .form-control::-moz-placeholder {
  color: var(--white-color);
}

.news-letter-1-wrapper .newsletter-form .form-control:-ms-input-placeholder {
  color: var(--white-color);
}

.news-letter-1-wrapper .newsletter-form .form-control::-ms-input-placeholder {
  color: var(--white-color);
}

.news-letter-1-wrapper .newsletter-form .form-control::placeholder {
  color: var(--white-color);
}

.news-letter-1-wrapper .subscribe-box {
  position: relative;
  z-index: 1;
  padding: 72px 0 72px;
  /* Small devices */
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .news-letter-1-wrapper .subscribe-box {
    padding: 60px 0 60px;
  }
}

.news-letter-1-wrapper .subscribe-box_title {
  color: var(--white-color);
  font-size: 42px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0px;
  margin-top: -0.25em;
}

.news-letter-1-wrapper .subscribe-box_text {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--white-color);
  margin-bottom: 20px;
}

@media (max-width: 1299px) {
  .news-letter-1-wrapper .subscribe-box .subscribe-box_title {
    font-size: 30px;
  }
}

@media (max-width: 1199px) {
  .news-letter-1-wrapper .subscribe-box {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .news-letter-1-wrapper .subscribe-box .subscribe-box_title {
    font-size: 26px;
  }

  .news-letter-1-wrapper .subscribe-box .subscribe-box_text {
    font-size: 16px;
  }
}

.footer-layout1 {
  background-color: var(--title-color);
}

.footer-layout1 .widget-area {
  padding-top: 120px;
  padding-bottom: 70px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .footer-layout1 .widget-area {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .footer-layout1 .widget-area {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

.footer-layout1 .th-widget-about .th-social a {
  background-color: #1A3331;
  border: 0;
  border-radius: 50%;
  --icon-size: 40px;
  font-size: 13px;
}

.footer-layout1 .th-widget-about .th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.footer-layout1 .footer-shape-1 {
  top: 24%;
  left: 3%;
}

.footer-layout1 .footer-shape-2 {
  right: 6%;
  bottom: 18%;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-layout1 .footer-shape-2 {
    display: none;
  }
}

.footer-layout1 .footer-bottom-shape {
  height: 120px;
  width: 100%;
  background: var(--theme-color2);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .footer-layout1 .footer-bottom-shape {
    display: none;
  }
}

.footer-layout1 .copyright-wrap {
  padding: 27px 0;
  background-color: var(--theme-color2);
}

.footer-border-right {
  position: relative;
}

.footer-border-right:before {
  position: absolute;
  background: #ffffff1f;
  height: 85%;
  width: 1px;
  top: 0;
  content: "";
  right: -40px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .footer-border-right:before {
    display: none;
  }
}

.footer-border-right:last-child:before {
  display: none;
}

.footer-top-social .th-social a {
  border-radius: 100%;
  border-color: 1px solid var(--white-color);
}

.footer-top-social .th-social a:hover {
  color: var(--black-color);
  background-color: var(--theme-color2);
}

@media (max-width: 1600px) {
  .footer-wrapper .footer-shape-1 {
    top: 24%;
    left: 1%;
  }
}

/* footer Default ---------------------------------- */
.footer-default .footer-top .th-widget-contact {
  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;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #ffffff1f;
  padding-bottom: 58px;
  margin-bottom: 80px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .footer-default .footer-top .th-widget-contact {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

.footer-default .footer-top .th-widget-contact .info-box {
  max-width: 246px;
  position: relative;
}

.footer-default .footer-top .th-widget-contact .info-box::before {
  position: absolute;
  right: -56%;
  top: 12px;
  height: 75px;
  width: 1px;
  background: #ffffff1f;
  content: '';
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .footer-default .footer-top .th-widget-contact .info-box::before {
    right: -40%;
  }
}

@media (max-width: 1199px) {
  .footer-default .footer-top .th-widget-contact .info-box::before {
    display: none;
  }
}

.footer-default .footer-top .th-widget-contact .info-box:last-child::before {
  display: none;
}

.footer-default {
  background-position: top center;
  background-color: #011c1a;
}

.footer-default .widget-area {
  padding-top: 0px;
  padding-bottom: 70px;
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .footer-default .widget-area {
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .footer-default .widget-area {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-default .widget-area {
    padding-bottom: 5px;
  }
}

.footer-default .th-widget-about .th-social a {
  background-color: #1A3331;
  border: 0;
  border-radius: 50%;
  --icon-size: 40px;
  font-size: 13px;
}

.footer-default .th-widget-about .th-social a:hover {
  background-color: var(--theme-color);
}

.widget.footer-widget .newsletter-form input {
  height: 46px;
  background: transparent;
  margin-bottom: 30px;
}

.footer-default .copyright-wrap {
  background: transparent;
  padding: 0;
  margin-bottom: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .footer-default .copyright-wrap {
    margin-bottom: 30px;
  }
}

.footer-default .copyright-wrap .copyright-text {
  padding: 24px 0;
  background: #ffffff1f;
  border-radius: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .footer-default .copyright-wrap .copyright-text {
    border-radius: 15px;
  }
}

/* footer 2 ---------------------------------- */
.footer-wrapper.footer-layout1 {
  overflow: initial;
  background-color: #0a1660;
}

.footer-layout1 .th-social a {
  border-radius: 50%;
  background: transparent;
}

.footer-layout1 .th-social a:hover {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

.footer-layout1 .th-widget-about .about-bottom-title {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 8px;
}

.footer-layout1 .th-widget-about .bottom-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.footer-layout1 .th-widget-about .bottom-info .icon {
  color: var(--theme-color2);
  font-size: 13px;
}

.footer-layout1 .th-widget-about .bottom-info p {
  color: var(--white-color);
  padding-right: 10px;
  margin-bottom: 0;
}

.footer-layout2 .th-social a {
  background-color: #123C12;
  color: var(--white-color) !important;
  border-radius: 10px;
}

.footer-layout2 .th-social a:hover {
  background-color: var(--theme-color);
}

.footer-layout2 .copyright-wrap {
  background-size: auto;
  background-position: top center;
  background-repeat: repeat-x;
  background-color: transparent;
  padding-top: 45px;
  margin-top: -10px;
}

.th-widget-contact {
  max-width: 280px;
}

.th-widget-contact .footer-info-title {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1;
}

.info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box_icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  line-height: 56px;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--theme-color);
  border-radius: 30px;
  text-align: center;
  margin-right: 15px;
  border: 0;
}

.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.info-box_link {
  display: inline-block;
  color: var(--body-color);
}

.info-box_link:hover {
  color: var(--theme-color);
}

/* footer 3 ---------------------------------- */
.footer-layout1.style-2 {
  background-color: #070707;
}

.footer-layout1.style-2 .subscribe-box {
  padding: 80px 0 80px;
  border-bottom: 1px solid #484B4D;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .footer-layout1.style-2 .subscribe-box {
    padding: 50px 0 50px;
  }
}

.footer-layout1.style-2 .th-widget-contact .footer-info-title {
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: -.12em;
}

.footer-layout1.style-2 .footer-widget .widget_title::after {
  background-color: var(--theme-color3);
}

.footer-layout1.style-2 .footer-widget.widget_nav_menu a::before {
  color: var(--theme-color3);
}

.footer-layout1.style-2 .footer-widget.widget_nav_menu a:hover {
  color: var(--theme-color3);
}

.footer-layout1.style-2 .footer-widget .info-box_icon {
  color: var(--theme-color3);
}

.footer-layout1.style-2 .bottom-info .icon {
  color: var(--theme-color3);
}

.footer-layout1.style-2 .copyright-wrap {
  background-color: var(--theme-color3);
}

.footer-layout1.style-2 .copyright-wrap .copyright-text a {
  color: var(--title-color);
}

.footer-layout1.style-2 .th-social a:hover {
  background: var(--title-color);
  color: var(--white-color);
}

/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 25px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f054";
  position: relative;
  margin-left: 6px;
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  font-family: var(--icon-font);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--white-color);
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li:first-child,
.breadcumb-menu li:first-child a,
.breadcumb-menu li:first-child span {
  color: var(--white-color);
}

.breadcumb-menu li:first-child:hover,
.breadcumb-menu li:first-child a:hover,
.breadcumb-menu li:first-child span:hover {
  color: var(--theme-color);
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 500;
  font-size: 16px;
  color: var(--white-color);
}

.breadcumb-title {
  margin: -0.20em 0 -0.18em 0;
  line-height: 1.1;
  font-size: 64px;
  font-weight: 600;
  color: var(--white-color);
}

@media (min-width: 1300px) {
  .breadcumb-title {
    font-size: 64px;
    line-height: 1.11;
  }
}

.breadcumb-wrapper {
  --space: 160px;
  padding: calc(var(--space) + 100px) 0 var(--space);
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcumb-wrapper::before {
  z-index: -1;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .breadcumb-wrapper {
    --space: 140px;
    padding: calc(var(--space) + 80px) 0 var(--space);
  }

  .breadcumb-wrapper .breadcrumb-left {
    width: 50px;
    top: 28%;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    --space: 120px;
    padding: calc(var(--space) + 90px) 0 var(--space);
  }

  .breadcumb-menu {
    margin: 15px 0 -0.5em 0;
  }

  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 18px;
  }

  .breadcumb-title {
    font-size: 64px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-title {
    font-size: 48px;
  }

  .breadcumb-wrapper {
    --space: 110px;
    padding: calc(var(--space) + 90px) 0 var(--space);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 40px;
  }

  .breadcumb-wrapper {
    --space: 100px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-wrapper {
    --space: 90px;
    padding: calc(var(--space) + 85px) 0 var(--space);
  }

  .breadcumb-wrapper .breadcrumb-right {
    bottom: 15%;
    left: 50%;
    width: 39px;
  }

  .breadcumb-title {
    font-size: 34px;
  }
}

/*------------------- 4.5. Pagination  -------------------*/
.th-pagination {
  margin-bottom: 30px;
}

.th-pagination ul {
  margin: 0;
  padding: 0;
}

.th-pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}

.th-pagination li:last-child {
  margin-right: 0;
}

.th-pagination li:first-child {
  margin-left: 0;
}

.th-pagination span,
.th-pagination a {
  display: inline-block;
  text-align: center;
  position: relative;
  border: none;
  color: var(--title-color);
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid var(--th-border-color);
}

.wp-block-query-pagination-numbers span.active,
.wp-block-query-pagination-numbers a.active,
.th-pagination span.active,
.th-pagination span:hover,
.th-pagination a.active,
.th-pagination a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.wp-block-query-pagination-next.active {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

/* Small devices */
@media (max-width: 767px) {

  .th-pagination span,
  .th-pagination a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

/*------------------- 4.6. Blog  -------------------*/
blockquote {
  font-size: 16px;
  line-height: 1.56;
  padding: 40px 50px 40px 50px;
  font-weight: 400;
  display: block;
  position: relative;
  background-color: transparent;
  margin: 40px 0 45px 0;
  color: var(--title-color);
  font-family: var(--body-font);
  font-style: italic;
  border: 1px solid var(--th-border-color) !important;
  border-radius: 20px;
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  blockquote {
    padding: 30px;
  }
}

@media (max-width: 375px) {
  blockquote {
    padding: 22px;
  }
}

blockquote p {
  font-family: inherit;
  margin-top: -0.3em;
  margin-bottom: 9px;
  line-height: inherit;
  color: inherit;
  width: 100%;
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

blockquote p a {
  color: inherit;
}

blockquote:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  height: 28px;
  width: 44px;
  background-color: var(--white-color);
}

blockquote::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 0px;
  height: 30px;
  width: 31px;
  background-color: var(--theme-color2);
  -webkit-clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
  clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
  -webkit-transform: translate(-45deg);
  -ms-transform: translate(-45deg);
  transform: translate(-45deg);
  -webkit-transform: translateX(180deg);
  -ms-transform: translateX(180deg);
  transform: translateX(180deg);
  -webkit-transform: rotateY(162deg);
  transform: rotateY(162deg);
}

blockquote cite {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  font-style: normal;
  font-family: var(--title-font);
  white-space: nowrap;
  position: absolute;
  bottom: -17px;
  right: 80px;
  background-color: var(--theme-color2);
  color: var(--white-color);
  padding: 5px 40px 9px 22px;
  border-radius: 10px 6px 30px 10px;
}

blockquote cite br {
  display: none;
}

blockquote:not(:has(> cite)) p:last-child {
  margin-bottom: -0.3em;
}

blockquote p:has(cite) {
  padding-bottom: 10px;
}

blockquote p cite {
  margin-top: 20px;
  margin-bottom: -0.5em;
  bottom: -32px;
}

.blog-radius-img {
  border-radius: 24px;
  overflow: hidden;
}

/* Small devices */
@media (max-width: 767px) {
  blockquote cite {
    font-size: 18px;
    left: 30px;
  }
}

/* Extra small devices */
/* Extra small devices */
@media (max-width: 375px) {
  blockquote cite {
    font-size: 18px;
    padding-left: 22px;
  }

  blockquote cite:before {
    width: 20px;
  }
}

.blog-meta {
  display: block;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  font-size: 14px;
  color: var(--body-color);
  font-family: var(--body-font);
  position: relative;
  margin-right: 26px;
  position: relative;
}

.blog-meta span::before,
.blog-meta a::before {
  content: "";
  position: absolute;
  right: -15px;
  height: 16px;
  width: 1px;
  background: #E0E0E0;
  top: 6px;
}

.blog-meta span:last-child:before,
.blog-meta a:last-child:before {
  display: none;
}

.blog-meta span i,
.blog-meta a i {
  margin-right: 5px;
  /* color: var(--theme-color); */
}

.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
}

.blog-meta .author img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {

  .blog-meta span,
  .blog-meta a {
    margin-right: 15px;
  }

  .blog-meta span:not(:last-child),
  .blog-meta a:not(:last-child) {
    padding-right: 15px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {

  .blog-meta span,
  .blog-meta a {
    margin-right: 20px;
  }

  .blog-meta span:not(:last-child),
  .blog-meta a:not(:last-child) {
    padding-right: 0;
  }

  .blog-meta span:not(:last-child):after,
  .blog-meta a:not(:last-child):after {
    display: none;
  }
}

.blog-audio,
.blog-img {
  line-height: 1px;
}

.blog-audio img,
.blog-img img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-title a {
  color: inherit;
}

.blog-title a:hover {
  color: var(--theme-color);
}

.th-blog {
  margin-bottom: 30px;
}

.blog-inner-title {
  margin-top: -0.25em;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 600;
}

.blog-inner-title i {
  color: var(--theme-color);
  margin-right: 4px;
}

@media (min-width: 1300px) {

  .blog-single,
  .th-comments-wrap,
  .th-comment-form {
    margin-right: 16px;
  }
}

.blog-single {
  position: relative;
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--th-border-color);
  padding: 40px;
}

.blog-single .blog-title {
  margin-bottom: 23px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.blog-single .blog-text {
  margin-bottom: 22px;
}

.blog-single .blog-meta {
  margin: -0.35em 0 10px 0;
}

.blog-single .blog-content {
  margin: 0 0 0 0;
  position: relative;
  margin-bottom: -.48em;
}

.blog-single .blog-content .blog-single {
  padding: 20px;
}

.blog-single .blog-audio {
  line-height: 1;
}

.blog-single .blog-audio,
.blog-single .blog-img,
.blog-single .blog-video {
  position: relative;
  overflow: hidden;
  background-color: var(--smoke-color);
  margin-bottom: 0;
  border-radius: 16px;
  margin-bottom: 40px;
}

.blog-single .blog-img .slider-arrow {
  --pos-x: 30px;
  --icon-size: 44px;
  border: none;
  background-color: var(--white-color);
  color: var(--theme-color);
  box-shadow: none;
  visibility: visible;
  opacity: 1;
}

.blog-single .blog-img .slider-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.blog-single .blog-img .play-btn {
  --icon-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}

.blog-single .line-btn {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: -1px;
}

.share-links-title {
  font-size: 20px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 700;
  margin: 0 15px 0 0;
  display: inline-block;
  text-transform: capitalize;
}

.share-links {
  margin: 45px 0 5px 0px;
  padding: var(--blog-space-y, 38px) 0 0 0;
  border-top: 1px solid var(--th-border-color);
}

.share-links>.row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  --bs-gutter-y: 15px;
}

.share-links .wp-block-tag-cloud,
.share-links .tagcloud {
  display: inline-block;
}

.share-links .wp-block-tag-cloud a,
.share-links .tagcloud a {
  background-color: transparent;
  box-shadow: none;
}

.share-links .wp-block-tag-cloud a:hover,
.share-links .tagcloud a:hover {
  background-color: var(--theme-color);
}

.share-links .th-social {
  display: inline-block;
}

.share-links .th-social a {
  --icon-size: 40px;
  font-size: 14px;
  border-radius: 99px;
}

.blog-author .media-body {
  padding: 40px 40px 40px 40px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

/* Small devices */
/* Extra small devices */
@media (max-width: 575px) {
  .blog-author .media-body {
    padding: 35px 20px 30px 20px;
  }
}

.blog-details .blog-single {
  background-color: transparent;
}

.blog-details .blog-content>p:last-child {
  margin-bottom: 0;
}

.blog-content .wp-block-search .wp-block-search__input {
  box-shadow: none;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-single .blog-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .share-links {
    --blog-space-x: 20px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-single {
    --blog-space-x: 40px;
    --blog-space-y: 40px;
  }

  .share-links {
    --blog-space-x: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .share-links {
    --blog-space-x: 20px;
  }

  .blog-details .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
  }

  .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
    border-radius: 10px;
  }

  .blog-single .blog-audio,
  .blog-single .blog-video,
  .blog-single .blog-img {
    border-radius: 10px 10px 0 0;
  }

  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .blog-single .blog-text {
    margin-bottom: 22px;
  }

  .blog-single .blog-bottom {
    padding-top: 15px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .share-links-title {
    margin: 0 15px 5px 0;
  }
}

/*------------------- 4.7. Comments  -------------------*/
.th-comment-form {
  margin-top: var(--blog-space-y, 40px);
  margin-bottom: 30px;
  padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
  position: relative;
}

.th-comment-form.blog-comment-wrap {
  padding: 60px;
  background: var(--smoke-color2);
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .th-comment-form.blog-comment-wrap {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .th-comment-form.blog-comment-wrap {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .th-comment-form.blog-comment-wrap {
    padding: 40px 20px;
  }
}

.th-comment-form .row {
  --bs-gutter-x: 20px;
}

.th-comment-form .blog-inner-title {
  margin-bottom: 0px;
}

.th-comment-form .form-title {
  margin-top: -0.35em;
}

.th-comment-form .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}

.th-comment-form .form-text {
  margin-bottom: 25px;
}

.th-comment-form,
.th-comments-wrap {
  padding: 40px;
  box-shadow: none;
  border-radius: 30px;
  border: 1px solid var(--th-border-color);
  /* Small devices */
}

@media (max-width: 767px) {

  .th-comment-form,
  .th-comments-wrap {
    border-radius: 10px;
  }
}

.th-comment-form:has(#wp-temp-form-div),
.th-comments-wrap:has(#wp-temp-form-div) {
  padding: 0;
  box-shadow: none;
  display: none;
}

.th-comments-wrap {
  margin-top: var(--blog-space-y, 40px);
  margin-bottom: 30px;
}

.th-comments-wrap .description p:last-child {
  margin-bottom: -0.5em;
}

.th-comments-wrap .comment-respond {
  margin: 30px 0;
}

.th-comments-wrap pre {
  background: #ededed;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.th-comments-wrap li {
  margin: 0;
}

.th-comments-wrap .th-post-comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  position: relative;
  border-bottom: 1px solid var(--th-border-color);
  border-radius: 0;
  padding-bottom: 30px;
}

.th-comments-wrap .th-post-comment ol,
.th-comments-wrap .th-post-comment ul,
.th-comments-wrap .th-post-comment dl {
  margin-bottom: 1rem;
}

.th-comments-wrap .th-post-comment ol ol,
.th-comments-wrap .th-post-comment ol ul,
.th-comments-wrap .th-post-comment ul ol,
.th-comments-wrap .th-post-comment ul ul {
  margin-bottom: 0;
}

.th-comments-wrap ul.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: -30px;
}

.th-comments-wrap ul.comment-list ul ul,
.th-comments-wrap ul.comment-list ul ol,
.th-comments-wrap ul.comment-list ol ul,
.th-comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}

.th-comments-wrap .comment-avater {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid var(--th-border-color);
}

.th-comments-wrap .comment-avater img {
  width: 100%;
  border-radius: 15px;
}

.th-comments-wrap .comment-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: -6px;
  position: relative;
  margin-bottom: -0.7em;
}

.th-comments-wrap .commented-on {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 0px;
  font-weight: 400;
  color: var(--body-color);
}

.th-comments-wrap .commented-on i {
  color: var(--theme-color);
  margin-right: 7px;
  font-size: 0.9rem;
}

.th-comments-wrap .name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.th-comments-wrap .comment-top {
  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;
}

.th-comments-wrap .text {
  margin-bottom: 0px;
}

.th-comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 80px;
}

.th-comments-wrap .reply_and_edit {
  margin-top: 12px;
  margin-bottom: -0.46em;
}

.th-comments-wrap .reply_and_edit a {
  margin-right: 15px;
}

.th-comments-wrap .reply_and_edit a:last-child {
  margin-right: 0;
}

.th-comments-wrap .reply-btn {
  font-weight: 600;
  font-size: 14px;
  color: var(--theme-color2);
  display: inline-block;
  background: transparent;
  border-radius: 4px;
  text-transform: uppercase;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.th-comments-wrap .reply-btn i {
  color: var(--theme-color2);
  margin-right: 4px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.th-comments-wrap .reply-btn:hover {
  color: var(--theme-color);
}

.th-comments-wrap .reply-btn:hover i {
  color: var(--theme-color);
}

.th-comments-wrap .star-rating {
  font-size: 12px;
  margin-bottom: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 80px;
}

ul.comment-list .th-comment-item:last-child>.th-post-comment {
  border-bottom: none;
  padding-bottom: 0;
}

ul.comment-list .children .th-comment-item>.th-post-comment {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--th-border-color);
}

ul.comment-list:has(> .th-comment-item ~ .th-comment-item):first-child>.th-post-comment {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--th-border-color);
}

ul.comment-list .th-comment-item:has(.children) .th-post-comment {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--th-border-color);
}

.th-comments-wrap.th-comment-form {
  margin: 0;
}

/* Medium Large devices */
@media (max-width: 1399px) {

  .th-comment-form,
  .th-comments-wrap {
    padding: 40px 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .th-comments-wrap .children {
    margin-left: 40px;
  }
}

/* Medium devices */
@media (max-width: 991px) {

  .th-comment-form,
  .th-comments-wrap {
    padding: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {

  .th-comment-form,
  .th-comments-wrap {
    padding: 40px 20px;
  }

  .th-comments-wrap .th-post-comment {
    display: block;
  }

  .th-comments-wrap .star-rating {
    position: relative;
    top: 0;
    right: 0;
  }

  .th-comments-wrap .comment-top {
    display: block;
  }

  .th-comments-wrap .comment-avater {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .th-comments-wrap .children {
    margin-left: 40px;
  }

  .th-comments-wrap .children {
    margin-left: 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .th-comment-form {
    --blog-space-x: 20px;
  }
}

/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Hero 1 ---------------------------------- */
.hero-1-scroll-icon-bg-shape .hero-1-scroll-icon-wrap .shape-thumb .icon-btn {
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 42px;
  border-radius: 50%;
  background: var(--theme-color2);
  border: 0;
  color: var(--white-color);
  bottom: 1px;
  z-index: 5;
  left: 31px;
}

.hero-1-scroll-icon-bg-shape .hero-1-scroll-icon-wrap .shape-thumb .icon-btn:hover {
  background: var(--theme-color);
}

.th-hero-wrapper.hero-1 .swiper-pagination-bullets {
  position: absolute;
  top: 44%;
  left: auto;
  right: 62px;
  width: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1500px) {
  .th-hero-wrapper.hero-1 .swiper-pagination-bullets {
    right: 10px;
  }
}

@media (max-width: 1299px) {
  .th-hero-wrapper.hero-1 .swiper-pagination-bullets {
    display: none;
  }
}

.th-hero-wrapper.hero-1 .swiper-pagination-bullets::before {
  border: 1px solid var(--white-color);
}

@media (max-width: 1199px) {
  .th-hero-wrapper.hero-1 .swiper-pagination-bullets {
    display: none;
  }
}

.th-hero-wrapper.hero-1 .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 20px 0;
  --swiper-pagination-bullet-size: 10px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: var(--white-color);
}

.th-hero-wrapper.hero-1 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hero-title {
  font-size: 81px;
  font-weight: 600;
  line-height: 1.11;
  margin-top: -0.2em;
  color: #011c1a;
  font-family: var(--title-font);
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .hero-title {
    font-size: 77px;
  }
}

.hero-title .title1 {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
}

.hero-title .title2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.hero-title .title3 img {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.client-group-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  line-height: 1;
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .client-group-wrap {
    left: 310px;
  }
}

@media (max-width: 1299px) {
  .client-group-wrap {
    bottom: 2px;
    left: 280px;
  }
}

@media (max-width: 1199px) {
  .client-group-wrap {
    position: inherit;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .client-group-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .client-group-wrap {
    margin-top: 15px;
    gap: 5px;
  }
}

.client-group-wrap .thumb {
  /* Small devices */
}

@media (max-width: 767px) {
  .client-group-wrap .thumb {
    width: 85px;
  }
}

.hero-1 .hero-img {
  position: relative;
}

.hero-1 .hero-img .img-main {
  position: relative;
  max-width: 501px;
  margin-left: auto;
  background: var(--white-color);
  padding: 1px;
  border-radius: 0 100px 0 100px;
  margin-right: 18px;
}

.hero-1 .hero-img .img-main::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 18px;
  height: 100%;
  width: 100%;
  border-radius: 0 100px 0 100px;
  border: 3px solid var(--theme-color);
  z-index: -1;
}

.hero-1 .hero-img .img-main img {
  z-index: 2;
  border-radius: 0 100px 0 100px;
}

.hero-style1 .hero-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.hero-style1 .btn-group {
  margin-top: 25px;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .hero-1 .hero-title {
    font-size: 70px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-1 .hero-title {
    font-size: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-1 .hero-title {
    font-size: 54px;
    gap: 19px;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -webkit-flex-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-1 .hero-img {
    margin-top: 35px;
  }

  .hero-1 .hero-img .img-main {
    margin: auto;
  }

  .hero-style1 .sub-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style1 .client-group-wrap {
    margin-top: 5px;
  }

  .hero-1 .hero-title {
    font-size: 38px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-img {
    margin-right: 15px;
  }

  .hero-1 .hero-title {
    font-size: 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }

  .hero-style1 .sub-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media (max-width: 390px) {
  .hero-1 .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .client-group-wrap {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 330px) {
  .hero-title {
    font-size: 29px;
  }
}

/* Hero 2 --------------------------------------*/
.hero-style2 .client-group-wrap {
  position: inherit;
  left: 0;
  margin: 0;
  bottom: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero-style2 .btn-group {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 25px;
  /* Small devices */
}

@media (max-width: 767px) {
  .hero-style2 .btn-group {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero-style2 .btn-group .client-group-wrap__content {
  margin: 0;
  position: i;
}

.hero-style2 .hero-title {
  margin-bottom: 38px;
  font-weight: 800;
  color: var(--title-color);
  max-width: 690px;
  /* Extra large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1500px) {
  .hero-style2 .hero-title {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  .hero-style2 .hero-title {
    font-size: 66px;
    max-width: 566px;
  }
}

@media (max-width: 991px) {
  .hero-style2 .hero-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-style2 .hero-title {
    font-size: 45px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .hero-style2 .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 375px) {
  .hero-style2 .hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.hero-style2 .sub-title {
  margin-bottom: 20px;
}

/* Hero 3 -------------------------------------*/
.hero-style3 {
  padding: 180px 0;
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1399px) {
  .hero-style3 {
    padding: 160px 0;
  }
}

@media (max-width: 1299px) {
  .hero-style3 {
    padding: 130px 0;
  }
}

@media (max-width: 1199px) {
  .hero-style3 {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .hero-style3 {
    padding: 80px 0;
  }
}

.hero-style3 .sub-title {
  margin-bottom: 20px;
}

.hero-style3 .hero-title {
  margin-bottom: 21px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style3 .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 1199px) {
  .hero-style3 .hero-title {
    font-size: 58px;
  }
}

@media (max-width: 991px) {
  .hero-style3 .hero-title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style3 .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-style3 .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 450px) {
  .hero-style3 .hero-title {
    font-size: 35px;
  }
}

@media (max-width: 375px) {
  .hero-style3 .hero-title {
    font-size: 32px;
    line-height: 1;
  }
}

.hero-style3 .hero-text {
  max-width: 630px;
  color: #2c2c2c;
  margin-bottom: 41px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .hero-style3 .hero-text {
    max-width: 470px;
  }
}

@media (max-width: 991px) {
  .hero-style3 .hero-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px;
  }
}

.hero-style3 .client-group-wrap {
  position: static;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.hero-style3 .client-group-wrap .client-group-wrap__content {
  margin-top: -2px;
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style3 {
    padding: 90px 0 35px;
  }

  .hero-style3 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .hero-style3 .client-group-wrap {
    margin-top: 36px;
  }

  .hero-img .img-main {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 90px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-img .img-main {
    padding-bottom: 80px;
  }
}

.hero-style3 .hero-title .line {
  position: relative;
}

.hero-style3 .hero-title .line::after {
  content: '';
  height: 55px;
  width: 98%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQMAAAAWCAYAAADEvflXAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQ6SURBVHgB7ZlNbtRMEIar2lE+xLeIOQG+AXMDwhaEBAskxDkAiV12SCDEKUBILIAFsIUbDCfA3MAsQPzMdNPVdrWr204CYZg4k3qkaGz3JHF11/tWtQ2gKIqiKIqiKIqiKIqiKIqyDwhr4sXetRL+O1Py+dYWVHzsEMvC/yS/YPtxxiCchxEcuAr2wQGWiFDClHCuPmgYAQfjDl3jLH4efNlA8l1rbXK+WIjx79+a63svGziEfK2Ohd+8V2V1jJoBJ8N2sSwtFmUi1k6kaNwOuvaaFyN9tuOIVfxDTgga06T12S3OXeNvJFl46+BTeqNeDAZHkyMXgCQRw0QgI8wNEK0rybjCMcIFgH7MgT2HiDvJfE4JDGu3auGWPt7ygP9Z55ecg4byJLvsr/V5k+eVNFOZRzFvTpEpBTN48+jWx+7UL4AXdre47eTSRPZi5cmU4lw6P+7aRZDiu37vWQ0bwIv7Nyv6HDNHtFh2Zph0LtytpJ1JN7/hMBVQP9fhLDFHa91n7xDxfMwYxwxxXyPsEryPy/i4bBSeMaZqY+sNiu7bGNxxwfT7ItDF1gvXi1SKkrucKEIvvkG+HEFwfO+SPI5wj3nXmXWc6ZphP4ax2xSxtVrITCesG3du4di4hmM0btn8WBbNSTCVYAZxYjfQBTm2QTXukoKTIXY3sbNJhFuH74yZoxTqSJUxzvhksO34hleZvqPsRcnGIudbGkonulZwndh4G0VGErdHwkSOaiD/Ij7OqWicmWlGw+SubsQspVFy3hxHjGt7ZvA35NsWmWC8XRmIWUx+e95WKL8I4VMuAH0kiUbonnXt8Drz86SwzmMmkhhIL67cPEhYoTJ//VlPZS2pOA3MMokRw3EeozRIyl0qSgu0NefsKrrwYzEDuej7CLuK7TWJOtu2SEFzy5yLeVO2KMrBSHFFYcXqjFVXmatcVP54PmXTkFCMSWfrYxyYY6sTjq8JJunjW6Kb/65hrNQMSORb/5+Z0aLwXrq96dBCVbm4qVqPCbtdnLa9VlErq0KKasvnIRUcrsbSNLzI5txpcBVewnI+ZcMgxuKLD6Mzw4jbk84Mr9559m6lZvD6wY0Zmu3HJPC4l+72eoXFWsWtTB0qaNtnz1ay0xgYBm02g6B8ISNxWfOJWvbCLuopmwXBhsGxsVlcvv3k0ol4ZqAoU4I74FiBHW1xzQVpFuDsHMLWFj9w9V18+TafslGoGSjKipFmUTiciVZ9JrsKMoq4p5+AUagZKMoaOcwoQkfhH27S1oOfU1y5+3wOa0DNQFEmAhtFATjjrUdiEuGhu3lPJvEvOgk1A0WZOIeahOgk6K0AHBE1A0U5oUiT8G/uLvpXopUX9Kx7NVr/aRehZqAoG8brB7dmS+OqwsIudxG+o6gPMwg1A0U5BQwMAtwudRDg4NWVO0/3QFGU0wsZxNuHN3f5/BdXQmzhnURb9AAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  position: absolute;
  bottom: -43px;
  left: 18px;
  -webkit-animation: roundFill 3s linear infinite;
  animation: roundFill 3s linear infinite;
  z-index: -1;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-style3 .hero-title .line::after {
    left: 8px;
    -webkit-animation: roundFill 3s linear infinite;
    animation: roundFill 3s linear infinite;
    z-index: -1;
    background-size: 220px;
  }
}

@-webkit-keyframes roundFill {
  0% {
    width: 0;
  }

  60% {
    width: 100%;
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes roundFill {
  0% {
    width: 0;
  }

  60% {
    width: 100%;
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-img .logo-icon-hero-3 {
  z-index: 2;
  top: 51%;
  left: -89px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .hero-img .logo-icon-hero-3 {
    left: -7px;
  }
}

@media (max-width: 767px) {
  .hero-img .logo-icon-hero-3 {
    left: -40px;
  }
}

@media (max-width: 575px) {
  .hero-img .logo-icon-hero-3 {
    left: -10px;
  }
}

@media (max-width: 375px) {
  .hero-img .logo-icon-hero-3 {
    left: -1px;
  }
}

.hero-img .img-main {
  position: relative;
  border-radius: 24px;
  max-width: 524px;
}

.hero-img .img-main .hero_3_1-shape {
  position: absolute;
  position: absolute;
  left: -2px;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hero-img .img-main img {
  border-radius: 24px;
}

.logo-icon-wrap .logo-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: -3px;
  margin-bottom: 0;
  border: 1px solid #f7d3b0;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  line-height: 56px;
}

.logo-icon-wrap .logo-icon img {
  width: 100px;
}

.logo-icon-wrap__text {
  display: inline-block;
  min-height: 120px;
  min-width: 120px;
  border-radius: 50%;
  z-index: 1;
  font-size: 13px;
  font-family: var(--title-font);
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
  background: #a39280c0;
  border: 2px solid #f7d3b0;
  -webkit-backdrop-filter: blur(8.1px);
  backdrop-filter: blur(8.1px);
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  animation: spin 10s infinite alternate-reverse;
}

.logo-icon-wrap__text span {
  --rotate-letter: 18deg;
  min-height: 62px;
  position: absolute;
  min-width: 62px;
  left: 13px;
  top: -4px;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: rotate(var(--rotate-letter));
  -ms-transform: rotate(var(--rotate-letter));
  transform: rotate(var(--rotate-letter));
}

.logo-icon-wrap__text span.char2 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
  -ms-transform: rotate(calc(var(--rotate-letter) * 2));
  transform: rotate(calc(var(--rotate-letter) * 2));
}

.logo-icon-wrap__text span.char3 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
  -ms-transform: rotate(calc(var(--rotate-letter) * 3));
  transform: rotate(calc(var(--rotate-letter) * 3));
}

.logo-icon-wrap__text span.char4 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
  -ms-transform: rotate(calc(var(--rotate-letter) * 4));
  transform: rotate(calc(var(--rotate-letter) * 4));
}

.logo-icon-wrap__text span.char5 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
  -ms-transform: rotate(calc(var(--rotate-letter) * 5));
  transform: rotate(calc(var(--rotate-letter) * 5));
}

.logo-icon-wrap__text span.char6 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
  -ms-transform: rotate(calc(var(--rotate-letter) * 6));
  transform: rotate(calc(var(--rotate-letter) * 6));
}

.logo-icon-wrap__text span.char7 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
  -ms-transform: rotate(calc(var(--rotate-letter) * 7));
  transform: rotate(calc(var(--rotate-letter) * 7));
}

.logo-icon-wrap__text span.char8 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
  -ms-transform: rotate(calc(var(--rotate-letter) * 8));
  transform: rotate(calc(var(--rotate-letter) * 8));
}

.logo-icon-wrap__text span.char9 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
  -ms-transform: rotate(calc(var(--rotate-letter) * 9));
  transform: rotate(calc(var(--rotate-letter) * 9));
}

.logo-icon-wrap__text span.char10 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
  -ms-transform: rotate(calc(var(--rotate-letter) * 10));
  transform: rotate(calc(var(--rotate-letter) * 10));
}

.logo-icon-wrap__text span.char11 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
  -ms-transform: rotate(calc(var(--rotate-letter) * 11));
  transform: rotate(calc(var(--rotate-letter) * 11));
}

.logo-icon-wrap__text span.char12 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
  -ms-transform: rotate(calc(var(--rotate-letter) * 12));
  transform: rotate(calc(var(--rotate-letter) * 12));
}

.logo-icon-wrap__text span.char13 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
  -ms-transform: rotate(calc(var(--rotate-letter) * 13));
  transform: rotate(calc(var(--rotate-letter) * 13));
}

.logo-icon-wrap__text span.char14 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
  -ms-transform: rotate(calc(var(--rotate-letter) * 14));
  transform: rotate(calc(var(--rotate-letter) * 14));
}

.logo-icon-wrap__text span.char15 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
  -ms-transform: rotate(calc(var(--rotate-letter) * 15));
  transform: rotate(calc(var(--rotate-letter) * 15));
}

.logo-icon-wrap__text span.char16 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
  -ms-transform: rotate(calc(var(--rotate-letter) * 16));
  transform: rotate(calc(var(--rotate-letter) * 16));
}

.logo-icon-wrap__text span.char17 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
  -ms-transform: rotate(calc(var(--rotate-letter) * 17));
  transform: rotate(calc(var(--rotate-letter) * 17));
}

.logo-icon-wrap__text span.char18 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
  -ms-transform: rotate(calc(var(--rotate-letter) * 18));
  transform: rotate(calc(var(--rotate-letter) * 18));
}

.logo-icon-wrap__text span.char19 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
  -ms-transform: rotate(calc(var(--rotate-letter) * 19));
  transform: rotate(calc(var(--rotate-letter) * 19));
}

.logo-icon-wrap__text span.char20 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
  -ms-transform: rotate(calc(var(--rotate-letter) * 20));
  transform: rotate(calc(var(--rotate-letter) * 20));
}

.logo-icon-wrap__text span.char21 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
  -ms-transform: rotate(calc(var(--rotate-letter) * 21));
  transform: rotate(calc(var(--rotate-letter) * 21));
}

.logo-icon-wrap__text span.char22 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
  -ms-transform: rotate(calc(var(--rotate-letter) * 22));
  transform: rotate(calc(var(--rotate-letter) * 22));
}

.logo-icon-wrap__text span.char23 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
  -ms-transform: rotate(calc(var(--rotate-letter) * 23));
  transform: rotate(calc(var(--rotate-letter) * 23));
}

.logo-icon-wrap__text span.char24 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
  -ms-transform: rotate(calc(var(--rotate-letter) * 24));
  transform: rotate(calc(var(--rotate-letter) * 24));
}

.logo-icon-wrap__text span.char25 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
  -ms-transform: rotate(calc(var(--rotate-letter) * 25));
  transform: rotate(calc(var(--rotate-letter) * 25));
}

.logo-icon-wrap__text span.char26 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
  -ms-transform: rotate(calc(var(--rotate-letter) * 26));
  transform: rotate(calc(var(--rotate-letter) * 26));
}

.logo-icon-wrap__text span.char27 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
  -ms-transform: rotate(calc(var(--rotate-letter) * 27));
  transform: rotate(calc(var(--rotate-letter) * 27));
}

.logo-icon-wrap__text span.char28 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
  -ms-transform: rotate(calc(var(--rotate-letter) * 28));
  transform: rotate(calc(var(--rotate-letter) * 28));
}

.logo-icon-wrap__text span.char29 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
  -ms-transform: rotate(calc(var(--rotate-letter) * 29));
  transform: rotate(calc(var(--rotate-letter) * 29));
}

.logo-icon-wrap__text span.char30 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
  -ms-transform: rotate(calc(var(--rotate-letter) * 30));
  transform: rotate(calc(var(--rotate-letter) * 30));
}

.logo-icon-wrap__text span.char31 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
  -ms-transform: rotate(calc(var(--rotate-letter) * 31));
  transform: rotate(calc(var(--rotate-letter) * 31));
}

.logo-icon-wrap__text span.char32 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
  -ms-transform: rotate(calc(var(--rotate-letter) * 32));
  transform: rotate(calc(var(--rotate-letter) * 32));
}

.logo-icon-wrap__text span.char33 {
  -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
  -ms-transform: rotate(calc(var(--rotate-letter) * 33));
  transform: rotate(calc(var(--rotate-letter) * 33));
}

/*------------------- 4.9. Error  -------------------*/
.error-content {
  text-align: center;
}

.error-img {
  text-align: center;
  margin-bottom: 45px;
}

.error-title {
  margin-bottom: 20px;
}

.error-text {
  margin-bottom: 35px;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

/* Medium devices */
@media (max-width: 991px) {
  .error-title {
    margin-bottom: 15px;
  }

  .error-img {
    margin-bottom: 30px;
  }

  .error-text {
    margin-bottom: 25px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .error-title {
    margin-bottom: 10px;
  }
}

/*------------------- 4.00. Popup 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;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  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(--theme-color);
}

.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  -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: 65px;
}

.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 .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 .sidemenu-content select,
.sidemenu-wrapper .sidemenu-content input,
.sidemenu-wrapper .sidemenu-content .form-select,
.sidemenu-wrapper .sidemenu-content .form-control,
.sidemenu-wrapper .sidemenu-content textarea {
  background-color: var(--smoke-color2);
  border-radius: 27px;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper .info-box_icon {
  background-color: rgba(255, 156, 0, 0.15);
}

.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;
}

/*------------------- 4.00. Wocommerce  -------------------*/
.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 20px;
}

.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}

#woosq-popup .single-product .product .actions>div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.login-tab button.nav-link.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.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  -------------------*/
.th-product .actions .icon-btn {
  --btn-size: 40px;
  font-size: 14px;
  border-color: transparent;
  color: var(--white-color);
  border-radius: 99px;
  margin-bottom: 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
  background: var(--theme-color);
}

.th-product .actions .icon-btn:hover {
  color: var(--theme-color2);
  border-color: var(--theme-color);
}

.th-product .icon-btn {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-product:hover .icon-btn {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.th-product.list-view .actions .icon-btn {
  --btn-size: 36px;
  --btn-font-size: 14px;
  background-color: var(--theme-color2);
  color: var(--white-color);
  border: none;
}

.th-product.list-view .actions .icon-btn:hover {
  background-color: var(--title-color);
}

.mfp-content .container {
  position: relative;
}

.th-sort-bar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 15px;
}

.th-sort-bar .nav a.active {
  color: var(--theme-color);
}

.product-tab-style1 .th-btn.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.product-tab-style1 .th-btn.active::before {
  background: var(--theme-color);
}

.product-tab-style1 .th-btn.active::after {
  background: var(--theme-color);
}

.summary-content .actions .th-btn .btn-icon,
.product-about .actions .th-btn .btn-icon {
  padding: 10.5px 15px 10.5px 15px;
}

.summary-content .actions .icon-btn,
.product-about .actions .icon-btn {
  border-color: var(--theme-color2);
  background-color: var(--theme-color2);
  color: var(--white-color);
  border-radius: 99px;
}

.summary-content .actions .icon-btn:hover,
.product-about .actions .icon-btn:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}

.summary-content .th-social a,
.product-about .th-social a {
  --icon-size: 40px;
  line-height: 38px;
  font-size: 14px;
  border: 1px solid var(--th-border-color);
  border-radius: 0;
}

.summary-content .th-social a:hover,
.product-about .th-social a:hover {
  border-color: var(--theme-color);
}

.woocommerce-Reviews .th-post-comment {
  border-radius: 20px;
}

.woocommerce-Reviews .th-post-comment .text {
  margin-bottom: -0.5em;
}

.woocommerce-Reviews .th-comments-wrap {
  padding: 0;
  margin-right: 0 !important;
  box-shadow: none;
  border: 0;
}

.woocommerce-Reviews .th-comment-form {
  padding: 60px;
  background-color: var(--smoke-color2);
  box-shadow: none;
  margin-right: 0 !important;
  margin-top: 28px;
  margin-bottom: 40px;
}

.woocommerce-Reviews .th-comment-form input,
.woocommerce-Reviews .th-comment-form .form-control {
  background-color: var(--white-color);
}

.woocommerce-Reviews .th-comment-form .blog-inner-title {
  margin-bottom: 10px;
}

.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%;
  }
}

.woocommerce-Reviews .th-post-comment {
  border: 1px solid var(--th-border-color) !important;
  padding: 40px !important;
  box-shadow: 0px 4px 30px rgba(1, 15, 28, 0.06);
  margin: 12px;
  border-radius: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.woocommerce-Reviews .th-post-comment:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.woocommerce-Reviews .th-post-comment .name {
  margin-bottom: 3px;
}

.woocommerce-Reviews .th-post-comment .commented-on {
  margin-bottom: 12px;
}

/* Large devices */
@media (max-width: 1199px) {
  .woocommerce-Reviews .th-post-comment {
    padding: 30px !important;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .woocommerce-Reviews .th-comment-form {
    padding: 40px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .woocommerce-Reviews .th-comment-form {
    padding: 40px 20px;
  }
}

.product-details .th-comments-wrap {
  margin-top: 0;
}

/* Medium Large devices */
/* Medium Large devices */
/* Large devices */
/* Medium devices */
@media (max-width: 991px) {
  .th-sort-bar .row {
    --bs-gutter-x: 20px;
  }
}

/* Small devices */
/* Extra small devices */
/* Extra small devices */
/*------------------- 4.00. Cart  -------------------*/
.cart_table .actions>.th-btn {
  font-size: 16px;
  padding: 20px 28px;
  margin-right: 15px;
}

.cart_table .actions>.th-btn:last-child {
  margin-right: 0;
}

.cart_table .th-cart-coupon .th-btn {
  font-size: 16px;
  padding: 20px 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* Medium devices */
/* Small devices */
@media (max-width: 767px) {
  .cart_table td.actions>.th-btn {
    margin-top: 10px;
    margin-right: 0;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }

  .cart_table td.actions>.th-btn:last-child {
    margin-right: auto;
  }
}

/*------------------- 4.00. Checkout  -------------------*/
.woocommerce-checkout .form-group {
  margin-bottom: 0;
}

.woocommerce-checkout .form-control {
  margin-bottom: 0;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
  color: var(--body-color);
}

.woocommerce-form-login .form-control,
.woocommerce-form-coupon .form-control,
.woocommerce-checkout .form-control {
  margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

/* Small devices */
/*------------------- 4.00. Wishlist  -------------------*/
/* Medium devices */
/* Small devices */
/*------------------- 4.00. Contact  -------------------*/
/* Contact Page ---------------------------------- */
.contact-feature .media-body {
  margin-bottom: -0.4em;
}

.appointment-form-wrapper .contact-form {
  border-radius: 50px;
  padding: 50px;
  /* Small devices */
}

@media (max-width: 767px) {
  .appointment-form-wrapper .contact-form {
    border-radius: 20px;
  }
}

.quote-form-box.style-2 {
  border-radius: 30px;
}

.quote-form-box.style-2 .contact-form {
  max-width: 625px;
  border: 1px solid var(--th-border-color);
  border-radius: 0 30px 30px 0;
  background: var(--smoke-color);
}

.quote-form-box.style-2 .contact-form .form-title {
  margin-bottom: 28px;
}

.contact-form {
  border-radius: 16px;
  background-color: var(--theme-color2);
  padding: 40px;
  text-align: center;
  /* Medium devices */
  /* Extra small devices */
}

.contact-form .sec-title {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .contact-form {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .contact-form {
    padding: 40px 20px;
  }
}

/* Contact 1 ---------------------------------- */
.contact-form select,
.form-control,
textarea,
input {
  height: 56px;
}

.contact-from-1-wrap .contact-form select,
.contact-from-1-wrap .form-control,
input {
  height: 56px;
  border: 0;
}

.contact-form textarea.form-control,
textarea {
  height: 180px;
}

.contact-from-1-wrap .info-box {
  max-width: 270px;
  margin-bottom: 28px;
}

.contact-from-1-wrap .info-box_icon {
  background: var(--theme-color2);
  color: var(--white-color);
}

.contact-from-1-wrap .info-box .info-contnt {
  margin-top: -.35em;
}

.contact-from-1-wrap .info-box .info-contnt .footer-info-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--theme-color);
}

.info-box_icon i {
  -webkit-transition: .4s;
  transition: .4s;
}

.info-box:hover .info-box_icon i {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

/* Contact 2 ---------------------------------- */
.contact-form.style-2 {
  border: 1px solid var(--smoke-color2);
  max-width: 576px;
  background: #F5F5F517;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .contact-form.style-2 {
    background: #0D09093D;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

@media (max-width: 991px) {
  .contact-form.style-2 {
    margin: auto;
    margin-bottom: 200px;
  }
}

.contact-form.style-2 .form-group>i {
  color: var(--white-color);
}

.contact-form.style-2 select,
.contact-form.style-2 .form-control,
.contact-form.style-2 .form-select,
.contact-form.style-2 textarea,
.contact-form.style-2 input {
  background: transparent;
  color: var(--white-color);
}

.contact-form.style-2 select:focus,
.contact-form.style-2 .form-control:focus,
.contact-form.style-2 .form-select:focus,
.contact-form.style-2 textarea:focus,
.contact-form.style-2 input:focus {
  color: var(--white-color);
}

.contact-form.style-3 {
  background: var(--theme-color2);
}

.contact-form.style-3 select,
.contact-form.style-3 .form-control,
.contact-form.style-3 .form-select,
.contact-form.style-3 textarea,
.contact-form.style-3 input {
  /* background-color: var(--black-color2); */
  color: var(--black-color);
}

/* Contact 4 ---------------------------------- */
.contact-form.style-4 {
  background: var(--smoke-color2);
  padding: 60px;
  text-align: start;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .contact-form.style-4 {
    padding: 25px;
  }
}

.contact-form.style-4 .form-title {
  font-size: 30px;
  margin-top: -.35em;
}

.contact-form.style-4 textarea.form-control,
.contact-form.style-4 textarea {
  height: 150px;
}

.contact-icon-box-wrap.style-3 .info-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-icon-box-wrap.style-3 .info-contnt {
  margin-top: -.32em;
}

.contact-icon-box-wrap.style-3 .footer-info-title {
  margin-bottom: 10px;
}

/* Contact page ---------------------------------- */
.contact-icon-wrap .info-box {
  width: 24%;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .contact-icon-wrap .info-box {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .contact-icon-wrap .info-box {
    width: 100%;
  }
}

.contact-icon-wrap .info-box_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 50%;
}

.contact-icon-wrap .info-box_icon img {
  -webkit-transition: .4s;
  transition: .4s;
}

.contact-icon-wrap .info-contnt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contact-icon-wrap .footer-info-title {
  font-size: 22px;
  font-weight: 500;
}

.contact-icon-wrap .info-box:last-child {
  width: 27%;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .contact-icon-wrap .info-box:last-child {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .contact-icon-wrap .info-box:last-child {
    width: 100%;
  }
}

.contact-icon-wrap .info-box:hover .info-box_icon img {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.contact-icon-box-wrap.style-3 .footer-info-title {
  font-size: 22px;
  color: var(--white-color);
}

.contact-icon-box-wrap.style-3 .info-box_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  font-size: 25px;
  background: #12121287;
}

/*------------------- 4.00. About  -------------------*/
/* About 1 ---------------------------------- */
.about-feature .box-title {
  font-size: 18px;
  line-height: 26px;
  margin-top: -0.34em;
  margin-bottom: -0.34em;
}

/* About 2 ---------------------------------- */
.about-2-bottom .info-box {
  gap: 8px;
  max-width: 450px;
  margin-bottom: 15px;
}

.about-2-bottom .info-box:hover .info-box_icon img {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.about-2-bottom .info-box .info-box_icon {
  width: 80px;
  background: var(--theme-color);
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.about-2-bottom .info-box .info-box_icon img {
  -webkit-transition: .4s;
  transition: .4s;
}

.about-2-bottom .info-box .info-contnt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.about-2-bottom .info-box .info-contnt .box-title {
  font-size: 30px;
  margin-bottom: 7px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .about-2-bottom .info-box .info-contnt .box-title {
    font-size: 24px;
  }
}

/* About 3 ---------------------------------- */
.about-img-box3__big {
  border-radius: 24px;
  margin-bottom: 18px;
}

.about-img-box3__big img {
  border-radius: 24px;
}

.about-img-box3__img-small {
  border-radius: 100px 24px 100px 100px;
}

.about-img-box3__img-small img {
  border-radius: 100px 24px 100px 100px;
}

.about-img-box3__img2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.about-img-box3__counter {
  width: 280px;
  height: 274px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 20px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-img-box3__counter {
    width: inherit;
    height: inherit;
  }
}

.about-img-box3__counter h1 {
  color: var(--white-color);
  font-size: 70px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .about-img-box3__counter h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .about-img-box3__counter h1 {
    font-size: 30px;
  }
}

.about-img-box3__counter h1 .counter-number {
  font-size: 84px;
  padding-right: 6px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .about-img-box3__counter h1 .counter-number {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .about-img-box3__counter h1 .counter-number {
    font-size: 40px;
  }
}

.about-img-box3__counter .box-title {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 500;
  /* Small devices */
}

@media (max-width: 767px) {
  .about-img-box3__counter .box-title {
    font-size: 20px;
  }
}

.about-2-bottom.style-2 .info-box_icon {
  background: var(--theme-color2);
}

/*------------------- 4.00. Team  -------------------*/
/*team 1 ---------------------------------- */
.team-1-card-wrap .swiper-slide {
  height: unset;
}

.team-1-card-wrap .slider-arrow {
  background: var(--white-color);
  color: var(--title-color2);
  /* Large devices */
}

.team-1-card-wrap .slider-arrow:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

@media (max-width: 1199px) {
  .team-1-card-wrap .slider-arrow {
    display: none;
  }
}

.team-1-card-wrap .slider-arrow.slider-prev {
  left: -28px;
}

.team-1-card-wrap .slider-arrow.slider-next {
  left: auto;
  right: 14%;
}

@media (max-width: 1850px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 17%;
  }
}

@media (max-width: 1770px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 20%;
  }
}

@media (max-width: 1870px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 23%;
  }
}

@media (max-width: 1630px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 25%;
  }
}

@media (max-width: 1560px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 28%;
  }
}

@media (max-width: 1470px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 30%;
  }
}

@media (max-width: 1370px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 32%;
  }
}

.team-card .box-title {
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--white-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.team-card .team-content-hover .box-title a:hover {
  color: var(--white-color);
  text-shadow: -0.3px -0.3px 0 white, 0.3px 0.3px 0 white;
}

.team-card .team-content-hover .team-social .th-social a {
  width: 0;
  height: 0;
  background: transparent;
  border: 0;
  color: var(--white-color);
  line-height: 1;
  padding: 0 12px;
}

.team-card .team-content-hover .team-social .th-social a::hover {
  color: var(--theme-color2);
}

.team-card .team-content-hover .team-social .th-social {
  margin-top: 8px;
}

.team-card.style-2 .team-content .box-title:hover a {
  color: var(--theme-color);
}

/* Team 2 ---------------------------------- */
.team-2-sec-title .title-area {
  padding-right: 25px;
}

.team-2-sec-title .title-area .sec-text {
  margin-bottom: 13px;
}

.team-card.style-2 {
  background: var(--white-color);
  padding: 15px 15px 0 15px;
  -webkit-transition: .4s;
  transition: .4s;
}

.team-card.style-2 .team-img {
  border-radius: 16px;
  height: auto;
}

.team-card.style-2 .team-img img {
  border-radius: 16px;
}

.team-card.style-2 .team-content {
  position: static;
  background: transparent;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 32px 15px;
  /* Small devices */
}

@media (max-width: 767px) {
  .team-card.style-2 .team-content {
    padding: 28px 5px;
  }
}

.team-card.style-2 .team-content .box-title {
  color: var(--title-color);
  font-size: 24px;
}

.team-card.style-2 .team-content .team-desig {
  color: var(--body-color);
  margin-bottom: 22px;
  -webkit-transition: .4s;
  transition: .4s;
}

.team-card.style-2 .team-content .th-social a {
  --icon-size: 40px;
  border: 0;
  background: var(--smoke-color2);
  border-radius: 50%;
  font-size: 14px;
  -webkit-transition: .4s;
  transition: .4s;
  color: var(--theme-color);
}

.team-card.style-2:hover {
  background: var(--theme-color2);
}

.team-card.style-2:hover:before {
  display: none;
}

.team-card.style-2:hover .team-content .box-title a {
  color: var(--white-color);
}

.team-card.style-2:hover .team-content .team-desig {
  color: var(--white-color);
}

.team-card.style-2:hover .th-social a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

/* Team Details ---------------------------------- */
.team-details .th-social {
  width: 100%;
  text-align: end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .team-details .th-social {
    text-align: start;
  }
}

.team-details .th-social a {
  --icon-size: 40px;
  border-radius: 100%;
  color: var(--title-color);
  border: 0;
  box-shadow: none;
  background-color: var(--white-color);
}

.team-details .th-social a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.team-about .th-btn {
  padding: 19.5px 38.9px;
}

.team-contact-form .form-title {
  margin-top: -0.3em;
  margin-bottom: 25px;
}

.contact-form.team-details {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  margin-top: 10px;
  text-align: start;
}

.contact-form.team-details .form-control {
  background: var(--smoke-color2);
}

.contact-form.team-details .form-select,
.contact-form.team-details select {
  background: var(--smoke-color2);
}

.circle-top .box-title {
  font-size: 36px;
  margin-bottom: 5px;
  /* Small devices */
}

@media (max-width: 767px) {
  .circle-top .box-title {
    font-size: 26px;
  }
}

.circular-progress .box-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  margin-bottom: -0.3em;
  margin-top: 13px;
}

@media (max-width: 1299px) {
  .circular-progress .box-title {
    font-size: 14px;
  }
}

/*------------------- 4.00. Testimonial  -------------------*/
/* Testimonial Card ---------------------------------- */
@media (max-width: 991px) {
  .testi-block .box-title {
    font-size: 22px;
  }
}

.testi-block-top .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.testi-block-top .content .box-desig {
  margin: 0;
  line-height: 1;
  margin-bottom: 11px;
}

.testi-block-top .content .box-title {
  line-height: 1;
  margin-bottom: 11px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .testi-block-top .content .box-title {
    font-size: 20px;
  }
}

/* Testimonial Card  2 ---------------------------------- */
/**======= No Active Slider  style */
.testi-block.style-2 {
  padding: 0;
  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;
  border-radius: 24px;
  border-bottom: 6px solid var(--theme-color);
  box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.06);
  -webkit-transition: .4s;
  transition: .4s;
  padding: 30px 30px 24px;
  gap: 25px;
  /* Small devices */
}

@media (max-width: 767px) {
  .testi-block.style-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.testi-block.style-2 .content-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.testi-block.style-2 .content-wrapper .testi-block-top {
  margin: 0;
  display: block;
}

.testi-block.style-2 .content-wrapper .box-text {
  margin-bottom: 20px;
}

.testi-block.style-2 .testi-icon-2-bottom {
  width: 111px;
  bottom: 0px;
  right: 0px;
  text-align: center;
  line-height: 91px;
  background: var(--smoke-color2);
  border-radius: 50px 0 20px 0;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: -1;
}

.testi-block.style-2 .box-img2 {
  height: 200px;
  position: relative;
  /* Small devices */
}

@media (max-width: 767px) {
  .testi-block.style-2 .box-img2 {
    width: 100%;
    height: auto;
  }
}

.testi-block.style-2 .box-img2:before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color2);
  top: 0;
  content: "";
  z-index: 1;
  opacity: 0.7;
  border-radius: 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.testi-block.style-2 .box-img2 img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.testi-block.style-2:hover .box-img2::before {
  opacity: 0;
}

/* Testimonial Card  3 ---------------------------------- */
.testi-block.style-3 {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.testi-block.style-3 .box-text {
  margin-bottom: 35px;
}

.testi-block.style-3 .testi-block-top .content .box-title {
  color: var(--white-color);
}

.testi-3-slider-wrapper .slider-arrow {
  background: #1E1E1E;
  border: 1px solid #3E3D3D;
  /* Extra small devices */
}

.testi-3-slider-wrapper .slider-arrow:hover {
  background: var(--theme-color);
}

@media (max-width: 575px) {
  .testi-3-slider-wrapper .slider-arrow {
    display: none;
  }
}

/* Testimonial Inner ---------------------------------- */
.testi-card-slide .icon-box .slider-arrow {
  --icon-size: 46px;
  border: none;
  background-color: var(--white-color);
  color: var(--theme-color);
}

.testi-card-slide .icon-box .slider-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

/* Testimonial Box ---------------------------------- */
/* Medium devices */
/* Small devices */
/* Extra small devices */
/* Testimonial Grid ---------------------------------- */
@media (max-width: 1399px) {
  .testi-grid-area .slider-arrow {
    --pos-x: 50px;
  }
}

@media (max-width: 1299px) {
  .testi-grid-area .slider-arrow {
    display: block;
    --pos-x: 40px;
  }
}

@media (max-width: 1199px) {
  .testi-grid-area .slider-arrow {
    display: none;
  }
}

/*------------------- 4.00. Counter  -------------------*/
/* Counter 1 ---------------------------------- */
.counter-card .box-text {
  font-size: 16px;
  color: var(--white-color);
}

.counter-card .media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Medium devices */
/* Counter  2 ---------------------------------- */
.counter-card-wrap.style-2 {
  border-radius: 0;
  background: transparent;
}

/*------------------- 4.00. Blog  -------------------*/
/* Blog Card ---------------------------------- */
.blog-card {
  border-radius: 24px;
  border: 1px solid var(--theme-color);
  border-bottom: 6px solid var(--theme-color);
  -webkit-transition: .4s;
  transition: .4s;
  background-color: var(--white-color);
}

.blog-card .blog-img {
  border-radius: 24px;
  overflow: hidden;
}

.blog-card .blog-content {
  padding-top: 30px;
  position: relative;
  z-index: 3;
  padding: 28px;
  border-radius: 0 0 24px 24px;
  padding-bottom: 10px;
}

.blog-card .box-title {
  margin-bottom: 12px;
}

.blog-card .box-title a {
  /* background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color)); */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.blog-card .box-title a:hover {
  background-size: 0% 0px;
}

.blog-card .blog-img {
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-card .blog-meta {
  margin: -0.4em 0 15px 0;
}

.blog-card .blog-meta span>i,
.blog-card .blog-meta a>i {
  /* color: var(--theme-color); */
}

.blog-card:hover {
  /* border-color: var(--theme-color); */
}

.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.blog-card:hover i {
  /* color: var(--theme-color); */
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-card .box-title {
    font-size: 22px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-card .box-title {
    font-size: 24px;
  }
}

@media (max-width: 410px) {
  .blog-card .box-title {
    font-size: 22px;
  }
}

@media (max-width: 350px) {
  .blog-card .box-title {
    font-size: 20px;
  }
}

/* Blog Box ---------------------------------- */
/* Blog Box 2 ---------------------------------- */
.blog-card.style-2 {
  border-radius: 30px;
  background-color: var(--white-color);
  padding: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
  border: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding-bottom: 10px;
}

.blog-card.style-2 .blog-content {
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 0;
}

.blog-card.style-2:hover {
  background: var(--theme-color2);
}

.blog-card.style-2:hover .blog-content {
  background: transparent;
}

.blog-card.style-2:hover .blog-content .blog-meta a {
  color: var(--white-color);
}

.blog-card.style-2:hover .blog-content .box-title {
  color: var(--white-color);
}

/* Blog Box 3---------------------------------- */
.blog-card.style-2.style-3 {
  padding: 28px;
  padding-bottom: 25px;
  background: var(--theme-color2);
  border: 1px solid var(--theme-color2);
  border-bottom: 6px solid var(--dark-color);
}

.blog-card.style-2.style-3:hover {
  border: 1px solid var(--theme-color);
  border-bottom: 6px solid var(--theme-color);
}

.blog-card.style-2.style-3 .blog-img {
  border-radius: 16px;
}

.blog-card.style-2.style-3 .blog-img img {
  border-radius: 16px;
}

.blog-card.style-2.style-3 .blog-content {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.blog-card.style-2.style-3 .box-title {
  color: var(--white-color);
  margin-bottom: 0;
}

/* Blog Box ---------------------------------- */
.blog-box .blog-img {
  width: 208px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-box .blog-img img {
  border-radius: inherit;
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-box .blog-content {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-box .box-title {
  font-size: 22px;
  margin-bottom: 14px;
}

.blog-box .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.blog-box .box-title a:hover {
  background-size: 100% 2px;
}

.blog-box .blog-meta {
  margin: -0.3em 0 18px 0;
}

.blog-box .blog-meta span>i,
.blog-box .blog-meta a>i {
  color: var(--theme-color);
}

.blog-box .th-btn {
  margin-top: 30px;
  padding: 16px 25px;
  min-width: 152px;
  background-color: transparent;
  border: 1px solid var(--th-border-color);
  color: var(--theme-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-box .th-btn::before {
  background-color: var(--theme-color);
}

.blog-box .th-btn:hover {
  color: var(--white-color);
  border-color: transparent;
}

.blog-box:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-box .blog-img {
    width: 400px;
  }

  .blog-box .blog-img img {
    max-height: 250px;
    object-fit: cover;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-box .blog-img {
    width: 270px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-box .blog-img {
    width: 100%;
  }

  .blog-box .box-title {
    font-size: 24px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .blog-box .box-title {
    font-size: 22px;
  }
}

/* Blog Grid ---------------------------------- */
.blog-grid .blog-img {
  border-radius: 20px;
  overflow: hidden;
}

.blog-grid .blog-content {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 30px;
  margin: -70px 20px 0 20px;
  position: relative;
  z-index: 3;
}

.blog-grid .box-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.blog-grid .box-title a {
  background-image: -webkit-linear-gradient(right, var(--theme-color), var(--theme-color));
  background-image: linear-gradient(to left, var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.blog-grid .box-title a:hover {
  background-size: 100% 2px;
}

.blog-grid .blog-img {
  overflow: hidden;
}

.blog-grid .blog-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-grid .blog-meta {
  margin: -0.4em 0 18px 0;
}

.blog-grid .blog-meta span>i,
.blog-grid .blog-meta a>i {
  color: var(--theme-color);
}

.blog-grid:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

/* Medium devices */
@media (max-width: 991px) {
  .blog-grid .blog-content {
    padding: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-grid .blog-content {
    padding: 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .blog-grid .blog-img {
    border-radius: 10px;
  }

  .blog-grid .blog-content {
    padding: 20px;
    border-radius: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*------------------- 4.00. Brand  -------------------*/
/* Brand 1 ---------------------------------- */
.brand-box {
  margin: 3px;
  text-align: center;
}

.brand-box img {
  padding: 0 5px;
  width: 105px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.brand-box:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

/* Brand 2 ---------------------------------- */
.brand-bg-wrap.style-2 {
  margin-top: 0;
}

/* Brand 3 ---------------------------------- */
.brand-3-sec {
  padding: 10px 0;
}

.brand-3-sec .brand-box img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.brand-1-top .box-title {
  font-size: 36px;
  /* Small devices */
}

@media (max-width: 767px) {
  .brand-1-top .box-title {
    font-size: 24px;
  }
}

/*------------------- 4.00. Simple Sections  -------------------*/
.checklist.style-2 li>i {
  color: var(--theme-color2);
}

.th-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.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;
}

.filter-menu .th-btn {
  border-radius: 5px;
  padding: 15px 30px;
  background-color: transparent;
  color: var(--body-color);
  border: 1px solid var(--th-border-color);
  min-width: auto;
  /* Medium devices */
}

.filter-menu .th-btn:before {
  background-color: var(--theme-color);
}

.filter-menu .th-btn:hover,
.filter-menu .th-btn.active {
  border-color: var(--theme-color);
  color: var(--white-color);
}

.filter-menu .th-btn:hover:before,
.filter-menu .th-btn.active:before {
  border-radius: 3px;
}

@media (max-width: 991px) {
  .filter-menu .th-btn {
    padding: 13px 20px;
  }
}

/* Large devices */
/*------------------- 4.00. Why -------------------*/
/* Why 1 ---------------------------------- */
.choose-card:hover .icon img {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.choose-card .icon {
  width: 80px;
  background: var(--theme-color2);
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
  margin-left: auto;
  margin-bottom: 22px;
  /* Large devices */
}

.choose-card .icon img {
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 1199px) {
  .choose-card .icon {
    margin-left: 0;
  }
}

.choose-card .box-title {
  font-size: 30px;
  color: var(--white-color);
  margin-bottom: 5px;
  /* Small devices */
}

@media (max-width: 767px) {
  .choose-card .box-title {
    font-size: 24px;
  }
}

.choose-card-thumb {
  max-width: 574px;
  margin: auto;
  border-radius: 24px;
  padding: 10px 1px;
  background: var(--theme-color);
  position: relative;
}

.choose-card-thumb .choose-card-thumb-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.choose-card-thumb img {
  border-radius: 20px;
}

.order-xl-0:last-child .choose-card .icon {
  margin-left: 0;
}

/* Extra small devices */
@media (max-width: 575px) {
  .choose-card .icon {
    margin-left: auto;
    margin-right: auto;
  }

  .order-xl-0:last-child .choose-card .icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------- 4.00. Faq -------------------*/
/* Faq 1 ---------------------------------- */
/*------------------- 4.00. Service -------------------*/
/* Service Card ---------------------------------- */
.service-card:hover .box-icon {
  background: var(--theme-color);
}

.service-card:hover .box-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-card:hover .box-content .box-title {
  color: var(--white-color);
}

.service-card:hover .box-content .box-text {
  color: var(--white-color);
}

.service-card:hover .link-btn {
  color: var(--white-color);
}

.service-card:hover .link-btn:hover {
  color: var(--theme-color);
}

.service-card .box-icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: var(--white-color);
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card .box-icon img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.service-card .box-content .box-title {
  margin-bottom: 15px;
}

.service-card .box-content .box-text {
  margin-bottom: 15px;
  -webkit-transition: .4s;
  transition: .4s;
}

/* Service Card  2 ---------------------------------- */
.service-card.style-2 {
  background: var(--smoke-color2);
  text-align: center;
  padding: 30px;
  padding-bottom: 22px;
}

.service-card.style-2:hover .box-icon {
  background: var(--theme-color);
}

.service-card.style-2:hover .link-btn i {
  opacity: 1;
}

.service-card.style-2 .box-icon {
  margin-left: auto;
  margin-right: auto;
  background: var(--theme-color2);
}

.service-card.style-2 .link-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-card.style-2 .box-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* Service Card  3 ---------------------------------- */
.service-3-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
  height: 338px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .service-3-item {
    height: 365px;
  }
}

@media (max-width: 1199px) {
  .service-3-item {
    height: 315px;
  }
}

@media (max-width: 991px) {
  .service-3-item {
    height: 338px;
  }
}

.service-3-item__content {
  width: 50%;
  background: #242C2E;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  gap: 15px;
  overflow: visible;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-3-item__thumb {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 24px;
  height: 100%;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-3-item__thumb img {
  border-radius: 24px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service-3-item__top-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 0 24px 0 32px;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-3-item__content .box-count {
  font-size: 73px;
  font-weight: 600;
  color: #505658;
  line-height: 1;
  margin-top: -29px;
  margin-bottom: 30px;
}

.service-3-item .box-title {
  color: var(--white-color);
  margin-bottom: -6px;
  max-width: 100%;
  line-height: 1.4;
  word-break: break-word;
  -webkit-transition: inherit;
  transition: inherit;
}

.service-3-item__hover {
  visibility: hidden;
  opacity: 0;
  width: 200%;
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.service-3-item__hover .sec-text {
  margin-bottom: 29px;
  color: var(--white-color);
  -webkit-transition: .2s;
  transition: .2s;
  text-wrap-style: balance;
}

.service-3-item.active {
  width: 104%;
}

.service-3-item.active .service-3-item__thumb {
  width: 0;
  opacity: 0;
}

.service-3-item.active .service-3-item__content {
  width: 100%;
  /* background: var(--theme-color2); */
}

.service-3-item.active .service-3-item__content .box-count {
  color: var(--white-color);
}

.service-3-item.active .box-title {
  opacity: 0;
  overflow: hidden;
}

.service-3-item.active .service-3-item__top-icon {
  background: var(--theme-color);
}

.service-3-item.active .service-3-item__hover {
  visibility: visible;
  opacity: 1;
  width: 100%;
  max-height: 500px;
}

.service-3-item.active .service-3-item__hover .box-title {
  color: var(--white-color);
  opacity: 1;
  max-width: 100%;
  margin-bottom: 11px;
}

.service-3-item.active .service-3-item__hover .box-count {
  color: var(--white-color);
  margin-bottom: 30px;
}

.service-3-item.active .service-3-item__hover .th-btn {
  -webkit-transition: inherit;
  transition: inherit;
}

.service-3-item.active .service-3-item__hover .sec-text {
  text-wrap-mode: wrap;
}

/* Small devices */
@media (max-width: 767px) {
  .service-3-item {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    overflow: hidden;
    height: 360px;
    border-radius: 24px;
  }

  /* Quando active no mobile: altura livre para o conteúdo respirar */
  .service-3-item.active {
    height: auto !important;
    overflow: visible;
    width: 100%;
  }

  .service-3-item__content {
    width: 100%;
    height: auto;
  }

  .service-3-item__thumb {
    height: 157px;
    overflow: hidden;
  }

  /* Thumb some quando active para dar espaço ao conteúdo */
  .service-3-item.active .service-3-item__thumb {
    height: 0;
    overflow: hidden;
    opacity: 0;
    flex: 0;
  }

  .service-3-item.active .service-3-item__content {
    width: 100%;
    height: auto !important;
    background: var(--theme-color);
    padding-bottom: 28px;
  }

  /* Hover expandido com scroll suave */
  .service-3-item.active .service-3-item__hover {
    max-height: none !important;
    overflow: visible;
  }

  .service-3-item__content .box-count {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .service-3-item.active .service-3-item__hover .box-title {
    margin-bottom: 20px;
  }

  .service-3-item__top-icon {
    height: 80px;
    width: 60px;
    line-height: 90px;
  }

  .service-3-item__top-icon img {
    width: 35px;
  }
}

/* Remove as alturas fixas para breakpoints menores —
   agora tudo é auto quando active */
@media (max-width: 460px) {
  .service-3-item {
    height: 370px;
  }

  .service-3-item.active {
    height: auto !important;
  }

  .service-3-item.active .service-3-item__content {
    height: auto !important;
  }
}

@media (max-width: 390px) {
  .service-3-item {
    height: 390px;
  }

  .service-3-item.active {
    height: auto !important;
  }

  .service-3-item.active .service-3-item__content {
    height: auto !important;
  }
}

@media (max-width: 370px) {
  .service-3-item {
    height: 410px;
  }

  .service-3-item.active {
    height: auto !important;
  }

  .service-3-item.active .service-3-item__content {
    height: auto !important;
  }
}

@media (max-width: 320px) {
  .service-3-item {
    height: 440px;
  }

  .service-3-item.active {
    height: auto !important;
  }

  .service-3-item.active .service-3-item__content {
    height: auto !important;
  }
}

/* Service Details ---------------------------------- */
.service-feature .box-icon {
  background: var(--smoke-color2);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 99px;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
}

.service-feature .box-icon:after {
  content: '';
  position: absolute;
  inset: 10px;
  background-color: var(--theme-color);
  border-radius: inherit;
  z-index: -1;
}

.service-feature .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: -0.3em;
}

/*------------------- 4.00. MegaMenu -------------------*/
/*Mega menu area*********************/
.main-menu ul.mega-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  right: 0 !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  max-height: 500px;
  overflow: overlay;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: var(--white-color);
  padding: 20px 10px;
  /* Medium Large devices */
  /* Large devices */
  /***scroll-bar***/
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1599px) {
  .main-menu ul.mega-menu {
    width: 1170px;
    left: -10rem !important;
  }
}

@media (max-width: 1399px) {
  .main-menu ul.mega-menu {
    left: -15rem !important;
  }
}

@media (max-width: 1199px) {
  .main-menu ul.mega-menu {
    left: -18rem !important;
  }
}

.main-menu ul.mega-menu li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.mega-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 0px;
}

.main-menu ul.mega-menu::-webkit-scrollbar-track {
  background: white;
  box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
}

.main-menu ul.mega-menu::-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;
}

.main-menu ul.mega-menu li li {
  padding: 2px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: capitalize;
}

.main-menu ul.mega-menu>li>a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after,
.main-menu ul.mega-menu>li>a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu>li>a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu>li>a:hover {
  padding-left: 0;
}

@media (max-width: 1299px) {
  .main-menu ul.mega-menu {
    width: 1060px;
  }
}

@media (max-width: 1199px) {
  .main-menu ul.mega-menu {
    width: 870px;
  }
}

@media (max-width: 991px) {
  .main-menu ul.mega-menu {
    padding: 10px 0 !important;
  }
}

.main-menu ul.mega-menu .th-mobile-menu ul li ul li {
  padding-left: 0px;
}

.main-menu ul.mega-menu .th-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: none;
}

.mega-menu-box {
  box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  /* Medium devices */
}

.mega-menu-box .mega-menu-img {
  position: relative;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.mega-menu-box .mega-menu-img:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.mega-menu-box .mega-menu-img img {
  -webkit-transition: -webkit-filter 500ms ease;
  transition: -webkit-filter 500ms ease;
  transition: filter 500ms ease;
  transition: filter 500ms ease, -webkit-filter 500ms ease;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.mega-menu-box .mega-menu-img .btn-wrap {
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: opacity 600ms linear, -webkit-transform 500ms ease;
  transition: opacity 600ms linear, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 600ms linear;
  transition: transform 500ms ease, opacity 600ms linear, -webkit-transform 500ms ease;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  opacity: 0;
}

.mega-menu-box .mega-menu-img .btn-wrap .th-btn {
  padding: 6px 18px;
  font-size: 14px;
  color: var(--white-color);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.mega-menu-box:hover .btn-wrap {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}

.mega-menu-box:hover .mega-menu-img img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.mega-menu-box .mega-menu-title {
  margin-bottom: 0;
  text-align: center;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0;
}

.mega-menu-box .mega-menu-title span {
  color: var(--theme-color);
  text-transform: capitalize;
  font-size: 16px;
  margin-right: 5px;
}

.mega-menu-box .mega-menu-title span:after {
  display: none;
}

.mega-menu-box .mega-menu-title a {
  color: var(--black-color2);
  line-height: normal;
}

.mega-menu-box .mega-menu-title a:after {
  display: none;
}

.mega-menu-box .mega-menu-title a:hover {
  color: var(--title-color);
}

@media (max-width: 991px) {
  .mega-menu-box .mega-menu-title a {
    padding: 0;
  }

  .mega-menu-box .mega-menu-title a:before {
    display: none;
  }
}

/*Mega menu area end*********************/
/*------------------- 4.00. Process -------------------*/
/* Process box 1---------------------------------- */
.process-bottom-item__content .box-title {
  font-size: 30px;
  margin-bottom: 7px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .process-bottom-item__content .box-title {
    font-size: 24px;
  }
}

/* Process box 2---------------------------------- */
.process-box.style-2 {
  text-align: center;
  padding: 0 22px;
  position: relative;
  -webkit-transition: .4s;
  transition: .4s;
}

.process-box.style-2:before {
  width: 300px;
  position: absolute;
  content: '';
  border-top: 2px dashed var(--theme-color2);
  top: 104px;
  right: -190px;
  z-index: -1;
  /* Medium devices */
}

@media (max-width: 991px) {
  .process-box.style-2:before {
    display: none;
  }
}

.process-box.style-2 .box-icon {
  height: 220px;
  width: 220px;
  line-height: 200px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 100%;
  margin: 0 auto 30px;
  position: relative;
  border: 11px solid var(--white-color);
}

.process-box.style-2 .box-icon::before {
  content: '';
  width: 220px;
  height: 220px;
  position: absolute;
  top: -10px;
  left: -10px;
  border: 2px dashed var(--theme-color);
  border-radius: inherit;
}

.process-box.style-2 .box-icon .number {
  position: absolute;
  display: block;
  right: 0;
  width: 58px;
  height: 58px;
  background: var(--theme-color);
  border-radius: 50%;
  line-height: 58px;
  color: var(--white-color);
  font-size: 30px;
  border: 2px solid transparent;
  font-weight: 500;
  -webkit-transition: .4s;
  transition: .4s;
  display: block;
}

.process-box.style-2 .box-title {
  font-size: 30px;
  margin-bottom: 12px;
  /* Small devices */
}

@media (max-width: 767px) {
  .process-box.style-2 .box-title {
    font-size: 24px;
  }
}

.process-box.style-2:hover .box-icon .number {
  background: var(--theme-color2);
  border-color: var(--white-color);
}

.process-box.style-2:hover .box-icon::before {
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}

.col-xl-4:last-child .process-box.style-2:before {
  display: none;
}

.process-box.style-2:hover .box-icon img {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

/* Process Card 3 ---------------------------------- */
.process-box.style-2.theme-3:before {
  z-index: 1;
  border-top: 2px dashed var(--theme-color2);
}

.process-box.style-2.theme-3 .box-icon {
  z-index: 2;
  border: 10px solid #242c2e;
  background: var(--theme-color2);
}

.process-box.style-2.theme-3 .box-icon::before {
  border-color: var(--theme-color2);
}

.process-box.style-2.theme-3 .box-icon .number {
  background: linear-gradient(120deg,
      #c9a96e 0%,
      #e8d3a3 30%,
      #ffffff 50%,
      #e8d3a3 70%,
      #c9a96e 100%);

  color: var(--theme-color2);

  background-size: 250% 100%;
  animation: goldFlashMove 4s linear infinite;
}

@keyframes goldFlashMove {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.process-box.style-2.theme-3:hover .box-icon .number {
  background: var(--theme-color2);
  color: #ededed;
}

/*------------------- 4.00. Process -------------------*/
/* Price Sec1 ---------------------------------- */
.price-sec-1.before-none::before {
  display: none;
}

.price-card.style-2 {
  border: 1px solid var(--theme-color2);
}

.price-card:hover .box-text {
  color: var(--white-color);
}

.price-card:hover .th-btn {
  background: var(--theme-color);
}

.price-card:hover .price-card_content .th-btn {
  background: var(--theme-color2);
}

.price-card .th-btn {
  background: var(--theme-color2);
}

.price-card .box-text {
  margin-bottom: 11px;
  -webkit-transition: .4s;
  transition: .4s;
}

.price-card_content .th-btn {
  margin-top: 30px;
}

/* switch animation Button ---------------*/
.pricing-tabs.style2 .switch-area .toggler {
  color: var(--white-color);
}

.pricing-tabs.style2 .switch-area .toggle {
  height: 36px;
}

.pricing-tabs.style2 .switch-area .switch {
  left: 3px;
  top: 3px;
  bottom: 3px;
  right: 45%;
}

.pricing-tabs.style2 .switch-area .check:checked~.switch {
  right: 3px;
  left: 47%;
}

/* Price 02 ---------------*/
.price-sec-1.before-none::before {
  display: none;
}

.price-card.style-2 {
  border: 1px solid var(--theme-color2);
}

/*------------------- 4.00. Feature -------------------*/
/* Feature List ---------------------------------- */
.feature-item .box-title {
  -webkit-transition: .4s;
  transition: .4s;
}

.feature-item:hover .box-title {
  color: var(--white-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-list .box-icon {
    margin: 0 auto 15px auto;
  }
}

/* Medium devices */
/*------------------- 4.00. Gallery -------------------*/
/* Gallery Card 1 -------------------------------*/
.gallery-card .gallery-img {
  position: relative;
  border-radius: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gallery-card .gallery-img:before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 24px;
  background-color: var(--title-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0.8;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .gallery-card .gallery-img:before {
    border-radius: 30px;
  }
}

@media (max-width: 991px) {
  .gallery-card .gallery-img:before {
    border-radius: 20px;
  }
}

.gallery-card .gallery-img img {
  width: 100%;
  border-radius: 24px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .gallery-card .gallery-img img {
    border-radius: 24px;
  }
}

@media (max-width: 991px) {
  .gallery-card .gallery-img img {
    border-radius: 24px;
  }
}

.gallery-card .gallery-content {
  position: absolute;
  bottom: 20%;
  left: 0%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.gallery-card .box-title {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 18px;
  color: var(--white-color);
}

.gallery-card .box-text {
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 14px;
}

.gallery-card:hover .gallery-img:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-card:hover .gallery-content {
  opacity: 1;
  bottom: 30px;
}

/* Gallery Card 3 -------------------------------*/
.gallery-2-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.gallery-card2 {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 24px;
}

.gallery-card2.active {
  -webkit-box-flex: 250%;
  -webkit-flex: 250%;
  -ms-flex: 250%;
  flex: 250%;
  border-radius: 24px;
}

.gallery-card2.active .gallery-img:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-card2.active .gallery-content {
  opacity: 1;
  visibility: visible;
  bottom: 12%;
}

.gallery-card2:hover .gallery-img {
  outline: 1px solid var(--theme-color);
}

.gallery-card2:hover .gallery-img:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-card2:hover .gallery-content {
  opacity: 1;
  visibility: visible;
  bottom: 12%;
}

.gallery-card2 .gallery-img {
  height: 385px;
  border: 15px solid var(--title-color);
  outline: 1px solid var(--theme-color2);
  border-radius: 24px;
  z-index: 2;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-card2 .gallery-img:before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--title-color);
  border-radius: 8px;
  opacity: .8;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: -1;
  height: 106%;
  width: 103%;
  z-index: -2;
}

.gallery-card2 .gallery-content {
  position: absolute;
  text-align: center;
  z-index: 1;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  bottom: 35%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gallery-card2 .gallery-content .icon-btn {
  --btn-size: 0;
  border: 0;
  color: var(--white-color);
  margin-bottom: 80px;
}

.gallery-card2 .gallery-content .box-title {
  font-size: 18px;
  color: var(--white-color);
  margin: 0;
}

.gallery-card2 .gallery-content .box-text {
  color: var(--white-color);
  font-size: 14px;
}

/* Medium devices */
@media (max-width: 991px) {
  .gallery-2-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gallery-card2.active .gallery-img {
    max-height: 370px;
  }

  .gallery-card2 .gallery-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: 200px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .gallery-card2.active .gallery-img {
    max-height: 310px;
  }

  .gallery-card2 .gallery-img {
    max-height: 150px;
  }
}

/* Gallery Card 3 inner -------------------------------*/
.gallery-card2.inner .gallery-img {
  max-height: 300px;
}

.filter-item .gallery-card:hover .icon-btn {
  margin: -28px 0 0 -28px;
  visibility: visible;
  opacity: 1;
}

.filter-item .gallery-card:hover .gallery-img:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.filter-menu button.active {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .gallery-card .gallery-img img {
    width: 100%;
  }
}

/* Large devices */
.gallery-card .icon-btn {
  position: absolute;
  top: calc(50% - 28px);
  left: calc(50% - 28px);
  z-index: 3;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.gallery-card .box-title {
  font-weight: 500;
  margin-bottom: 0;
}

#gallerySlider1 .swiper-slide-active .gallery-card .icon-btn {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-card.style-hover:hover .icon-btn {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  margin-top: -35px;
}

/* Project Details --------------------*/
.project-meta-wrap .line {
  background-color: var(--th-border-color);
  height: 40px;
  width: 1px;
  /* Small devices */
}

@media (max-width: 767px) {
  .project-meta-wrap .line {
    display: none;
  }
}

.project-meta .box-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}

.project-nav .icon-btn {
  --btn-size: 46px;
  font-size: 16px;
  border-radius: 99px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
}

.project-nav .icon-btn:hover {
  background-color: var(--theme-color2);
}

.project-nav .nav-btn:first-child .icon-btn {
  margin-right: 5px;
}

.project-nav .nav-btn:last-child .icon-btn {
  margin-left: 5px;
}

/* Case Studies Details  -------------------------------*/
.checklist.style2 li {
  font-size: 18px;
  color: var(--title-color);
}

.checklist.style2 li i {
  color: var(--title-color);
}

/*------------------- 4.00. Category -------------------*/
/* Category Card -------------------------------------*/
.category-card .box-icon {
  width: 120px;
  height: 120px;
  line-height: 120px;
  background-color: var(--white-color);
  margin: 0 auto 20px auto;
}

.category-card .box-title {
  font-size: 18px;
  margin-bottom: -0.3em;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.category-card .box-title a:hover {
  color: var(--title-color);
}

.category-card:hover .box-title {
  color: var(--white-color);
}

.category-card:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Category Box -------------------------------------*/
.category-box .box-icon {
  width: 150px;
  height: 150px;
  line-height: 150px;
  margin: 0 auto 20px auto;
  border-radius: 999px;
  position: relative;
  z-index: 2;
  /* Extra small devices */
}

.category-box .box-icon:before,
.category-box .box-icon:after {
  content: '';
  position: absolute;
  border-radius: inherit;
  z-index: -1;
}

.category-box .box-icon:before {
  inset: 11px;
  background-color: var(--white-color);
}

.category-box .box-icon:after {
  inset: 0;
  border: 2px dashed var(--th-border-color);
}

@media (max-width: 375px) {
  .category-box .box-icon {
    width: 130px;
    height: 130px;
    line-height: 130px;
  }
}

.category-box .box-title {
  font-size: 20px;
  margin-bottom: 5px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .category-box .box-title {
    font-size: 18px;
  }
}

.category-box .box-text {
  font-size: 14px;
}

.category-box:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.category-box:hover .box-icon:after {
  border-color: var(--theme-color);
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
}

/*------------------- 4.00. CTA -------------------*/
/* Service Offer  01 ---------------------------------- */
.service-offer-wrapper .service-offer-box .service-offer-group .text {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.27px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 64px 0 57px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Small devices */
  /* Extra small devices */
}

.service-offer-wrapper .service-offer-box .service-offer-group .text A {
  color: var(--white-color);
}

@media (max-width: 767px) {
  .service-offer-wrapper .service-offer-box .service-offer-group .text {
    font-size: 28px;
    padding: 58px 0 48px;
  }
}

@media (max-width: 575px) {
  .service-offer-wrapper .service-offer-box .service-offer-group .text {
    font-size: 24px;
    padding: 58px 0 48px;
  }
}

.service-offer-wrapper .service-offer-box .service-offer-group .text img {
  margin: 0 28px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-offer-wrapper .service-offer-box .service-offer-group .text img {
    margin: 0 22px;
  }
}

/* Cta   02 ---------------------------------- */
.cta-2-area .sub-title::before {
  background: var(--theme-color2);
}

.cta-2-area .sub-title::after {
  background: var(--theme-color2);
}

.cta-box2 .title-area {
  margin-bottom: 30px;
  line-height: 140%;
}

.cta-box2 .th-btn {
  border: 2px solid var(--white-color);
}

/* Cta   03 ---------------------------------- */
.service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text {
  padding: 85px 0 0;
  margin: 0;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text {
    padding: 75px 0 0;
  }
}

.service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
  color: var(--title-color);
  text-transform: uppercase;
  font-size: 84px;
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 65px;
  }
}

@media (max-width: 1299px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 55px;
  }
}

@media (max-width: 1199px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a {
    font-size: 28px;
  }
}

.service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
  border: 2px solid var(--theme-color2);
  border-radius: 50%;
  margin-top: -10px;
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 53px;
  }
}

@media (max-width: 1299px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 48px;
  }
}

@media (max-width: 1199px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 40px;
  }
}

@media (max-width: 991px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 35px;
  }
}

@media (max-width: 767px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 30px;
    margin-top: 6px;
  }
}

@media (max-width: 575px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 27px;
  }
}

@media (max-width: 375px) {
  .service-offer-wrapper.style-2 .service-offer-box .service-offer-group .text a img {
    width: 25px;
  }
}

/* Cta   04 ---------------------------------- */
.shape-mockup.cta-4-shape-lef {
  left: 42px;
  z-index: 1;
  top: 0;
  height: 100%;
  /* Medium Large devices */
  /* Large devices */
}

.shape-mockup.cta-4-shape-lef img {
  height: 100%;
}

@media (max-width: 1650px) {
  .shape-mockup.cta-4-shape-lef {
    left: 0px;
  }
}

@media (max-width: 1399px) {
  .shape-mockup.cta-4-shape-lef {
    left: -85px;
  }
}

@media (max-width: 1199px) {
  .shape-mockup.cta-4-shape-lef {
    display: none;
  }
}

.shape-mockup.cta-4-shape-right {
  z-index: 1;
  right: -10px;
  top: 0;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1650px) {
  .shape-mockup.cta-4-shape-right {
    right: -60px;
  }
}

@media (max-width: 1399px) {
  .shape-mockup.cta-4-shape-right {
    right: -185px;
  }
}

@media (max-width: 1199px) {
  .shape-mockup.cta-4-shape-right {
    display: none;
  }
}

.cta-box4 .title-area {
  margin-bottom: 35px;
}

.cta-box4 .title-area .box-title {
  font-size: 54px;
  line-height: 1.19;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .cta-box4 .title-area .box-title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .cta-box4 .title-area .box-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .cta-box4 .title-area .box-title {
    font-size: 28px;
  }
}

.cta-box4 .title-area .box-text {
  color: #A1A6B0;
  max-width: 76%;
  margin: 0 auto 0px;
}

/* Medium devices */
@media (max-width: 991px) {
  .cta-box4 .title-area .box-text {
    max-width: 90%;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .cta-box4 .title-area .box-text {
    max-width: 100%;
  }
}

.offer-card .box-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 33px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .offer-card .box-title {
    font-size: 26px;
  }
}

.offer-box .box-title {
  margin-bottom: 23px;
}

.offer-grid .box-title {
  font-weight: 700;
  margin-bottom: 33px;
}

.offer-block .box-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.offer-block .box-title b {
  font-weight: 700;
}

.offer-block .box-text {
  margin-bottom: 22px;
  position: relative;
  z-index: 3;
}

/* Extra small devices */
/* Extra small devices */
@media (max-width: 375px) {
  .offer-block .box-title {
    font-size: 30px;
  }
}

/*------------------- 4.00. Deal -------------------*/
/* Deal sec 2 ---------------------------*/
/*------------------- 4.00. Tab Menu -------------------*/
/* Tab Menu 1 ------------------------------------*/
.tab-menu1 .tab-btn.active {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

/*-- Padding Top --*/
/*-- Padding Bottom --*/
/*-- Padding Left --*/
/*-- Padding Right --*/
/*-- margin Left And Right --*/
/*-- margin Top And Bottom --*/
/*-- margin Top --*/
.mt-30 {
  margin-top: 30px;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

/*-- margin Left --*/
/*-- margin Right --*/
.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {

  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }

  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }

  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
}

/*------------------- Update1 -------------------*/
/* Header layout 4 ---------------------------------- */
.header-layout4 .header-logo {
  padding: 23px 0;
  padding-bottom: 28px;
}

/* Hero 4 ---------------------------------- */
.hero-style4 .hero-title {
  font-size: 84px;
  margin-bottom: 30px;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (min-width: 1201px) and (max-width: 1356px) {
  .hero-style4 .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 1299px) {
  .hero-style4 .hero-title {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-style4 .hero-title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .hero-style4 .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-style4 .hero-title {
    font-size: 32px;
  }
}

.hero-style4 .hero-img {
  position: absolute;
  bottom: 0;
  /* Extra large devices */
  /* Medium Large devices */
  /* Large devices */
}

@media (min-width: 1599px) and (max-width: 1700px) {
  .hero-style4 .hero-img {
    right: 6%;
  }
}

@media (max-width: 1500px) {
  .hero-style4 .hero-img {
    right: -30px;
  }
}

@media (max-width: 1299px) {
  .hero-style4 .hero-img {
    bottom: -40px;
  }
}

@media (max-width: 1199px) {
  .hero-style4 .hero-img {
    position: static;
    margin-top: 10px;
    right: auto;
  }
}

.hero-style4 .hero-img .img-main {
  max-width: inherit;
  background: none;
  border-radius: 0;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .hero-style4 .hero-img .img-main {
    margin-left: -100px;
  }
}

@media (max-width: 1199px) {
  .hero-style4 .hero-img .img-main {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .hero-style4 .hero-img .img-main {
    width: 100%;
    margin-left: 0;
  }
}

.hero-style4 .hero-img .img-main::before {
  position: static;
  display: none;
}

.hero-style4 .hero-img .img-main img {
  max-width: inherit;
  z-index: 2;
  border-radius: 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-style4 .hero-img .img-main img {
    width: 100%;
  }
}

.hero-style4 .client-group-wrap {
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style4 .client-group-wrap {
    left: 0;
  }
}

.slider-4-pagination button.slider-arrow {
  margin: 230px 0;
  background: none;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .slider-4-pagination button.slider-arrow {
    margin: 0 130px;
    rotate: -90deg;
  }
}

@media (max-width: 767px) {
  .slider-4-pagination button.slider-arrow {
    margin: 0 115px;
  }
}

@media (max-width: 575px) {
  .slider-4-pagination button.slider-arrow {
    display: none;
  }
}

/* Counter  4 ---------------------------------- */
/* Service  4 ---------------------------------- */
.service-4 .slider-area {
  position: relative;
}

.service-4 .icon-box .slider-arrow {
  position: absolute;
  top: 50%;
  left: -11%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 1499px) and (max-width: 1600px) {
  .service-4 .icon-box .slider-arrow {
    left: -7%;
  }
}

.service-4 .icon-box .slider-arrow:last-child {
  left: auto;
  right: -11%;
}

@media (min-width: 1499px) and (max-width: 1600px) {
  .service-4 .icon-box .slider-arrow:last-child {
    right: -7%;
  }
}

.service-4 .service-card.style-2 {
  text-align: start;
  padding: 24px 30px 24px 30px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .service-4 .service-card.style-2 {
    padding: 24px 18px 24px 18px;
  }
}

.service-4 .service-card.style-2 a {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.service-4 .service-card.style-2 .link-btn i {
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-4 .service-card .box-icon {
  margin-left: 0;
  margin-right: 0;
}

/* About 4 ---------------------------------- */
.about-4-info .info-box {
  margin-right: 87px;
  max-width: inherit;
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 767px) {
  .about-4-info .info-box {
    margin-right: 45px;
  }
}

@media (max-width: 575px) {
  .about-4-info .info-box {
    margin-right: 0;
  }
}

.about-4-info .info-box:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(1, 28, 26, 0.25);
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-4-info .info-box:not(:last-child) {
    padding-bottom: 5px;
  }
}

.about-4-info .info-contnt {
  margin-right: 100px;
  /* Extra large devices */
  /* Extra small devices */
}

@media (max-width: 1500px) {
  .about-4-info .info-contnt {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .about-4-info .info-contnt {
    margin-right: 0;
  }
}

.about-4-info .info-contnt p {
  margin-bottom: 0;
}

.about-4-logo-shape .logo-circle .logo-icon {
  position: absolute;
  font-size: 20px;
  height: 84px;
  width: 84px;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  background: #fff;
  line-height: 84px;
  border-radius: 50%;
  color: var(--black-color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.about-4-right .client-group-wrap {
  margin-left: 60px;
  width: 256px;
  /* Extra large devices */
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1500px) {
  .about-4-right .client-group-wrap {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .about-4-right .client-group-wrap {
    margin-left: 60px;
  }
}

@media (max-width: 767px) {
  .about-4-right .client-group-wrap {
    text-align: center;
    margin: auto;
  }
}

.about-4-experience-box .box-text {
  font-weight: 500;
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--title-font);
  /* Small devices */
}

@media (max-width: 767px) {
  .about-4-experience-box .box-text {
    text-align: justify;
  }
}

/* Process box 4---------------------------------- */
.process-4-bottom .box-title {
  line-height: 1.3;
}

/*cta style 1---------------------------- */
.cta-form-wrapper .icon-btn {
  position: absolute;
  width: 72px;
  height: 48px;
  line-height: 48px;
  top: 4px;
  right: 6px;
  color: var(--white-color);
  background: var(--theme-color);
  border-radius: 5px;
  border: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta-form-wrapper .icon-btn:hover {
  color: var(--white-color);
  background-color: var(--title-color);
}

.cta-form-wrapper .form-group input {
  padding-right: 90px;
  color: #565656;
  background: var(--white-color);
  border-radius: 5px;
  margin-bottom: 0;
}

/* Award 1 ---------------------------------- */
/* Process box 4---------------------------------- */
.gallery-4-wrapper .swiper-wrapper .swiper-slide {
  width: 270px !important;
  height: 400px !important;
  object-fit: cover;
}

.gallery-4-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active {
  display: inline-block;
  text-align: center;
  object-fit: cover;
  width: 670px !important;
  height: 400px !important;
}

.gallery-4-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .gallery-card2.style-2 .gallery-img::before {
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-4-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .gallery-card2 .gallery-content {
  opacity: 1;
  visibility: visible;
  bottom: 12%;
}

.gallery-card2.style-2 .gallery-img {
  border: 0;
  outline: 0;
}

.gallery-card2.style-2 .gallery-img::before {
  width: 100%;
  height: 100%;
}

/* Hero 5 ---------------------------------- */
.slider-5-control .slider-4-pagination button.slider-arrow {
  margin: 65px 0;
  background: none;
  /* Extra large devices */
  /* Large devices */
}

@media (max-width: 1500px) {
  .slider-5-control .slider-4-pagination button.slider-arrow {
    display: inline-block;
    margin: 0 30px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@media (max-width: 1199px) {
  .slider-5-control .slider-4-pagination button.slider-arrow {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.slider-5-control .slider-4-pagination button.slider-arrow:last-child {
  margin-top: 0px;
}

.hero-title {
  font-size: 84px;
  text-transform: capitalize;
  margin-bottom: 38px;
  /* Medium Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-title {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 65px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 33px;
  }
}

.hero-content-5 .th-btn {
  padding: 21px 30px;
}

@media (min-width: 0) and (max-width: 413px) {
  .hero-content-5 .th-btn {
    margin-bottom: 20px;
  }
}

.hero-content-5 .th-btn:hover {
  color: var(--title-color);
}

.slider-5-pagination .slider-arrow {
  background: none;
  color: var(--white-color);
  top: 50%;
}

/* About 5 ---------------------------------- */
.about-5-imgbox .shape-mockup {
  /* Small devices */
}

@media (max-width: 767px) {
  .about-5-imgbox .shape-mockup {
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
}

.about-5-imgbox .img-box2 .shape-mockup {
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .about-5-imgbox .img-box2 .shape-mockup {
    display: block;
  }
}

@media (max-width: 767px) {
  .about-5-imgbox .img-box2 .shape-mockup {
    display: none;
  }
}

.about-5-title-box .sec-text {
  font-family: var(--title-font);
}

.about-5-content>.sec-text {
  color: var(--title-color);
  margin-top: -5px;
  margin-bottom: 30px;
}

.about-5-content .info-box {
  max-width: 365px;
  margin-bottom: 10px;
}

.about-5-content .info-box .info-contnt .box-title {
  font-size: 24px;
  margin-bottom: 7px;
}

.about-5-action .th-btn {
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .about-5-action .th-btn {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .about-5-action .th-btn {
    margin-right: 14px;
  }
}

@media (max-width: 575px) {
  .about-5-action .th-btn {
    margin-bottom: 30px;
  }
}

/* Counter  5 ---------------------------------- */
.style-5 .box-icon img {
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
}

.style-5 .box-text {
  color: var(--black-color);
}

/* About 6 ---------------------------------- */
.about-6-content .sec-text {
  margin-right: 30px;
  margin-bottom: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .about-6-content .sec-text {
    margin-right: 0;
  }
}

.about-6-content .sec-title {
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .about-6-content .sec-title {
    font-size: 43px;
  }
}

@media (max-width: 1199px) {
  .about-6-content .sec-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .about-6-content .sec-title {
    font-size: 24px;
  }
}

.about-6-content .box-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.about-6-content .shape-mockup {
  right: auto;
  left: 0;
}

@media (min-width: 350px) and (max-width: 1599px) {
  .about-6-content .shape-mockup {
    display: none;
  }
}

/* Process box 5---------------------------------- */
.process-box.style-5 {
  padding: 0 40px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .process-box.style-5 {
    padding: 0 20px;
  }
}

.process-box.style-5::before {
  display: none;
}

.process-box.style-5 .box-icon {
  height: 220px;
  width: 220px;
  line-height: 220px;
  border: 0;
  margin: 0 auto 40px;
}

.process-box.style-5 .box-icon .number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  line-height: 44px;
  font-size: 13px;
  border: 0;
  z-index: 2;
}

.process-box.style-5 .box-icon img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.process-box.style-5 .box-icon::before {
  width: 240px;
  height: 240px;
}

.process-box.style-5 .box-title {
  font-size: 24px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .process-box.style-5 .box-title {
    font-size: 20px;
  }
}

.process-box.style-5 .box-text {
  color: var(--body-color);
}

.process-box.style-5:hover .box-icon img {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

.process-box .process-direction {
  position: absolute;
  top: 70px;
  right: -90px;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .process-box .process-direction {
    display: none;
  }
}

.process-5-wrapper .row [class*="col-"]:nth-child(2n+2) .process-direction {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .process-5-wrapper .row [class*="col-"]:nth-child(2n+2) .process-direction {
    display: none;
  }
}

.process-5-wrapper .row [class*="col-"]:last-child .process-direction {
  display: none;
}

.process-5-wrapper .row:last-child {
  /* Extra large devices */
}

@media (max-width: 1500px) {
  .process-5-wrapper .row:last-child {
    margin-top: 15px;
  }
}

.process-5-wrapper .box-text br {
  /* Medium devices */
}

@media (max-width: 991px) {
  .process-5-wrapper .box-text br {
    display: none;
  }
}

/*team 1 ---------------------------------- */
.team-1-card-wrap .swiper-slide {
  height: unset;
}

.team-1-card-wrap .slider-arrow {
  background: var(--white-color);
  color: var(--title-color2);
  /* Large devices */
}

.team-1-card-wrap .slider-arrow:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

@media (max-width: 1199px) {
  .team-1-card-wrap .slider-arrow {
    display: none;
  }
}

.team-1-card-wrap .slider-arrow.slider-prev {
  left: -28px;
}

.team-1-card-wrap .slider-arrow.slider-next {
  left: auto;
  right: 14%;
}

@media (max-width: 1850px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 17%;
  }
}

@media (max-width: 1770px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 20%;
  }
}

@media (max-width: 1870px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 23%;
  }
}

@media (max-width: 1630px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 25%;
  }
}

@media (max-width: 1560px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 28%;
  }
}

@media (max-width: 1470px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 30%;
  }
}

@media (max-width: 1370px) {
  .team-1-card-wrap .slider-arrow.slider-next {
    right: 32%;
  }
}

.team-card .box-title {
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--white-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.team-card .team-content-hover .box-title a:hover {
  color: var(--theme-color2);
}

.team-card .team-content-hover .team-social .th-social a {
  width: 0;
  height: 0;
  background: transparent;
  border: 0;
  color: var(--white-color);
  line-height: 1;
  padding: 0 12px;
}

.team-card .team-content-hover .team-social .th-social a::hover {
  color: var(--theme-color2);
}

.team-card .team-content-hover .team-social .th-social {
  margin-top: 8px;
}

/*team 4 ---------------------------------- */
.team-card.style-4 .box-title {
  margin-bottom: 0;
}

.team-card.style-4 .th-social {
  position: relative;
  margin-bottom: 25px;
}

/* Testimonial 4 ---------------------------------- */
.testi-4-wrapper .box-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  color: var(--title-color);
  margin-bottom: 5px;
}

.testi-4-wrapper .box-text {
  color: var(--title-color);
}

.testi-4-wrapper .swiper-slide {
  margin-top: 10px;
}

.testi-4-title-box .sec-title {
  margin-bottom: 0;
}

/* History box 1---------------------------------- */
.history-title-box .title-area {
  /* Medium devices */
}

@media (max-width: 991px) {
  .history-title-box .title-area {
    --section-title-space: 0px;
  }
}

/* Header layout 6 ---------------------------------- */
.header-layout6 .th-container {
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 30px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .header-layout6 .th-container {
    padding: 0 20px;
  }
}

.header-layout6 .sticky-wrapper.sticky {
  padding: 0 30px;
  background: none;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .header-layout6 .sticky-wrapper.sticky {
    padding: 0 10px;
  }
}

.header-layout6 .sticky-wrapper.sticky .th-container {
  padding: 0 30px;
  background-color: var(--title-color);
}

.header-layout6 .main-menu>ul>li>a {
  padding: 45px 0;
}

/* Hero 6 ---------------------------------- */
.hero-style6 .hero-content .th-btn {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .hero-style6 .hero-content .th-btn {
    margin-bottom: 20px;
  }
}

.hero-style6 .hero-content .th-btn.style3 {
  color: var(--black-color);
}

.hero-style6 .hero-content .th-btn.style3:hover {
  color: var(--black-color2);
}

@media (min-width: 320px) and (max-width: 992px) {
  .hero-style6 .hero-content .btn-group {
    margin-bottom: 20px;
  }
}

.hero-style6 .hero-title {
  text-transform: capitalize;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style6 .hero-title {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  .hero-style6 .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-style6 .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-style6 .hero-title {
    font-size: 35px;
  }
}

.hero-style6 .hero-title>span {
  color: var(--theme-color);
}

.hero-style6 .hero-img {
  position: absolute;
  bottom: 0;
  right: 16%;
  /* Medium devices */
}

@media (max-width: 1600px) {
  .hero-style6 .hero-img {
    right: 5%;
  }
}

@media (max-width: 1550px) {
  .hero-style6 .hero-img {
    right: 0;
  }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
  .hero-style6 .hero-img {
    right: -7%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .hero-style6 .hero-img {
    right: -7%;
  }
}

@media (max-width: 991px) {
  .hero-style6 .hero-img {
    position: static;
    text-align: center;
  }
}

.hero-style6 .hero-img .img-main {
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-style6 .hero-img .img-main {
    padding-bottom: 0;
  }
}

.hero-style6 .client-group-wrap {
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .hero-style6 .client-group-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .hero-style6 .client-group-wrap {
    margin-bottom: 30px;
  }
}

/* Service  6 ---------------------------------- */
.style-6 .box-icon {
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}

.style-6 .box-content .box-title {
  position: relative;
  margin-bottom: 25px;
}

.style-6 .box-content .box-title::after {
  position: absolute;
  width: 40px;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -16px;
  text-align: center;
  margin: auto;
  content: "";
  background: var(--theme-color);
  border-radius: 30px;
}

.style-6 .link-btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* About 7 ---------------------------------- */
/* Process box 3---------------------------------- */
.process-box.style-3 .box-icon .number {
  line-height: 45px;
  font-family: var(--title-font);
}

.process-box.style-3 .box-title {
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .process-box.style-3 .box-title {
    font-size: 27px;
  }
}

@media (max-width: 1199px) {
  .process-box.style-3 .box-title {
    font-size: 22px;
  }
}

.process-box.style-3 .box-text {
  margin: 0 70px;
  margin-bottom: -0.5em;
  /* Medium devices */
}

@media (max-width: 991px) {
  .process-box.style-3 .box-text {
    margin: 0;
  }
}

.process-3-title-box .box-text {
  margin: 0 70px;
  margin-bottom: -0.5em;
  /* Medium devices */
}

@media (max-width: 991px) {
  .process-3-title-box .box-text {
    margin: 0;
  }
}

/* Why 2 ---------------------------------- */
.choose-2-wrapper .box-img .media-body {
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 2;
}

.choose-2-wrapper .box-img .media-body>.box-text {
  font-weight: 500;
  font-size: 18px;
  font-family: var(--title-font);
}

.choose-2-wrapper .box-img .media-body .counter-number {
  font-size: 30px;
}

.choose-2-wrapper .box-img .media-body .plus-simple {
  margin-left: -8px;
}

.choose-2-wrapper .box-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  color: var(--title-color);
}

/* Testimonial 5 ---------------------------------- */
.testi-5 .testi-block.style-3 .content .box-title {
  color: var(--black-color);
}

/* Blog 4 ---------------------------------- */
.blog-card.style-4 {
  border: 0;
}

/* Blog box 4---------------------------------- */
.style-4 .box-title {
  margin-bottom: 33px;
}

.style-4 .blog-content {
  padding: 30px 0;
  padding-bottom: 0;
}

.style-4 .blog-content .th-btn {
  padding: 16px 39px;
  background: none;
  color: var(--title-color);
  border: 1px solid var(--th-border-color);
}

.style-4 .blog-content .th-btn:hover {
  color: var(--white-color);
}

.style-4 .blog-content .th-btn:hover::before,
.style-4 .blog-content .th-btn:hover::after {
  background-color: var(--theme-color);
}

/* header 7 ---------------------------------- */
.header-layout7 .main-menu>ul>li>a {
  color: var(--white-color);
}

.header-layout7 .main-menu>ul>li>a::after {
  color: var(--white-color);
}

.header-layout7 .icon-btn {
  color: var(--white-color);
}

.header-layout7 .sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: var(--title-color);
}

/* Hero 7 ---------------------------------- */
.hero-style7 .hero-img {
  position: static;
  margin-top: 60px;
}

.hero-style7 .hero-img .img-main {
  max-width: inherit;
  background: none;
  border-radius: 0;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .hero-style7 .hero-img .img-main {
    margin-left: -100px;
  }
}

@media (max-width: 1199px) {
  .hero-style7 .hero-img .img-main {
    width: 100%;
    margin-left: -50px;
  }
}

@media (max-width: 991px) {
  .hero-style7 .hero-img .img-main {
    width: 100%;
    margin-left: 0;
    padding-bottom: 0;
  }
}

.hero-style7 .hero-img .img-main::before {
  position: static;
  display: none;
}

.hero-style7 .hero-img .img-main img {
  position: relative;
  max-width: inherit;
  z-index: 2;
  border-radius: 0 100px 0 0;
  /* Extra large devices */
  /* Large devices */
}

@media (min-width: 1500px) and (max-width: 1600px) {
  .hero-style7 .hero-img .img-main img {
    width: 91%;
  }
}

@media (max-width: 1500px) {
  .hero-style7 .hero-img .img-main img {
    width: 97%;
  }
}

@media (max-width: 1199px) {
  .hero-style7 .hero-img .img-main img {
    width: 100%;
  }
}

.hero-style7 .hero-img .img-main img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: #000;
}

.hero-style7 .hero-title {
  font-size: 84px;
  margin-bottom: 30px;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style7 .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 1199px) {
  .hero-style7 .hero-title {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero-style7 .hero-title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-style7 .hero-title {
    font-size: 33px;
  }
}

.slider-7 .has-shadow {
  padding-bottom: 56px;
}

/* About 7.1 ---------------------------------- */
.about-7-title-box .sec-title {
  font-weight: 600;
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .about-7-title-box .sec-title {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .about-7-title-box .sec-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .about-7-title-box .sec-title {
    font-size: 28px;
  }
}

.about-7 .info-box {
  margin-bottom: 30px;
}

.about-7 .info-box:not(:last-child) {
  border-bottom: 1px solid rgba(1, 28, 26, 0.25);
}

.about-7 .info-box:last-child p {
  margin-bottom: 0;
}

.about-7-bottom .info-box {
  margin-bottom: 30px;
  max-width: inherit;
}

.about-7-bottom .info-box:not(:last-child) {
  border-bottom: 1px solid rgba(1, 28, 26, 0.25);
}

.service-7.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
  padding-bottom: 63px;
  margin-bottom: -10px;
}

/* Counter 7 ---------------------------------- */
/* Team 5 ---------------------------------- */
.team-card.card-5 .team-content-hover .hover-inner .box-title {
  color: var(--white-color);
}

.team-card.card-5 .team-content-hover .th-social {
  margin: 20px 68px;
  padding-top: 18px;
  border-top: 1px solid var(--white-color);
  /* Small devices */
}

@media (max-width: 767px) {
  .team-card.card-5 .team-content-hover .th-social {
    margin: 20px 50px;
  }
}

.team-card.card-5 .box-title {
  color: var(--title-color);
}

.team-5-btn .th-btn.style3 {
  color: var(--title-color);
  border: 1px solid var(--th-border-color);
}

.team-5-btn .th-btn.style3:hover {
  border: 1px solid var(--theme-color);
}

/* Testimonial 6 ---------------------------------- */
.testi-6-content .sec-title {
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .testi-6-content .sec-title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .testi-6-content .sec-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .testi-6-content .sec-title {
    font-size: 33px;
  }
}

/* Faq 3 ---------------------------------- */
.faq-img-box3 .img-main img {
  border-radius: 15px;
}

/* header 8 ---------------------------------- */
.header-layout8 .main-menu>ul>li>a {
  color: var(--white-color);
}

.header-layout8 .main-menu>ul>li>a::after {
  color: var(--white-color);
}

.header-layout8 .header-button button {
  color: var(--white-color);
}

.header-layout8 .sticky-wrapper.sticky {
  background-color: var(--title-color);
}

.header-layout8 .sticky-wrapper.sticky .header-logo {
  /* Large devices */
}

@media (max-width: 1199px) {
  .header-layout8 .sticky-wrapper.sticky .header-logo {
    padding: 22px 0 22px 0;
  }
}

/* Hero 8 ---------------------------------- */
.hero-8-wrapper .hero-img {
  position: absolute;
  bottom: 0;
  z-index: -1;
  /* Extra large devices */
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1500px) {
  .hero-8-wrapper .hero-img {
    right: 0;
  }
}

@media (max-width: 1299px) {
  .hero-8-wrapper .hero-img {
    right: -40px;
  }
}

@media (max-width: 1199px) {
  .hero-8-wrapper .hero-img {
    position: static;
    text-align: center;
  }
}

.hero-8-wrapper .hero-title {
  /* Extra large devices */
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1500px) {
  .hero-8-wrapper .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 1299px) {
  .hero-8-wrapper .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-8-wrapper .hero-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-8-wrapper .hero-title {
    font-size: 26px;
  }
}

.hero-8-wrapper .box-text {
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .hero-8-wrapper .box-text {
    margin-right: 100px;
  }

  .hero-8-wrapper .box-text br {
    display: none;
  }
}

@media (max-width: 1199px) {
  .hero-8-wrapper .box-text {
    margin-right: 0;
  }
}

.hero-8-wrapper .client-group-wrap {
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-8-wrapper .client-group-wrap {
    left: 0;
  }
}

.hero-8-wrapper .client-group-wrap .thumb {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .hero-8-wrapper .client-group-wrap .thumb {
    margin-right: 30px;
  }
}

.hero-style8 .hero-title>span {
  font-style: italic;
  color: var(--theme-color);
}

/* About 8 ---------------------------------- */
.about-8-title-box .sec-title {
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .about-8-title-box .sec-title {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .about-8-title-box .sec-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .about-8-title-box .sec-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .about-8-title-box .sec-title {
    font-size: 26px;
  }
}

.img-box8 .about-img-box3__counter {
  width: 180px;
  height: 148px;
  margin-right: 30px;
  margin-top: 20px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1299px) {
  .img-box8 .about-img-box3__counter {
    width: 215px;
    height: 150px;
  }
}

@media (max-width: 1199px) {
  .img-box8 .about-img-box3__counter {
    width: 100%;
    height: 120px;
    margin: 0;
  }
}

.img-box8 .about-img-box3__counter .counter-number {
  font-size: 64px;
  padding-right: 6px;
}

.img-box8 .about-img-box3__counter h1 {
  margin-top: -15px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .img-box8 .about-img-box3__counter h1 {
    margin-top: -22px;
  }
}

.img-box8 .about-img-box3__counter .box-title {
  font-size: 18px;
}

/* Hero 9 ---------------------------------- */
.hero-content9 .hero-title {
  /* Small devices */
  /* Small devices */
  /* Extra small devices */
}

.hero-content9 .hero-title>span {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .hero-content9 .hero-title {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-content9 .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-content9 .hero-title {
    font-size: 36px;
  }
}

/* Service 9 ---------------------------------- */
.service-card.style-3 {
  padding: 30px;
  background: var(--white-color);
  border: 1px solid var(--th-border-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card.style-3::before,
.service-card.style-3::after {
  position: absolute;
  width: 97%;
  height: 97%;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  content: "";
  display: inline-block;
  border: 1px solid var(--th-border-color);
  background: none;
  border-radius: 24px;
  z-index: -1;
  border-radius: 24px 24px 20px 20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.service-card.style-3::after {
  bottom: -20px;
}

.service-card.style-3:hover {
  border: 1px solid var(--theme-color2);
  background: var(--theme-color2);
}

.service-card.style-3:hover .box-icon {
  background: none;
}

.service-card.style-3:hover::before,
.service-card.style-3:hover::after {
  border: 1px solid var(--theme-color2);
  z-index: -1;
}

.service-card.style-3 .box-title {
  margin-bottom: 7px;
}

.service-card.style-3 .box-icon {
  background: none;
  box-shadow: none;
  margin-bottom: 25px;
}

/* About 9 ---------------------------------- */
.about-9-bottom .info-box {
  max-width: 100%;
  margin-right: 44px;
  /* Large devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .about-9-bottom .info-box {
    margin-right: 150px;
  }
}

@media (max-width: 767px) {
  .about-9-bottom .info-box {
    margin-right: 0;
  }
}

.about-9-bottom .info-box:not(:last-child) {
  border-bottom: 1px solid var(--th-border-color);
  margin-bottom: 30px;
}

.about-9-bottom .info-box_icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.about-9-bottom .info-content .box-title {
  margin-bottom: 6px;
}

/* Why 3 ---------------------------------- */
.why-content3 .box-title {
  color: var(--title-color);
}

/* Faq 1 ---------------------------------- */
/* Blog box 4---------------------------------- */
.blog-4 .box-title {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .blog-4 .box-title {
    font-size: 22px;
  }
}

/* Blog box 5---------------------------------- */
.blog-slider5 .blog-card {
  background: none;
}

/* Hero 10 ---------------------------------- */
.hero-10 .logo-icon-wrap__text {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.hero-10 .logo-icon-wrap .logo-icon img {
  width: auto;
  margin-top: 8px;
}

.hero-style10 .hero-img {
  position: absolute;
  top: 0;
  right: 0;
  /* Extra large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1500px) {
  .hero-style10 .hero-img {
    width: 46%;
  }
}

@media (max-width: 1199px) {
  .hero-style10 .hero-img {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .hero-style10 .hero-img {
    position: static;
    width: 100%;
    text-align: center;
    margin: auto;
  }
}

.hero-style10 .hero-img .img-main {
  position: static;
  max-width: 100%;
  border-radius: 0;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-style10 .hero-img .img-main {
    padding-bottom: 0;
  }
}

.hero-style10 .hero-img .img-main img {
  border-radius: 0;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-style10 .hero-img {
    width: 46%;
  }
}

.hero-style10 .hero-img.bg-mask {
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style10 .hero-img.bg-mask {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

.hero-style10 .hero-content .box-text br {
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .hero-style10 .hero-content .box-text br {
    display: none;
  }
}

.hero-style10 .hero-title {
  font-size: 83px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1700px) {
  .hero-style10 .hero-title {
    font-size: 75px;
  }
}

@media (max-width: 1299px) {
  .hero-style10 .hero-title {
    font-size: 62px;
  }
}

@media (max-width: 1199px) {
  .hero-style10 .hero-title {
    font-size: 55px;
  }
}

@media (max-width: 991px) {
  .hero-style10 .hero-title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-style10 .hero-title {
    font-size: 30px;
  }
}

.slider-10-thumb-box .thumb-slider4 .swiper-slide .tab-btn {
  width: 60px;
  height: 60px;
}

.slider-10-control .slider-4-pagination button.slider-arrow {
  margin: 0;
  margin-right: 90px;
  margin-left: 100px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .slider-10-control .slider-4-pagination button.slider-arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/* About 10 ---------------------------------- */
/* Service 0 ---------------------------------- */
/* Why 4 ---------------------------------- */
.choose-4 .title-area {
  margin-bottom: 30px;
}

.choose-4 .sec-title {
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .choose-4 .sec-title {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  .choose-4 .sec-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .choose-4 .sec-title {
    font-size: 26px;
  }
}

/* Team 6 ---------------------------------- */
.team-card.style-6 .th-social a {
  width: 44px;
  height: 44px;
  font-size: 14px;
  line-height: 44px;
  overflow: hidden;
  margin-right: 0;
  border: 0;
  border-radius: 50%;
  color: var(--title-color);
  background: var(--white-color);
  box-shadow: 0 20px 40px 0 rgba(2, 29, 53, 0.2);
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.team-card.style-6 .th-social a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  box-shadow: none;
}

.team-card.style-6 .box-title {
  color: var(--title-color);
}

.team-card.style-6:hover .th-social a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  margin-right: 5px;
}

/*------------------- rtl -------------------*/
/*------------------- Global -------------------*/
[dir="rtl"] {
  /*-- margin Right --*/
  /*-- Padding Left --*/
  /*-- Padding Right --*/
  /* Medium Large devices */
  /* Large devices */
  /****header-default****/
  /****header-layout1****/
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /******footer layout1******/
  /* Medium Large devices */
  /* Extra large devices */
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Extra large devices */
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Medium Large devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Extra small devices */
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

[dir="rtl"] .link-btn:before {
  left: auto;
  right: 0;
}

[dir="rtl"] .th-btn i.fa-arrow-up-right,
[dir="rtl"] .link-btn i.fa-arrow-up-right {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

[dir="rtl"] .th-btn:hover i.fa-arrow-up-right,
[dir="rtl"] .th-btn:active i.fa-arrow-up-right,
[dir="rtl"] .link-btn:hover i.fa-arrow-up-right,
[dir="rtl"] .link-btn:active i.fa-arrow-up-right {
  -webkit-transform: rotate(-45deg) rotateY(180deg);
  transform: rotate(-45deg) rotateY(180deg);
}

[dir="rtl"] .th-btn i {
  margin-right: 6px;
}

[dir="rtl"] select,
[dir="rtl"] .form-control,
[dir="rtl"] textarea,
[dir="rtl"] input {
  direction: ltr;
}

[dir="rtl"] .th-menu-wrapper {
  direction: ltr;
}

[dir="rtl"] .sidemenu-wrapper .closeButton {
  left: 20px;
  right: auto;
}

[dir="rtl"] .preloader {
  direction: ltr;
}

[dir="rtl"] .icon-box .slider-arrow:not(:last-child) {
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .th-social a {
  margin-left: 7px;
  margin-right: 0;
}

[dir="rtl"] .th-social a:last-child {
  margin-left: 0;
}

[dir="rtl"] .main-menu ul.mega-menu {
  width: 1080px;
}

@media (max-width: 1599px) {
  [dir="rtl"] .main-menu ul.mega-menu {
    width: 1100px;
    left: -45rem !important;
  }
}

@media (max-width: 1399px) {
  [dir="rtl"] .main-menu ul.mega-menu {
    right: -20rem !important;
    left: inherit !important;
  }
}

@media (max-width: 1199px) {
  [dir="rtl"] .main-menu ul.mega-menu {
    right: -24rem !important;
    left: inherit !important;
  }
}

[dir="rtl"] .main-menu ul li.menu-item-has-children>a:after,
[dir="rtl"] .main-menu ul li:has(.mega-menu)>a:after,
[dir="rtl"] .main-menu ul li:has(.sub-menu)>a:after {
  margin-left: 0px;
  margin-right: 5px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

[dir="rtl"] .main-menu ul li.menu-item-has-children>a:hover:after,
[dir="rtl"] .main-menu ul li:has(.mega-menu)>a:hover:after,
[dir="rtl"] .main-menu ul li:has(.sub-menu)>a:hover:after {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

[dir="rtl"] .main-menu>ul>li:first-child {
  margin-left: 15px !important;
  margin-right: 0;
}

[dir="rtl"] .main-menu>ul>li:last-child {
  margin-right: 15px !important;
  margin-left: 0;
}

[dir="rtl"] .header-default .menu-area .menu-area-wrap {
  padding: 0 30px 0 18px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  [dir="rtl"] .header-default .menu-area .menu-area-wrap {
    padding: 0;
  }
}

@media (max-width: 991px) {
  [dir="rtl"] .info-card-wrap .info-card .box-title {
    font-size: 16px;
  }
}

[dir="rtl"] .header-layout1 .header-logo {
  padding-right: 0;
  padding-left: 85px;
}

[dir="rtl"] .header-layout1 .header-logo .logo-bg {
  right: 0;
}

@media (max-width: 1199px) {
  [dir="rtl"] .header-layout1 .header-logo {
    padding-right: 0;
    padding-left: 25px;
  }
}

[dir="rtl"] .footer-widget .widget_title:before,
[dir="rtl"] .footer-widget .widget_title:after {
  left: auto;
  right: 0;
}

[dir="rtl"] .footer-widget.widget_nav_menu a,
[dir="rtl"] .footer-widget.widget_categories a,
[dir="rtl"] .footer-widget.widget_archive a,
[dir="rtl"] .footer-widget.widget_pages a,
[dir="rtl"] .footer-widget.widget_meta a {
  padding: 0 0px 0 0px;
}

[dir="rtl"] .footer-widget.widget_nav_menu a:before,
[dir="rtl"] .footer-widget.widget_categories a:before,
[dir="rtl"] .footer-widget.widget_archive a:before,
[dir="rtl"] .footer-widget.widget_pages a:before,
[dir="rtl"] .footer-widget.widget_meta a:before {
  left: auto;
  right: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

[dir="rtl"] .footer-widget.widget_nav_menu a:hover:before,
[dir="rtl"] .footer-widget.widget_categories a:hover:before,
[dir="rtl"] .footer-widget.widget_archive a:hover:before,
[dir="rtl"] .footer-widget.widget_pages a:hover:before,
[dir="rtl"] .footer-widget.widget_meta a:hover:before {
  -webkit-transform: rotateY(180deg) rotate(45deg);
  transform: rotateY(180deg) rotate(45deg);
}

[dir="rtl"] .th-widget-contact .th-social a {
  margin: 0;
}

[dir="rtl"] .widget_shopping_cart .th-btn {
  margin-left: 15px;
  margin-right: 0;
}

[dir="rtl"] .blog-meta span,
[dir="rtl"] .blog-meta a {
  margin-left: 15px;
  margin-right: 0;
}

[dir="rtl"] .blog-meta span i,
[dir="rtl"] .blog-meta a i {
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .blog-meta span:last-child,
[dir="rtl"] .blog-meta a:last-child {
  margin-left: 0;
  padding-left: 0;
}

[dir="rtl"] .blog-meta span:last-child:before,
[dir="rtl"] .blog-meta a:last-child:before {
  display: none;
}

[dir="rtl"] .blog-meta .author img {
  margin-left: 6px;
  margin-right: 0;
}

[dir="rtl"] .blog-meta a:first-child:before {
  display: none;
}

[dir="rtl"] .blog-meta a:last-child:before {
  display: block;
}

[dir="rtl"] .blog-meta span::before,
[dir="rtl"] .blog-meta a::before {
  right: -11px;
}

[dir="rtl"] .recent-post .media-img {
  margin-right: 0;
  margin-left: 15px;
}

[dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
  left: 14%;
}

@media (max-width: 1850px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 17%;
  }
}

@media (max-width: 1770px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 20%;
  }
}

@media (max-width: 1870px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 23%;
  }
}

@media (max-width: 1630px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 25%;
  }
}

@media (max-width: 1560px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 28%;
  }
}

@media (max-width: 1470px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 30%;
  }
}

@media (max-width: 1370px) {
  [dir="rtl"] .team-1-card-wrap .slider-arrow.slider-prev {
    left: 32%;
  }
}

[dir="rtl"] .team-1-card-wrap .slider-arrow.slider-next {
  left: auto;
  right: -3%;
}

[dir="rtl"] .info-box_icon {
  margin-left: 15px;
  margin-right: 0;
}

[dir="rtl"] .service-3-item__top-icon {
  left: 0;
  right: inherit;
  border-radius: 24px 0px 24px 0px;
}

[dir="rtl"] .process-box.style-2::before {
  left: -190px;
  right: inherit;
}

[dir="rtl"] .about-2-bottom .info-box .info-contnt {
  margin-right: 0;
  margin-left: 100px;
}

[dir="rtl"] .about-4-right .client-group-wrap {
  margin-left: 0;
  margin-right: 60px;
}

[dir="rtl"] .testi-block.style-2 .testi-icon-2-bottom {
  left: 0;
  right: inherit;
  border-radius: 0px 50px 0px 0;
}

@media (min-width: 1599px) and (max-width: 1700px) {
  [dir="rtl"] .hero-style4 .hero-img {
    left: 6%;
    right: inherit;
  }
}

@media (max-width: 1500px) {
  [dir="rtl"] .hero-style4 .hero-img {
    left: 0px;
    right: inherit;
  }
}

@media (max-width: 1299px) {
  [dir="rtl"] .hero-style4 .hero-img {
    left: 100px;
    right: inherit;
  }
}

@media (max-width: 767px) {
  [dir="rtl"] .about-4-right .client-group-wrap {
    text-align: center;
    margin: auto;
  }
}

@media (max-width: 575px) {
  [dir="rtl"] .about-2-bottom .info-box .info-contnt {
    margin-right: 0;
    margin-left: 0px;
  }
}

[dir="rtl"] .hero-style6 .hero-img {
  left: 6%;
  right: inherit;
}

@media (max-width: 1399px) {
  [dir="rtl"] .hero-style6 .hero-img {
    left: 1%;
    right: inherit;
  }
}

@media (max-width: 1500px) {
  [dir="rtl"] .hero-8-wrapper .hero-img {
    left: 15px;
    right: inherit;
  }
}

[dir="rtl"] .about-9-bottom .info-box {
  margin-right: 0;
}

[dir="rtl"] .hero-style10 .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: inherit;
}

[dir="rtl"] .slider-10-control .slider-4-pagination button.slider-arrow {
  margin: 0;
  margin-right: 130px;
  margin-left: 120px;
}

[dir="rtl"] .hero-style10 .hero-img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (max-width: 991px) {
  [dir="rtl"] .hero-style10 .hero-img {
    position: static;
    width: 100%;
    right: 0;
    margin-left: auto;
    margin-right: au;
  }
}

/*# sourceMappingURL=style.css.map */

.service-sec-3 {
  background: var(--title-color);
}

.gallery-sec-3,
.adicinandocor {
  background: var(--theme-color2);
}

.bg-theme--33 {
  background: var(--title-color);
}

.section-divider-top {
  width: 100%;
  line-height: 0;
}

.section-divider-top svg {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: -5px;
  background: var(--title-color);
}

.section-divider-top path {
  fill: var(--theme-color2);
  /* mesma cor da section anterior */
}


.service-sec-3 {
  background: linear-gradient(to bottom,
      #4D1F27 0%,
      #E3D3C3 120px,
      #E3D3C3 100%);
}


.section-divider-bottom svg {
  transform: rotate(180deg);
}

.section-divider-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
  background: var(--title-color);
}

.section-divider-bottom path {
  fill: var(--theme-color2);
  /* mesma cor da section anterior */
}

.section-divider-bottom svg {
  display: block;
  width: 100%;
  height: 90px;
  /* era 80px */
  margin-top: -5px;
}

.adicinandocoor {
  background: var(--title-color);
}


/* SECTION */
.scroll-text-section {
  position: relative;
  padding: 30px 0;
  /* faixa mais fina */
  overflow: hidden;
  background: var(--theme-color2);
}

/* FAIXA COM BLUR */
.scroll-text-wrapper {
  width: 100%;
  overflow: hidden;

  background: linear-gradient(110deg,
      #c9a96e 0%,
      #c9a96e 20%,
      #f1e3c6 35%,
      #ededed 45%,
      #f1e3c6 55%,
      #c9a96e 70%,
      #c9a96e 100%);

  background-size: 300% 100%;
  animation: goldBackgroundMove 6s linear infinite;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes goldBackgroundMove {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* LINHA DE TEXTO */
.scroll-text-track {
  display: flex;
  align-items: center;
  gap: 60px;
  /* menor espaço = mais texto visível */

  font-size: 20px;
  /* menor pra caber mais */
  font-weight: 500;

  letter-spacing: 1px;
  text-transform: uppercase;

  white-space: nowrap;
  color: #1b1b1b;

  padding: 18px 0;

  transform: translateX(0);
  will-change: transform;
}

/* TEXTO */
.scroll-text-track span {
  opacity: 0.65;
  transition: 0.35s ease;
}

.scroll-text-track span:hover {
  opacity: 1;
}


.brand-3-sec {
  position: relative;
}

/* borda superior */
.brand-3-sec::before,
.brand-3-sec::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(90deg,
      #c9a96e 0%,
      #e8d3a3 25%,
      #4D1F27 50%,
      #e8d3a3 75%,
      #c9a96e 100%);

  background-size: 200% 100%;
  animation: goldFlash 3s linear infinite;
}

/* posição da borda superior */
.brand-3-sec::before {
  top: 0;
}

/* posição da borda inferior */
.brand-3-sec::after {
  bottom: 0;
}

@keyframes goldFlash {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.service-3-item.active {
  position: relative;
}

.service-3-item.active::before {
  content: "";
  position: absolute;
  left: -2px;
  /* afasta um pouco da borda */
  top: 18px;
  bottom: 18px;
  width: 4px;

  border-radius: 50px;

  background: linear-gradient(180deg,
      #c9a96e 0%,
      #e8d3a3 30%,
      #4D1F27 50%,
      #e8d3a3 70%,
      #c9a96e 100%);

  background-size: 100% 200%;
  animation: goldFlashVertical 3s linear infinite;

  box-shadow: 0 0 8px rgba(201, 169, 110, 0.6);
}

@keyframes goldFlashVertical {
  0% {
    background-position: 0 -200%;
  }

  100% {
    background-position: 0 200%;
  }
}

.service-3-item__thumb {
  background: var(--title-color);
  /* coloque aqui a cor predominante da imagem */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-3-item__thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.4s;
}

@media (max-width: 1200px) {
  .service-3-item__thumb img {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .service-3-item__thumb img {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .service-3-item__thumb img {
    width: 60%;
  }
}

@media (max-width: 576px) {
  .service-3-item__thumb img {
    width: 50%;
  }
}



.brand-3-sec {
  position: relative;
  padding: 60px 0;
  background: var(--theme-color2);
  /* background: url("assets/img/bg/brand-3-bg.jpg") center/cover no-repeat; */
  overflow: hidden;
}

/* LINHAS ANIMADAS (o que você pediu) */
.brand-3-sec::before,
.brand-3-sec::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d3a3 25%, #4D1F27 50%, #e8d3a3 75%, #c9a96e 100%);
  background-size: 200% 100%;
  animation: goldFlash 3s linear infinite;
}

.brand-3-sec::before {
  top: 0;
}

.brand-3-sec::after {
  bottom: 0;
}

@keyframes goldFlash {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* GRID BONITO */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

/* CARDS */
.brand-item {
  padding: 20px 15px;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  /* background: rgba(0,0,0,0.25); */
  transition: 0.3s;
}

/* HOVER PREMIUM */
.brand-item:hover {
  transform: translateY(-5px);
  border-color: #c9a96e;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Container do hover */
.service-3-item__hover {
  display: flex;
  flex-direction: column;
  gap: 10px;

  height: 100%;
  min-height: 0;
  /* ESSENCIAL */
}

/* TEXTO COM SCROLL */
.service-3-item__hover .sec-text {
  flex: 1;
  /* ocupa espaço disponível */
  overflow-y: auto;
  padding-right: 8px;
  margin: 0;
}

/* Scroll bonito */
.service-3-item__hover .sec-text::-webkit-scrollbar {
  width: 6px;
}

.service-3-item__hover .sec-text::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 10px;
}

/* BOTÃO FIXO EMBAIXO */
.service-3-item__hover .th-btn {
  margin-top: auto;
}

/* GARANTE QUE O CONTAINER NÃO QUEBRE */
.service-3-item__content {
  height: auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

/* IMPORTANTE PRA FLEX FUNCIONAR */
.service-3-item.active .service-3-item__content {
  min-height: 400px;
}

/* ===================================================================
   FIX: Impede overflow dos cards de serviço ao ativar (hover)
   Problema: __content tinha overflow:visible → conteúdo vazava para
   baixo, invadindo as cards seguintes.
   Solução: __content respeita a altura fixa da card + flex interno.
=================================================================== */

/* 1. O content preenche exatamente a altura da card e não vaza */
.service-3-item__content {
  overflow: hidden !important;
  height: 100%;
  box-sizing: border-box;
}

/* 2. Quando ativo, o hover usa todo o espaço restante (flex:1) */
.service-3-item.active .service-3-item__hover {
  flex: 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  max-height: none !important;
  height: auto !important;

}

/* 3. Texto rola dentro do espaço disponível – sem estourar */
.service-3-item.active .service-3-item__hover .sec-text {
  flex: 1 !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  max-height: none !important;
  margin-bottom: 12px;
}

/* 4. Botão fixo no final do flex */
.service-3-item.active .service-3-item__hover .th-btn {
  flex-shrink: 0;
  margin-top: 0;

}

.espaco {
  margin-bottom: 3rem;
}

/* =========================================
   SITE FEEDBACK SECTION
   ========================================= */
.site-feedback-sec {
    background: #F8F4EF;
    padding: 100px 0;
    position: relative;
}
.site-feedback-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a96e 30%, #c9a96e 70%, transparent);
    opacity: .5;
}

.sfb-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
@media(max-width:992px){ .sfb-inner{grid-template-columns:1fr;gap:48px;} }

/* Left */
.sfb-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 12px;
}
.sfb-title {
    font-family: var(--title-font,'Playfair Display',serif);
    font-size: clamp(30px,3.5vw,44px);
    font-weight: 400;
    color: #1A1C14;
    line-height: 1.2;
    margin-bottom: 0;
}
.sfb-title em { font-style: italic; color: #40472D; }
.sfb-divider {
    display: flex; align-items: center; gap: 10px;
    margin: 18px 0 16px;
}
.sfb-divider::before,.sfb-divider::after {
    content:''; flex:1; height:1px;
    background: linear-gradient(to right, transparent, rgba(201,169,110,.4));
}
.sfb-divider::after { background: linear-gradient(to left, transparent, rgba(201,169,110,.4)); }
.sfb-diamond { width:5px;height:5px;background:#c9a96e;transform:rotate(45deg);opacity:.65;flex-shrink:0; }
.sfb-desc {
    font-size:14px;color:#5A5E4A;line-height:1.75;margin-bottom:32px;
}

/* Carousel wrapper */
.sfb-carousel-wrap {
    margin-top: 8px;
}
.sfb-carousel {
    overflow: hidden;
}
.sfb-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
}
@media(min-width:900px){
    .sfb-track { flex-direction: row; }
    .sfb-track .sfb-comment { flex: 1; min-width: 0; }
}

/* Nav: prev / dots / next */
.sfb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.sfb-nav-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(64,71,45,.2);
    background: #fff;
    color: #40472D;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
    flex-shrink: 0;
}
.sfb-nav-btn:hover:not(:disabled) { background: #40472D; color: #F0E8DC; border-color: #40472D; transform: scale(1.08); }
.sfb-nav-btn:disabled { opacity: .3; cursor: default; }

.sfb-dots { display: flex; gap: 7px; align-items: center; }
.sfb-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none; padding: 0;
    background: rgba(64,71,45,.2);
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.sfb-dot-active { background: #c9a96e; transform: scale(1.35); }

/* Comments list — keep for backwards compat */
.sfb-comments-list {
    display:flex;flex-direction:column;gap:16px;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 8px;
}
.sfb-comments-list::-webkit-scrollbar { width:4px; }
.sfb-comments-list::-webkit-scrollbar-track { background:transparent; }
.sfb-comments-list::-webkit-scrollbar-thumb { background:rgba(64,71,45,.2);border-radius:4px; }

.sfb-loading { display:flex;gap:8px;align-items:center;padding:20px 0; }
.sfb-loading span {
    width:8px;height:8px;border-radius:50%;background:#c9a96e;opacity:.3;
    animation:sfbDot 1.2s ease-in-out infinite;
}
.sfb-loading span:nth-child(2){animation-delay:.2s;}
.sfb-loading span:nth-child(3){animation-delay:.4s;}
@keyframes sfbDot{0%,80%,100%{opacity:.3;transform:scale(.8);}40%{opacity:1;transform:scale(1.1);}}
.sfb-empty { font-size:14px;color:#9A9C88;font-style:italic;padding:16px 0; }

.sfb-comment {
    display:flex;gap:14px;
    background:#fff;border:1px solid rgba(64,71,45,.08);
    border-radius:6px;padding:18px;
    transition:border-color .2s,box-shadow .2s;
}
.sfb-comment:hover { border-color:rgba(201,169,110,.35);box-shadow:0 4px 16px rgba(64,71,45,.07); }
.sfb-avatar {
    width:40px;height:40px;border-radius:50%;flex-shrink:0;
    background: linear-gradient(135deg, #40472D, #2e3420);
    color:#c9a96e;font-size:13px;font-weight:600;
    display:flex;align-items:center;justify-content:center;
    letter-spacing:.05em;
}
.sfb-comment-body { flex:1;min-width:0; }
.sfb-comment-header { display:flex;justify-content:space-between;align-items:baseline;margin-bottom:6px;flex-wrap:wrap;gap:6px; }
.sfb-comment-header strong { font-size:14px;color:#1A1C14;font-weight:600; }
.sfb-comment-date { font-size:11px;color:#9A9C88; }
.sfb-comment-text { font-size:13px;color:#5A5E4A;line-height:1.65;margin:0; }

/* Right / Form card */
.sfb-form-card {
    background:#fff;border-radius:6px;
    border:1px solid rgba(64,71,45,.1);
    padding:36px 32px;
    position:relative;overflow:hidden;
    box-shadow: 0 8px 40px rgba(64,71,45,.08);
}
.sfb-form-card::before {
    content:'';position:absolute;top:0;left:0;right:0;height:2px;
    background:linear-gradient(to right, transparent, #c9a96e, transparent);
}
.sfb-form-header {
    display:flex;align-items:center;gap:10px;
    font-size:16px;font-weight:600;color:#1A1C14;
    margin-bottom:22px;
    font-family:var(--title-font,'Playfair Display',serif);
}
.sfb-form-header svg { color:#40472D; }

.sfb-alert {
    display:flex;align-items:center;gap:9px;
    padding:11px 14px;border-radius:5px;
    font-size:13px;margin-bottom:18px;
}
.sfb-alert-ok { background:#f0fdf4;color:#2D7A3A;border:1px solid #c3f0cb; }
.sfb-alert-err { background:#fff2f2;color:#c0392b;border:1px solid #ffd0d0; }

.sfb-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
@media(max-width:576px){ .sfb-row{grid-template-columns:1fr;} }

.sfb-group { display:flex;flex-direction:column;gap:6px;margin-bottom:14px; }
.sfb-group label { font-size:12px;font-weight:500;color:#5A5E4A;letter-spacing:.03em; }
.sfb-group label small { font-weight:400;color:#9A9C88; }
.sfb-group input,
.sfb-group textarea {
    background:#F8F4EF;
    border:1.5px solid rgba(64,71,45,.15);
    border-radius:4px;
    padding:11px 13px;
    font-family:inherit;font-size:14px;color:#1A1C14;
    outline:none;transition:border-color .2s,box-shadow .2s;
    resize:none;
}
.sfb-group input::placeholder,
.sfb-group textarea::placeholder { color:#9A9C88; }
.sfb-group input:focus,
.sfb-group textarea:focus {
    border-color:#40472D;
    box-shadow:0 0 0 3px rgba(64,71,45,.08);
    background:#fff;
}
.sfb-group input.sfb-invalid,
.sfb-group textarea.sfb-invalid { border-color:#c0392b;box-shadow:0 0 0 3px rgba(192,57,43,.08); }

.sfb-btn {
    display:inline-flex;align-items:center;gap:9px;
    width:100%;justify-content:center;
    padding:14px 20px;
    background:#40472D;border:none;border-radius:3px;
    color:#F0E8DC;
    font-family:inherit;font-size:12px;font-weight:500;
    letter-spacing:3px;text-transform:uppercase;
    cursor:pointer;transition:background .2s,transform .15s,box-shadow .2s;
    box-shadow:0 4px 20px rgba(64,71,45,.18);
    margin-top:4px;
    position:relative;overflow:hidden;
}
.sfb-btn::after { content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:#c9a96e; }
.sfb-btn:hover:not(:disabled) { background:#2e3420;transform:translateY(-1px);box-shadow:0 8px 28px rgba(64,71,45,.28); }
.sfb-btn:disabled { opacity:.65;cursor:not-allowed; }

@media(max-width:576px){ .sfb-form-card{padding:28px 20px;} }

/* =========================================
   TICKER (brand-3-sec)
   ========================================= */
.ticker-viewport {
    overflow: hidden;
    padding: 22px 0;
    cursor: default;
    user-select: none;
    position: relative;
}
.ticker-viewport::before,
.ticker-viewport::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}
.ticker-viewport::before {
    left: 0;
    background: linear-gradient(to right, var(--theme-color2), transparent);
}
.ticker-viewport::after {
    right: 0;
    background: linear-gradient(to left, var(--theme-color2), transparent);
}
.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 40px 10px 24px;
    flex-shrink: 0;
    transition: opacity .2s;
}
.ticker-item:hover { opacity: .7; }
.ticker-diamond {
    font-size: 8px;
    color: #c9a96e;
    opacity: .7;
    flex-shrink: 0;
}
.ticker-text {
    font-family: var(--title-font, 'Playfair Display', serif);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .04em;
    transition: color .2s;
}
.ticker-item:hover .ticker-text { color: #c9a96e; }