/*======= Base Class ========*/
:root {
  --bs-primary:#198754;
  --bs-primary-rgb:198, 249, 6;
  --wild-sand:#F5F5F5;
  --wild-sand-rgb:245, 245, 245;
  --dusty-gray:#959595;
  --dusty-gray-rgb:149, 149, 149;
  --black-2:#050505;
  --black-2-rgb:5, 5, 5;
  --black-solid:#000000;
  --black-solid-rgb:0, 0, 0;
  --scorpion:#5B5B5B;
  --scorpion-rgb:91, 91, 91;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.67;
  color: var(--black-2);
}

span,
a {
  display: inline-block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: initial;
}

img {
  display: block;
}

h1, h2 {
  text-transform: uppercase;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--black-2);
}

p {
  font-size: 16px;
  line-height: 1.67;
  margin-bottom: initial;
  font-family: "Space Grotesk", sans-serif;
}
@media (min-width: 576px) {
  p {
    font-size: 18px;
  }
}

.btn-reset {
  border: 0;
  background: 0;
  outline: none;
}
.btn-reset:focus {
  box-shadow: none;
  outline: 0;
  border: 0;
}

.preloader-wrapp {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.preloader-wrapp .bar {
  position: absolute;
  width: 33.333%;
  background-color: var(--bs-primary);
  height: 100%;
  left: 0;
  transition: 0.5s;
}
.preloader-wrapp .bar:nth-child(2) {
  left: 33.333%;
}
.preloader-wrapp .bar:nth-child(3) {
  left: 66.666%;
}
.loaded .preloader-wrapp {
  pointer-events: none;
}
.loaded .preloader-wrapp .bar {
  width: 0;
}

.anchor-color-reset {
  color: inherit;
}
.anchor-color-reset:hover {
  color: inherit;
}

/*!
 * Bootstrap Grid v5.3.0-alpha3 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 480px) {
  .col-xs {
    flex: 1 0 0%;
  }
  .row-cols-xs-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xs-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xs-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xs-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xs-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  .g-xs-0,
  .gx-xs-0 {
    --bs-gutter-x: 0;
  }
  .g-xs-0,
  .gy-xs-0 {
    --bs-gutter-y: 0;
  }
  .g-xs-1,
  .gx-xs-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xs-1,
  .gy-xs-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xs-2,
  .gx-xs-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xs-2,
  .gy-xs-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xs-3,
  .gx-xs-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xs-3,
  .gy-xs-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xs-4,
  .gx-xs-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xs-4,
  .gy-xs-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xs-5,
  .gx-xs-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xs-5,
  .gy-xs-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .container-fluid.portfolio-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

/* Common: Background Colors */
/* Common: Background Image */
.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-fixed {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.object-image {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

/* Common: Positioning */
.absolute-center {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.overlay {
  position: relative;
  z-index: 1;
}
.overlay::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(var(--black-2-rgb), 0.9200000167);
  z-index: -1;
}

.overlay-07 {
  position: relative;
  z-index: 1;
}
.overlay-07::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(var(--black-2-rgb), 0.7);
  z-index: -1;
}

/* Common : Section Padding */
.section-padding-140 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .section-padding-140 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-140 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .section-padding-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

/* Common : Reuseable Blocks */
.icon-arrow-corner {
  transform: rotate(-45deg);
}

.section-note-text {
  color: #050505;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  padding-top: 28px;
  border-top: 1px solid rgba(var(--black-2-rgb), 0.1);
  margin-top: 40px;
}
@media (min-width: 576px) {
  .section-note-text {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .section-note-text {
    margin-top: 60px;
  }
}
.section-note-text a {
  color: inherit;
  font-weight: 500;
  position: relative;
}
.section-note-text a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: unset;
  height: 2px;
  width: 0%;
  background-color: var(--black-2);
  transition: 0.4s;
}
.section-note-text a:hover {
  color: inherit;
}
.section-note-text a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

/* Animations Sonar */
.sonar-emitter::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  background-color: var(--bs-primary);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
}

.sonar-emitter::after {
  animation: sonarWave 2s linear infinite;
}

@-webkit-keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* ========== Component : Button Style  ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  padding: 14px 24px;
  border-color: transparent;
  color: var(--black-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  border-radius: initial;
}
@media (min-width: 576px) {
  .btn {
    padding: 16px 28px;
  }
}
.btn.space-between {
  justify-content: space-between;
}

.btn-primary {
  color: var(--black-2);
  background-color: var(--bs-primary);
}
.btn-primary:hover {
  color: var(--black-2);
  background-color: var(--bs-primary);
}

.btn-black {
  color: #FFF;
  background-color: var(--black-2);
}
.btn-black:hover {
  background-color: var(--bs-primary);
}

.btn-white {
  color: var(--black-2);
  background-color: #FFF;
}
.btn-white:hover {
  color: var(--black-2) !important;
  background-color: #FFF;
}

.btn-outline {
  color: var(--black-2);
  background-color: #FFF;
  border-color: rgba(5, 5, 5, 0.1);
}
.btn-outline:hover {
  background-color: var(--bs-primary);
}

.padding-24 {
  padding: 18px 24px;
}

.btn-tag {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: var(--wild-sand);
  color: var(--black-2);
}

.btn-link {
  transition: 0.3s;
  text-decoration: none;
}

.btn-header {
  padding: 12px 28px;
}

.btn-small {
  padding: 11px 24px;
}

.btn-arrow {
  display: inline-flex;
  column-gap: 10px;
}
.btn-arrow:hover::after {
  left: 5px;
}
.btn-arrow::after {
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: inherit;
  position: relative;
  top: 1px;
  left: 0px;
  transition: 0.4s left;
  color: inherit;
  transform: rotate(-45deg);
}

.hvr-fill-black {
  position: relative;
  z-index: 1;
}
.hvr-fill-black:before {
  content: "";
  background: var(--black-2);
  position: absolute;
  z-index: -1;
  transition: 0.4s;
  width: 0%;
}
.hvr-fill-black::before {
  top: 0;
  bottom: 0%;
  left: 0;
  right: auto;
}
.hvr-fill-black:hover {
  color: var(--wild-sand);
  border-color: var(--black-2);
}
.hvr-fill-black:hover:before {
  width: 100%;
  left: auto;
  right: 0;
}

.hvr-black-white {
  position: relative;
  z-index: 1;
}
.hvr-black-white:before {
  content: "";
  background: #FFF;
  position: absolute;
  z-index: -1;
  transition: 0.4s;
  width: 0%;
}
.hvr-black-white::before {
  top: 0;
  bottom: 0%;
  left: 0;
  right: auto;
}
.hvr-black-white:hover {
  color: var(--wild-sand);
  border-color: #FFF;
}
.hvr-black-white:hover:before {
  width: 100%;
  left: auto;
  right: 0;
}
.hvr-black-white:hover {
  background-color: var(--black-2);
  color: var(--black-2);
}

.hvr-black-primary {
  position: relative;
  z-index: 1;
}
.hvr-black-primary:before {
  content: "";
  background: var(--bs-primary);
  position: absolute;
  z-index: -1;
  transition: 0.4s;
  width: 0%;
}
.hvr-black-primary::before {
  top: 0;
  bottom: 0%;
  left: 0;
  right: auto;
}
.hvr-black-primary:hover {
  color: var(--wild-sand);
  border-color: var(--bs-primary);
}
.hvr-black-primary:hover:before {
  width: 100%;
  left: auto;
  right: 0;
}
.hvr-black-primary:hover {
  background-color: var(--black-2);
  color: var(--black-2);
}

.hvr-white-primary {
  position: relative;
  z-index: 1;
}
.hvr-white-primary:before {
  content: "";
  background: var(--bs-primary);
  position: absolute;
  z-index: -1;
  transition: 0.4s;
  width: 0%;
}
.hvr-white-primary::before {
  top: 0;
  bottom: 0%;
  left: 0;
  right: auto;
}
.hvr-white-primary:hover {
  color: #FFF;
  border-color: var(--bs-primary);
}
.hvr-white-primary:hover:before {
  width: 100%;
  left: auto;
  right: 0;
}

/* ========== Button Utilities  ============= */
.rounded-pill {
  --btn-radius: 500px;
}

.btn-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  color: var(--black-2);
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .btn-link {
    font-size: 18px;
  }
}
.btn-link i {
  position: relative;
  transition: 0.4s;
  top: 0px;
  right: 0px;
}
.btn-link:hover {
  color: var(--black-2);
}
.btn-link:hover::before {
  width: 105%;
}
.btn-link:hover i {
  color: var(--black-2);
  top: -2px;
  right: -2px;
}
.btn-link.hvr-fill::before {
  background-color: var(--bs-primary);
  content: "";
  height: 105%;
  width: 0%;
  top: 50%;
  left: -2.5%;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
  transition: 0.4s;
}
.btn-link.hvr-fill:hover {
  color: var(--black-2);
}
.btn-link.hvr-fill:hover::before {
  width: 105%;
}
.btn-link.hvr-fill:hover i {
  color: var(--black-2);
}

.btn-link--sand {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  color: var(--wild-sand);
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .btn-link--sand {
    font-size: 18px;
  }
}
.btn-link--sand i {
  position: relative;
  transition: 0.4s;
  top: 0px;
  right: 0px;
}
.btn-link--sand:hover {
  color: var(--bs-primary);
}
.btn-link--sand:hover::before {
  width: 105%;
}
.btn-link--sand:hover i {
  color: var(--bs-primary);
  top: -2px;
  right: -2px;
}
.btn-link--sand.hvr-fill::before {
  background-color: var(--bs-primary);
  content: "";
  height: 105%;
  width: 0%;
  top: 50%;
  left: -2.5%;
  transform: translateY(-50%);
  position: absolute;
  z-index: -1;
  transition: 0.4s;
}
.btn-link--sand.hvr-fill:hover {
  color: var(--black-2);
}
.btn-link--sand.hvr-fill:hover::before {
  width: 105%;
}
.btn-link--sand.hvr-fill:hover i {
  color: var(--black-2);
}

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  color: var(--bs-primary);
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  border-radius: 500px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .btn-play {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
    border-radius: 500px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .btn-play {
    min-width: 160px;
    max-width: 160px;
    min-height: 160px;
    max-height: 160px;
    border-radius: 500px;
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .btn-play {
    min-width: 180px;
    max-width: 180px;
    min-height: 180px;
    max-height: 180px;
    border-radius: 500px;
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .btn-play {
    min-width: 220px;
    max-width: 220px;
    min-height: 220px;
    max-height: 220px;
    border-radius: 500px;
    font-size: 24px;
  }
}
.btn-play i {
  transform: scale(1);
  transition: 0.4s;
  color: var(--black-2);
}
.btn-play:hover i {
  transform: scale(1.2);
}
.btn-play--outline {
  background-color: transparent;
  border: 3px solid var(--white);
  color: var(--white);
}

/* ========== Components: Service Card Style ============= */
.project-card {
  --overlay-transition: 0.4s;
  --content-transition: 0.5s;
  --content-transition-delay: 0.2s;
  color: var(--wild-sand);
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 992px) {
  .project-card {
    --transform-hvr: 101%;
  }
}
.project-card__image {
  position: relative;
  z-index: 1;
  height: 100%;
}
.project-card__image::before {
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0) 100%);
  position: absolute;
  inset: 0;
  z-index: -1;
  z-index: 1;
  transform: translateY(var(--transform-hvr));
  transition: 0.4s;
}
.project-card__image::after {
  content: "";
  background: var(--black-2);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  z-index: 1;
  transform: translateY(var(--transform-hvr));
  transition: var(--overlay-transition);
}
.project-card__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(var(--transform-hvr));
  transition: var(--content-transition);
  padding: 20px;
}
@media (min-width: 1200px) {
  .project-card__body {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .project-card__body {
    padding: 40px;
  }
}
.project-card__body-top {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
.project-card__title {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--wild-sand);
}
@media (min-width: 768px) {
  .project-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .project-card__title {
    font-size: 26px;
  }
}
.project-card__title a {
  color: inherit;
}
.project-card__title a:hover {
  color: inherit;
}
.project-card__category {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}
.project-card__category a {
  color: inherit;
}
.project-card__category a:hover {
  color: inherit;
}
.project-card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .project-card__date {
    font-size: 18px;
  }
}
.project-card__button {
  background-color: var(--bs-primary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--black-2);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
}
.project-card:hover {
  --transform-hvr: 0;
}
.project-card:hover .project-card__body {
  transition-delay: var(--content-transition-delay);
}
.project-card--v2 {
  background-color: #fff;
}
.project-card--v2 .project-card__image {
  height: 260px;
}
@media (min-width: 992px) {
  .project-card--v2 .project-card__image {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .project-card--v2 .project-card__image {
    height: 440px;
  }
}
.project-card--v2 .project-card__image::before, .project-card--v2 .project-card__image:after {
  display: none;
}
.project-card--v2 .project-card__body {
  position: static;
  transform: none;
  height: initial;
  width: initial;
  position: relative;
  row-gap: 10px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .project-card--v2 .project-card__body {
    flex-direction: row;
  }
}
.project-card--v2 .project-card__body-bottom {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .project-card--v2 .project-card__body-bottom {
    flex-grow: 0;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 20px;
    max-height: 30px;
    overflow: hidden;
    text-align: right;
  }
  .project-card--v2 .project-card__body-bottom > * {
    transform: translateY(0%);
    transition: 0.4s;
  }
}
@media (min-width: 1200px) {
  .project-card--v2 .project-card__body-bottom {
    right: 30px;
    top: 30px;
  }
}
@media (min-width: 1200px) {
  .project-card--v2 .project-card__body-bottom {
    right: 40px;
    top: 40px;
  }
}
.project-card--v2 .project-card__title, .project-card--v2 .project-card__category, .project-card--v2 .project-card__date {
  color: var(--black-2);
}
@media (min-width: 992px) {
  .project-card--v2:hover .project-card__title {
    text-decoration: underline;
  }
  .project-card--v2:hover .project-card__body-bottom > * {
    transform: translateY(-100%);
  }
}

/* ========== Components: Team Card Style ============= */
.team-card {
  background: #FFF;
  box-shadow: 0px 3px 12px 0px rgba(5, 5, 5, 0.04);
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .team-card {
    row-gap: 64px;
    padding-top: 60px;
  }
}
.team-card__image {
  padding: 8px;
  position: relative;
  border: 1px solid var(--black-2);
  min-width: 140px;
  max-width: 140px;
  min-height: 140px;
  max-height: 140px;
  border-radius: 500px;
  transition: 0.4s;
}
@media (min-width: 768px) {
  .team-card__image {
    min-width: 196px;
    max-width: 196px;
    min-height: 196px;
    max-height: 196px;
    height: 196px;
    width: 196px;
  }
}
.team-card__image img {
  width: 100%;
  border-radius: inherit;
}
.team-card__image .hover-elements {
  position: absolute;
  inset: 8px;
  display: flex;
  column-gap: 16px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
  background: rgba(var(--black-2-rgb), 0.4);
  transition: 0.4s;
  opacity: 0;
}
.team-card__image .hover-elements a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--wild-sand);
  left: 10px;
  transition: 0.5s;
  opacity: 0;
  transition-delay: 0.1s;
}
@media (min-width: 576px) {
  .team-card__image .hover-elements a {
    font-size: 18px;
  }
}
.team-card__body span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}
.team-card__title {
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .team-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .team-card__title {
    font-size: 24px;
  }
}
.team-card:hover .team-card__title a {
  text-decoration: underline;
}
.team-card:hover .team-card__image {
  background-color: var(--bs-primary);
  border-color: transparent;
}
.team-card:hover .hover-elements {
  opacity: 1;
}
.team-card:hover .hover-elements a {
  left: 0;
  opacity: 1;
}

/* ========== Components: Service Card Style ============= */
.service-card {
  --gap-60:60px;
  --card-padding:40px;
  --card-padding-sm:30px;
  --translate-y:90px;
  background-color: #fff;
  overflow-y: hidden;
  position: relative;
  padding: var(--card-padding-sm);
}
@media (min-width: 576px) {
  .service-card {
    padding: var(--card-padding);
  }
}
@media (min-width: 992px) {
  .service-card {
    padding-top: 60px;
  }
}
.service-card__icon {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .service-card__icon {
    min-height: 120px;
  }
}
.service-card__title {
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
  text-transform: uppercase;
  min-height: 90x;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .service-card__title {
    font-size: 24px;
  }
}
.service-card__body {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .service-card__body {
    transition: 0.4s;
    padding-bottom: 100px;
  }
}
.service-card__body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .service-card__body p {
    font-size: 18px;
  }
}
.service-card__footer {
  margin-top: auto;
}
@media (min-width: 992px) {
  .service-card__footer {
    margin-top: 0;
    position: absolute;
    bottom: var(--card-padding);
    left: var(--card-padding);
    right: var(--card-padding);
    transition: 0.4s;
  }
}
@media (min-width: 992px) {
  .service-card__body, .service-card__footer {
    transform: translateY(var(--translate-y));
  }
}
@media (min-width: 992px) {
  .service-card:hover .service-card__body, .service-card:hover .service-card__footer {
    transform: translateY(0);
  }
}
.service-card--small {
  --card-padding:30px;
  --translate-y:78px;
}
.service-card--small .service-card__icon {
  height: 80px;
  min-height: 80px;
}
.service-card--small .service-card__icon img {
  height: 100%;
}
@media (min-width: 992px) {
  .service-card--small .service-card__body {
    padding-bottom: 86px;
  }
}

/* ========== Components: Pricing Card Style ============= */
.pricing-card {
  padding-top: 60px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}
.pricing-card__inner {
  overflow: hidden;
}
.pricing-card__title {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .pricing-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .pricing-card__title {
    font-size: 26px;
  }
}
.pricing-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 28px;
}
@media (min-width: 576px) {
  .pricing-card p {
    font-size: 18px;
  }
}
.pricing-card ul {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pricing-card ul {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .pricing-card ul {
    margin-bottom: 80px;
  }
}
.pricing-card__bottom {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  transform: translateY(70px);
  transition: 0.4s;
}
.pricing-card__price {
  font-weight: 500;
  line-height: 1.23;
  font-size: 34px;
}
@media (min-width: 480px) {
  .pricing-card__price {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .pricing-card__price {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .pricing-card__price {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .pricing-card__price {
    font-size: 52px;
  }
}
@media (min-width: 1400px) {
  .pricing-card__price {
    font-size: 60px;
  }
}
.pricing-card:hover .pricing-card__bottom {
  transform: translateY(0px);
}

/* ========== Components: Testimonial Card Style ============= */
.testimonial-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
}
@media (min-width: 768px) {
  .testimonial-card {
    padding: 60px 40px;
  }
}
.testimonial-card .rating-block {
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 32px;
}
@media (min-width: 576px) {
  .testimonial-card p {
    font-size: 18px;
  }
}
.testimonial-card .user-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  align-items: center;
}
.testimonial-card .user-block span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

.author-card {
  display: flex;
  column-gap: 28px;
  align-items: center;
  border: 1px solid rgba(var(--black-2-rgb), 0.1);
  padding: 30px;
  flex-direction: column;
  text-align: center;
  align-items: center;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .author-card {
    flex-direction: row;
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 768px) {
  .author-card {
    padding: 40px;
  }
}
.author-card__image {
  min-width: 140px;
  max-width: 140px;
  min-height: 140px;
  max-height: 140px;
  border-radius: 500px;
}
.author-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.author-card__name {
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
}
@media (min-width: 768px) {
  .author-card__name {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .author-card__name {
    font-size: 24px;
  }
}
.author-card__position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.author-card p {
  margin-bottom: 20px;
  color: var(--black-2);
}

/* ========== Components: Service Card Style ============= */
.product-card {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  background-color: var(--wild-sand);
}
.product-card__image {
  position: relative;
}
.product-card__image::before {
  content: "";
  inset: 0;
  background-color: var(--wild-sand);
  position: absolute;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
.product-card__image img {
  width: 100%;
}
.product-card__cart-button {
  opacity: 0;
  transform: translateY(10px);
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-primary);
  transition: 0.4s;
}
.product-card__cart-button img {
  width: 15px;
}
.product-card__body {
  padding-left: 32px;
  padding-bottom: 40px;
}
.product-card__title {
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .product-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .product-card__title {
    font-size: 24px;
  }
}
.product-card__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}
.product-card:hover {
  opacity: 1;
}
.product-card:hover .product-card__title {
  text-decoration: underline;
}
.product-card:hover .product-card__image::before {
  opacity: 0.4;
}
.product-card:hover .product-card__cart-button {
  transform: translateY(0);
  opacity: 1;
}

/* ========== Components: Brand logo Style ============= */
.brand-logo {
  padding-top: 12px;
  padding-bottom: 12px;
  height: 50px;
}

/* ========== Components: ISotope Style ============= */
.portfolio-v2 {
  margin-left: -12px;
  margin-right: -12px;
}

/* ========== Grid Item ============= */
.masonry-grid .grid-item {
  width: 100%;
  padding: 12px;
}
@media (min-width: 576px) {
  .masonry-grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .masonry-grid .grid-item {
    width: 25%;
  }
}
.masonry-grid .grid-item--width2 {
  width: 100%;
}
@media (min-width: 576px) {
  .masonry-grid .grid-item--width2 {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .masonry-grid .grid-item--width2 {
    height: 100%;
  }
}

/* ----- Cart Item ----- */
.cart-total-block {
  margin-top: 40px;
}
@media (min-width: 480px) {
  .cart-total-block {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .cart-total-block {
    margin-top: 100px;
  }
}
.cart-total-block h3 {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
}
@media (min-width: 768px) {
  .cart-total-block h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .cart-total-block h3 {
    font-size: 26px;
  }
}
@media (min-width: 480px) {
  .cart-total-block h3 {
    margin-bottom: 10px;
  }
}
.cart-total-item {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
}
@media (min-width: 480px) {
  .cart-total-item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.cart-total-item p {
  width: 100px;
}
@media (min-width: 576px) {
  .cart-total-item p {
    width: 330px;
  }
}
.cart-total-checkout-btn {
  margin-top: 24px;
}
@media (min-width: 480px) {
  .cart-total-checkout-btn {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .cart-total-checkout-btn {
    margin-top: 48px;
  }
}
.cart-coupon-block {
  width: 100%;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .cart-coupon-block {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 48px;
    gap: 20px;
  }
}
.cart-coupon-block .coupon-form {
  display: flex;
  border: 1px solid rgba(5, 5, 5, 0.1);
  width: 100%;
}
@media (min-width: 768px) {
  .cart-coupon-block .coupon-form {
    max-width: 378px;
  }
}
.cart-coupon-block .coupon-form input {
  border: none;
  outline: none;
  padding: 12px 16px;
  width: 100%;
  font-size: 16px;
  color: var(--black-2);
  background-color: #FFF;
}
.cart-coupon-block .coupon-form .btn-coupon {
  border: none;
}
.cart-coupon-block .btn-cart {
  width: 100%;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .cart-coupon-block .btn-cart {
    width: initial;
  }
}

@media (max-width: 768px) {
  .cart-table {
    overflow-x: scroll;
    min-width: 600px;
  }
}
.cart-table__head {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}
.cart-table__head div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-table__head div:not(:first-child) {
  width: 20%;
}
.cart-table__head div:first-child {
  width: 30%;
  justify-content: flex-start;
  padding-left: 0;
}
@media (min-width: 768px) {
  .cart-table__head div:first-child {
    padding-left: 180px;
    width: 40%;
  }
}
.cart-table__head div h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--dusty-gray);
  text-transform: uppercase;
}
.cart-table__body {
  /* ----- Cart Item ----- */
  /* ----- Cart Content Block ----- */
  /* ----- Cart Price Block ----- */
  /* ----- Cart Quantity Block ----- */
  /* ----- Cart Total Block ----- */
}
.cart-table__body .item-block {
  padding-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  display: flex;
  align-items: center;
}
.cart-table__body .content-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 30%;
}
@media (min-width: 768px) {
  .cart-table__body .content-block {
    align-items: center;
    gap: 20px;
    width: 40%;
  }
}
.cart-table__body .content-block button {
  background: none;
  border: none;
  outline: none;
  color: var(--black-2);
  font-size: 20px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-table__body .content-media {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 12px;
}
@media (min-width: 768px) {
  .cart-table__body .content-media {
    flex-direction: row;
    gap: 28px;
  }
}
.cart-table__body .content-media img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}
.cart-table__body .content-media h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-2);
}
.cart-table__body .price-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}
.cart-table__body .price-block p {
  font-size: 16px;
  color: var(--black-2);
}
.cart-table__body .quantity-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
}
.cart-table__body .total-block {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-table__body .total-block p {
  font-size: 16px;
  color: var(--black-2);
}

/* ========== Component : Testimonial Widget   ============= */
.testimonial-widget {
  color: var(--wild-sand);
  text-align: center;
}
.testimonial-widget__icon {
  margin-bottom: 28px;
  display: inline-block;
}
.testimonial-widget p {
  color: inherit;
  line-height: 1.7142857143;
  font-size: 20px;
  border-bottom: 1px solid #333333;
  padding-bottom: 40px;
  margin-bottom: 28px;
}
@media (min-width: 576px) {
  .testimonial-widget p {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .testimonial-widget p {
    font-size: 28px;
  }
}
.testimonial-widget span {
  color: inherit;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

/* ========== Component : Contact Widget   ============= */
.contact-widget__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .contact-widget__title {
    font-size: 18px;
  }
}
.contact-widget__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .contact-widget__text {
    font-size: 18px;
  }
}

/* ========== Component : Contact Widget 02 used in Contact Inner Page  ============= */
.contact-widget-02 {
  display: flex;
  column-gap: 8px;
}
.contact-widget-02__icon {
  width: 22px;
  height: 22px;
  position: relative;
  top: 5px;
}
.contact-widget-02__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .contact-widget-02__text {
    font-size: 18px;
  }
}

/* ========== Component : Process Widget   ============= */
.process-widget {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .process-widget {
    row-gap: 48px;
  }
}
.process-widget p {
  max-width: 360px;
  color: var(--wild-sand);
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .process-widget p {
    font-size: 18px;
  }
}
.process-widget a {
  color: var(--wild-sand);
}
.process-widget a:hover {
  color: var(--bs-primary);
}
.process-widget a i {
  color: var(--wild-sand);
}
.process-widget a i:hover {
  color: var(--bs-primary);
}

.process-widget-devider > * {
  position: relative;
}
.process-widget-devider > *:after {
  content: "";
  content: "";
  width: 39%;
  height: 1px;
  min-width: 70px;
  background-color: rgba(245, 245, 245, 0.12);
  position: absolute;
  top: 15%;
  right: 0;
  transform: translateX(50%);
  display: none;
}
@media (min-width: 992px) {
  .process-widget-devider > *:not(:last-child):after {
    display: block;
  }
}

.comment-widget {
  display: flex;
  row-gap: 20px;
  column-gap: 24px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .comment-widget {
    flex-direction: row;
  }
}
.comment-widget__image {
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  border-radius: 500px;
}
.comment-widget__username {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 4px;
}
@media (min-width: 576px) {
  .comment-widget__username {
    font-size: 20px;
  }
}
.comment-widget__footer {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.comment-widget p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 16px !important;
}
@media (min-width: 576px) {
  .comment-widget p {
    font-size: 18px;
  }
}
.comment-widget span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .comment-widget span {
    font-size: 18px;
  }
}
.comment-widget .btn-replay {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  color: var(--black-2);
  display: flex;
  column-gap: 4px;
  align-items: center;
}
@media (min-width: 576px) {
  .comment-widget .btn-replay {
    font-size: 18px;
  }
}

/* ========== Components: Team Widget Style ============= */
.team-join-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: center;
  height: 100%;
}
.team-join-widget .widget-icon {
  max-width: 40px;
}
.team-join-widget .widget-icon img {
  width: 100%;
}
.team-join-widget p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  border-bottom: 1px solid rgba(var(--black-2-rgb), 0.1);
  padding-bottom: 16px;
}
@media (min-width: 576px) {
  .team-join-widget p {
    font-size: 18px;
  }
}
.team-join-widget .widget-link a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: flex;
  column-gap: 10px;
  align-items: center;
  color: var(--black-2);
}
@media (min-width: 576px) {
  .team-join-widget .widget-link a {
    font-size: 18px;
  }
}
.team-join-widget__inner {
  max-width: 224px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}

.social-list-widget {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 40px;
}
.social-list-widget a:hover {
  transform: scale(1.2);
}

/* ========== Component : Accordion Style  ============= */
.accordion-style > * {
  padding-top: 28px;
  padding-bottom: 28px;
}
.accordion-style > *:first-child {
  padding-top: 0px;
}
.accordion-style > *:last-child {
  padding-bottom: 0px;
}
.accordion-style .accordion-item {
  border-radius: 0;
}
.accordion-style .accordion-item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .accordion-style .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.accordion-style .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.accordion-style .accordion-item .accordion-button i {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #3147ff;
  font-size: 12px;
  padding: 5px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  width: 20px;
  min-width: 20px;
  max-height: 20px;
  border-radius: 500px;
}
.accordion-style .accordion-item .accordion-button:after {
  content: "\f068";
  width: 20px;
  height: 20px;
  color: #0a102f;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  padding-bottom: 1px;
  transition: 0.4s;
}
.accordion-style .accordion-item .accordion-button.collapsed::after {
  content: "+";
  font-family: "Font Awesome 6 Free";
  transition: 0.4s;
}
.accordion-style .accordion-item .accordion-item__body {
  padding: 20px 22px;
  background-color: var(--wild-sand);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .accordion-style .accordion-item .accordion-item__body {
    font-size: 18px;
  }
}
@media (min-width: 480px) {
  .accordion-style .accordion-item .accordion-item__body {
    padding: 28px 30px;
  }
}
.accordion-style .accordion-item .accordion-item__body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.accordion-style .accordion-item:not(:last-child) {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

/* ========== Components: Form Style ============= */
.newsletter-form-1 {
  display: flex;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(245, 245, 245, 0.12);
  position: relative;
}
.newsletter-form-1 .submit-button {
  position: absolute;
  right: 0;
  top: 0;
}
.newsletter-form-1 .submit-button i {
  position: relative;
  top: 0px;
  right: 0px;
  transition: 0.4s;
}
.newsletter-form-1 .form-control {
  background-color: initial;
  border-width: 0px;
  border-radius: 0px;
  width: 100%;
  height: auto;
  color: var(--wild-sand-rgb);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  padding-left: 0;
  padding-bottom: 14px;
  padding-top: 0;
}
@media (min-width: 576px) {
  .newsletter-form-1 .form-control {
    font-size: 18px;
  }
}
.newsletter-form-1 .form-control::placeholder {
  color: rgba(var(--wild-sand-rgb), 0.400000006);
}
.newsletter-form-1 .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--bs-primary);
}
.newsletter-form-1 .form-control:focus ~ .submit-button i {
  top: -2px;
  right: -3px;
}

.form-control {
  border-color: rgba(var(--black-2-rgb), 0.1);
  border-radius: 0;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: transparent;
}
.form-control::placeholder {
  color: var(--black-2);
}
.form-control:focus {
  box-shadow: none;
  outline: 0;
  border-color: rgba(var(--black-2-rgb), 1);
  background-color: transparent;
}

input.form-control {
  height: 56px;
}

textarea.form-control {
  height: 170px;
}

.form-searchbox {
  position: relative;
}
.form-searchbox button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 100%;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.select-sort {
  min-width: 163px;
}
.select-sort .nice-select {
  height: auto;
  line-height: 30px;
  padding: 0 30px 0 0;
  border: 0;
}
.select-sort .nice-select .current {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .select-sort .nice-select .current {
    font-size: 18px;
  }
}
.select-sort .nice-select:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: 0;
  height: 22px;
  margin-top: 0;
  width: 22px;
  right: 0;
  transform-origin: 50% 50%;
  top: 50%;
  transform: rotate(0);
  transform-box: fill-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -11px;
  margin-right: -5px;
}
.select-sort .nice-select.open:after {
  transform: rotate(180deg);
}
.select-sort .nice-select .list {
  width: 100%;
}

.checkout-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .checkout-form .form-control {
    font-size: 18px;
  }
}
.checkout-form textarea.form-control {
  height: 200px;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.site-menu-main {
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .site-menu-main {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.site-menu-main li {
  list-style: none;
}
.site-menu-main ul {
  list-style: none;
  margin-left: 0;
}
.site-menu-main a {
  text-decoration: none;
}

.site-menu-main .nav-item {
  display: inherit;
}
@media (min-width: 992px) {
  .site-menu-main .nav-item {
    padding: 12px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
@media (min-width: 1200px) {
  .site-menu-main .nav-item {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
.site-menu-main .nav-link-item {
  color: #050505;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
  text-transform: uppercase;
}
.site-menu-main .nav-link-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #198754;
  transition: 0.3s;
}
.site-menu-main .nav-link-item:hover {
  color: inherit;
}
@media (min-width: 992px) {
  .site-menu-main .nav-link-item:hover {
    color: #198754;
  }
}
@media (min-width: 992px) {
  .site-menu-main .nav-link-item {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    color: #f5f5f5;
  }
  .site-menu-main .nav-link-item:hover::after {
    width: 100%;
  }
}

.site-menu-main .sub-menu {
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, top 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  display: flex;
  column-gap: 92px;
  min-width: 227px;
  margin-top: 25px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu {
    background-color: #fff;
    position: absolute;
    top: 200%;
    left: 0;
  }
}
.site-menu-main .sub-menu_list {
  width: 100%;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu_list {
    padding: 12px 0;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu .sub-menu {
    top: 0 !important;
    left: 100%;
  }
}
.site-menu-main .sub-menu--row {
  display: flex;
}
.site-menu-main .sub-menu--item {
  color: #000 !important;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  transition: 0.4s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: initial;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
  .site-menu-main .sub-menu--item:not(.site-menu-main .sub-menu--item:last-child) {
    margin-bottom: 7px;
  }
}
.site-menu-main .sub-menu--item > a {
  transition: 0.4s;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item > a {
    transition: 0.4s;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 25px;
    padding-right: 25px;
    color: inherit;
  }
}
.site-menu-main .sub-menu--item > a > i {
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-menu-main .sub-menu--item:hover > a {
  color: red;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item:first-child a {
    padding-top: 0;
    padding-bottom: 2px;
  }
}
.site-menu-main .sub-menu--item:last-child {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.site-menu-main .sub-menu--item:last-child a {
  padding-bottom: 0;
}
.site-menu-main .sub-menu_item {
  /* ----- SUB MENU CART ITEM(TABLET & MOBILE) ----- */
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu_item .child-sub ~ .sub-menu {
    margin-top: 30px;
    padding-top: 5px;
  }
}
.site-menu-main .sub-menu_item.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}
.site-menu-main .sub-menu_item-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgb(251, 251, 251);
  padding: 12px 12px 12px 0;
}
.site-menu-main .sub-menu_item-cart:hover {
  background-color: rgb(250, 250, 250);
}
.site-menu-main .sub-menu_item-cart-image {
  width: 60px;
}
.site-menu-main .sub-menu_item-cart-image img {
  width: 100%;
}
.site-menu-main .sub-menu_item-cart-text h4 {
  font-size: 18px;
}
.site-menu-main .sub-menu_item-cart-text p {
  font-size: 14px;
  color: #777;
}
.site-menu-main .sub-menu_item-cart .remove-btn {
  background-color: transparent;
  border: none;
  outline: none;
}
.site-menu-main .sub-menu_item-cart-total {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.site-menu-main .sub-menu_item-cart-total .total-value {
  display: flex;
  justify-content: space-between;
}
.site-menu-main .sub-menu_item-cart-btn {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  li.nav-item-has-children {
    position: relative;
  }
}
li.nav-item-has-children .fa-angle-down,
li.nav-item-has-children .fa-angle-right {
  transition: 0.4s;
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    pointer-events: visible;
  }
  li.nav-item-has-children:hover .fa-angle-down {
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover .drop-trigger:not(.child-sub)::before {
    top: 88%;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
li.nav-item-has-children.child-item:hover .fa-angle-right {
  transform: rotate(90deg);
}

.site-menu-main > li .sub-menu > ul > li > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #050505;
  padding: 14px 21px;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-menu-main > li .sub-menu > ul > li > a {
    padding: 9px 26px;
    font-size: 18px;
  }
}
.site-menu-main > li .sub-menu > ul > li > a .menu-item-text {
  position: relative;
}
.site-menu-main > li .sub-menu > ul > li > a .menu-item-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: auto;
  right: 0;
  height: 2px;
  width: 0;
  background-color: #202030;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .site-menu-main > li .sub-menu > ul > li > a .menu-item-text::after {
    bottom: 2px;
  }
}
.site-menu-main > li .sub-menu > ul > li > a:hover .menu-item-text::after {
  left: 0;
  right: auto;
  width: 100%;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .site-header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .site-header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 24px;
    position: relative;
  }
  .site-header .mobile-menu-trigger span:before,
  .site-header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }
  .site-header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .site-header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .site-header .item-right {
    align-items: center;
  }
  .site-header .menu-block {
    position: fixed;
    width: 350px;
    max-width: 100%;
    background-color: #fff;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(100%);
    padding: 0 16px 60px;
    z-index: 1099;
  }
  .site-header .menu-block.active {
    transform: translate(0%);
  }
  .site-menu-main > li {
    line-height: 1;
    margin: 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-menu-main > li > a {
    line-height: 50px;
    padding: 18px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .site-menu-main > li > a {
    display: block;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li > a i {
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(-90deg);
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .menu-block .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    top: 0;
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .site-header .menu-block .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    visibility: hidden;
  }
  .site-header .menu-block .mobile-menu-head.active .current-menu-title {
    visibility: visible;
  }
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #050505;
    font-size: 40px;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    color: #000000;
  }
}
@media (max-width: 991px) {
  .site-header .menu-block .site-menu-main {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-menu-main > li .sub-menu {
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    margin: 0;
    padding: 0 10px 10px 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    overflow-x: hidden;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .site-menu-main > li .sub-menu_list {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li .sub-menu_list.cart-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .site-menu-main > li .sub-menu.child-sub {
    padding-left: 36px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .site-menu-main > li .sub-menu.child-sub .sub-menu_list {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li .sub-menu.active {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    z-index: 99;
    padding-top: 20px;
  }
  .site-menu-main .sub-menu_list .sub-menu_item:first-child a {
    padding-top: 0;
  }
  .site-menu-main > li .sub-menu > ul > li > a,
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
  }
  .menu-overlay.transition {
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}
/*Custom Css for menu*/
@media (min-width: 992px) {
  .site-menu-main a {
    display: flex;
    align-items: center;
  }
  .site-menu-main i {
    margin-left: 10px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (min-width: 992px) {
  .site-header--menu-center .menu-block-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .nav-item-has-children.cart-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .reveal-header .site-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .reveal-header li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
  }
  .reveal-header li.nav-item-has-children:hover > .sub-menu.megamenu {
    top: 100%;
  }
}

.menu-block.active {
  overflow-y: auto;
}

@media (min-width: 480px) {
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}
/*Preloader css*/
:root {
  --header-color: transparent;
}

div#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

div#loading img {
  z-index: 9999;
  width: 25%;
}
@media (min-width: 567px) {
  div#loading img {
    width: 17%;
  }
}
@media (min-width: 768px) {
  div#loading img {
    width: 15%;
  }
}
@media (min-width: 992px) {
  div#loading img {
    width: 7%;
  }
}

.preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #ffffff !important;
}

.preloader img {
  width: 500px;
}

/*Header Css StaRT*/
.site-navbar {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.site-navbar.border-none {
  border-bottom: none;
}
@media (min-width: 992px) {
  .site-navbar {
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.site-navbar .menu-block-wrapper {
  flex-grow: 1;
  align-items: center;
}
@media (min-width: 992px) {
  .site-navbar .menu-block-wrapper {
    display: flex !important;
    flex-basis: auto;
    justify-content: center;
  }
}

.site-header {
  padding-left: 16px;
  padding-right: 16px;
  /* ----- HEADER CTA BUTTON ----- */
  /* ----- OFFCANVAS ----- */
}
.site-header--black.reveal-header {
  background-color: var(--black-2);
}
.site-header--black.reveal-header .nav-link,
.site-header--black.reveal-header .menu-link-item {
  color: #fff;
}
.site-header--white.reveal-header {
  background-color: #fff;
}
.site-header--white.reveal-header .nav-link,
.site-header--white.reveal-header .menu-link-item {
  color: var(--black-2);
}
.site-header--white:not(.reveal-header) .site-navbar {
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}
.site-header--white .nav-link:hover,
.site-header--white .nav-link-item:hover {
  color: inherit;
}
.site-header--white .nav-link:after,
.site-header--white .nav-link-item:after {
  background-color: inherit;
}
@media (min-width: 768px) {
  .site-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .site-header {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.site-header--white {
  background-color: #fff;
}
.site-header--white .nav-link-item {
  color: #050505;
}
.site-header--white .mobile-menu-trigger span {
  background-color: #050505;
}
.site-header--white .mobile-menu-trigger span:before, .site-header--white .mobile-menu-trigger span:after {
  background-color: #050505;
}
.site-header--sticky:not(.mobile-sticky-enable) {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  .site-header--sticky:not(.mobile-sticky-enable) {
    position: fixed !important;
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).scrolling {
    transform: translateY(-100%);
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header {
    transform: translateY(0%);
    box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
    z-index: 1000;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .site-navbar {
    border: none;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .nav-item {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .header-group-1 .menu-link-item {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .header-group-2 .menu-link-item {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .header-group-2 .menu-link-item .menu-btn {
    width: 50px;
    height: 50px;
  }
}
.site-header--sticky.mobile-sticky-enable {
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed !important;
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.scrolling {
  transform: translateY(-100%);
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.reveal-header {
  transform: translateY(0%);
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
  z-index: 9999;
  height: 100%;
  background-color: transparent !important;
}
.site-header--sticky.mobile-sticky-enable.reveal-header .site-navbar {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 5px;
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
}
@media (min-width: 768px) {
  .site-header--sticky.mobile-sticky-enable.reveal-header {
    height: auto;
  }
}
.site-header--menu-center .container {
  position: relative;
}
.site-header--menu-center .menu-block-wrapper {
  position: static;
}
@media (min-width: 992px) {
  .site-header--menu-center .menu-block {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .sub-menu.megamenu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-50%) translateY(-2px);
    left: 50%;
  }
}
.site-header--menu-left .menu-block .site-menu-main {
  justify-content: flex-start;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .site-header--menu-left .menu-block {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .site-header--menu-left .menu-block-wrapper {
    margin-left: 94px;
  }
}
.site-header--menu-right .menu-block {
  margin-left: auto;
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .sub-menu.megamenu {
    left: 100%;
    transform: translateX(-100%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-100%) translateY(-10px);
    left: 100%;
  }
}
.site-header--dark .nav-link-item {
  color: #fff;
}
.site-header--dark .btn {
  color: #fff;
}
.site-header--dark .btn--outline {
  border-color: #fff;
}
.site-header--dark .btn--outline:hover {
  background-color: #fff;
  color: var(--bs-primary);
}
.site-header--dark .btn:hover {
  color: var(--bs-primary);
}
.site-header--dark .logo-light {
  display: none;
}
.site-header--dark .logo-dark {
  display: block;
}
.site-header .header-cta-btn-wrapper {
  display: none;
  margin-left: 30px;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-wrapper {
    display: flex;
    align-items: center;
    column-gap: 30px;
  }
}
.site-header .header-cta-btn-wrapper .menu-link-item {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-wrapper .menu-link-item {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
.site-header .header-cta-btn-wrapper .menu-link-item.has-children:hover > .sub-cart-menu {
  top: 100%;
  margin-top: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99;
  pointer-events: visible;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu {
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, top 0.3s ease, margin-top 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  display: flex;
  column-gap: 92px;
  min-width: 320px;
  margin-top: 25px;
  padding: 28px;
  cursor: text;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-wrapper .sub-cart-menu {
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
  }
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item {
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #050505;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-info-image {
  background: #f5f5f5;
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  height: 80px;
  width: 80px;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-info h4 {
  font-size: 18px;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-info p {
  font-size: 16px;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item button {
  background: none;
  border: none;
  font-size: 20px;
  color: #959595;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-total {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-total .amount {
  display: flex;
  justify-content: space-between;
  color: #050505;
}
.site-header .header-cta-btn-wrapper .sub-cart-menu .cart-menu_item-total .cart-btn {
  display: flex;
  text-transform: uppercase;
  padding: 12px 24px;
}
.site-header .header-group-1 {
  display: flex;
}
@media (min-width: 992px) {
  .site-header .header-group-1 {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .site-header .header-group-1 {
    gap: 48px;
  }
}
.site-header .header-group-1 .menu-btn {
  display: flex;
}
.site-header .header-group-2 {
  display: flex;
  gap: 12px;
}
.site-header .header-group-2 .menu-link-item .menu-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(245, 245, 245, 0.12);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.site-header .header-cta-btn-mobile {
  display: block;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header .transition {
    transition: all 0.5s ease;
  }
}

@media (min-width: 480px) {
  .header-btns {
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .header-btns {
    margin-right: 0;
  }
}

.dynamic-sticky-bg.reveal-header {
  background: var(--bg);
}
.dynamic-sticky-bg.dark-mode-texts .menu-block.active .nav-link-item {
  color: red !important;
}
.dynamic-sticky-bg.dark-mode-texts .menu-social-share li a {
  color: var(--color-headings-2);
}

.sticky-bg-white.reveal-header {
  background: #fff;
}
.sticky-bg-white.reveal-header .dark-version-logo {
  display: none !important;
}
.sticky-bg-white.reveal-header .light-version-logo {
  display: block !important;
}
.sticky-bg-white.reveal-header .menu-sep-left {
  position: relative;
}
.sticky-bg-white.reveal-header .menu-sep-left::before {
  content: "";
  border-left: rgba(255, 0, 0, 0.5) !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 26px;
  z-index: 9;
}

/* Landing Specific Header Adjustment */
/* Header */
.offcanvas {
  background-color: #198754;
  width: 569px !important;
  height: 100vh;
}
.offcanvas > *::-webkit-scrollbar {
  width: 2px;
  background: transparent;
}
.offcanvas > *::-webkit-scrollbar-thumb {
  background: var(--black-2);
}
.offcanvas > *::-webkit-scrollbar-track {
  background: transparent;
}
.offcanvas-header {
  justify-content: flex-end;
  padding: 40px 48px;
}
.offcanvas-header .close-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 80px 60px;
}
.offcanvas-body-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
.offcanvas-contact-widget {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.offcanvas-contact-widget .contact-widget {
  max-width: 194px;
}
.offcanvas-footer {
  padding: 0 80px 60px;
}
.offcanvas-social-links {
  display: flex;
  gap: 16px;
}
.offcanvas-social-links a {
  display: flex;
  gap: 12px;
  color: #050505;
}

/* ----- Quantity ----- */
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quantity p {
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 500;
}
.quantity button {
  background: none;
  border: none;
  outline: none;
  color: var(--black-2);
  font-size: 20px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-02 {
  padding: 16px 28px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 131px;
  max-height: 56px;
}
.quantity-02 p {
  padding-left: 12px;
  padding-right: 12px;
  font-weight: 500;
  margin-bottom: 0 !important;
}
.quantity-02 button {
  background: none;
  border: none;
  outline: none;
  color: var(--black-2);
  font-size: 20px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-gutter-30 .slick-list {
  margin: 0 -15px;
}
.slider-gutter-30 .slick-list .slick-slide {
  padding: 0 15px;
}

.slider-gutter-16 .slick-list {
  margin: 0 -8px;
}
.slider-gutter-16 .slick-list .slick-slide {
  padding: 0 8px;
}

.slide-equal-height .slick-track {
  display: flex;
}
.slide-equal-height .slick-track .slick-slide {
  height: auto;
}

.slider-dots {
  margin-bottom: 0 !important;
}
.slider-dots .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  bottom: 0;
}
@media (min-width: 768px) {
  .slider-dots .slick-dots {
    padding-top: 60px;
  }
}
.slider-dots .slick-dots li {
  width: 12px;
  height: 12px;
}
.slider-dots .slick-dots li button {
  height: 100%;
  width: 100%;
  border: 1px solid var(--black-2);
  border-radius: 500px;
}
.slider-dots .slick-dots li button::before {
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--black-2);
  border-radius: 500px;
  opacity: 1;
  transform: scale(0);
  transition: 0.4s;
}
.slider-dots .slick-dots li.slick-active button:before {
  transform: scale(1);
}

/* ========== Components: Preloader Style ============= */
.loading {
  overflow: hidden;
}

.preloader-wrapper {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999999 !important;
  position: fixed;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #3147FF;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/* ========== Components: Navigation Style ============= */
.divider-navigation-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.divider-navigation-inline li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .divider-navigation-inline li {
    font-size: 18px;
  }
}
.divider-navigation-inline li.active > button::before, .divider-navigation-inline li.active > a::before, .divider-navigation-inline li.active > span::before, .divider-navigation-inline li:hover > button::before, .divider-navigation-inline li:hover > a::before, .divider-navigation-inline li:hover > span::before {
  width: 100%;
}
.divider-navigation-inline li > button, .divider-navigation-inline li > a, .divider-navigation-inline li > span {
  position: relative;
  color: var(--black-2);
}
.divider-navigation-inline li > button::before, .divider-navigation-inline li > a::before, .divider-navigation-inline li > span::before {
  content: "";
  height: 2px;
  width: 0%;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: var(--black-2);
  transition: 0.4s;
}
.divider-navigation-inline li > button.active::before, .divider-navigation-inline li > a.active::before, .divider-navigation-inline li > span.active::before {
  width: 100%;
}
.divider-navigation-inline li::after {
  content: "/";
  padding-left: 14px;
}
.divider-navigation-inline li:last-child::after {
  display: none;
}
.divider-navigation-inline.fw-regular li {
  font-weight: 400;
}
.list-style-regular {
  color: var(--wild-sand);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.list-style-regular li {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.list-style-regular li > button, .list-style-regular li > a, .list-style-regular li > span {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .list-style-regular li > button, .list-style-regular li > a, .list-style-regular li > span {
    font-size: 18px;
  }
}

.list-style-bullet {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.list-style-bullet li {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .list-style-bullet li {
    font-size: 18px;
  }
}
.list-style-bullet li::before {
  content: "";
  height: 6px;
  width: 6px;
  display: inline-block;
  background-color: var(--black-2);
  border-radius: 500px;
}

/* ========== Components: Pagination Style ============= */
.pagination {
  display: flex;
  column-gap: 12px;
  justify-content: center;
}
.pagination-item {
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  border-radius: 500px;
  border: 1px solid rgba(var(--black-2-rgb), 0.1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  color: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
@media (min-width: 576px) {
  .pagination-item {
    font-size: 18px;
  }
}
.pagination-item:hover, .pagination-item.active {
  background-color: var(--bs-primary);
}

/* ========== Components: Blog Card Style ============= */
.blog-card {
  background-color: #fff;
}
.blog-card__image {
  position: relative;
  height: 230px;
}
@media (min-width: 992px) {
  .blog-card__image {
    height: 340px;
  }
}
.blog-card__date {
  background-color: var(--bs-primary);
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  padding-top: 4px;
  padding-bottom: 2px;
}
.blog-card__date > * {
  display: block;
}
.blog-card__date .day {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
}
@media (min-width: 576px) {
  .blog-card__date .day {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .blog-card__date .day {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .blog-card__date .day {
    font-size: 44px;
  }
}
.blog-card__date .month {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .blog-card__date .month {
    font-size: 18px;
  }
}
.blog-card__categories {
  margin-bottom: 9px;
}
.blog-card__category {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  margin-bottom: 5px;
}
.blog-card__body {
  padding: 30px;
}
@media (min-width: 992px) {
  .blog-card__body {
    padding: 40px;
  }
}
.blog-card__title {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  margin-bottom: 48px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .blog-card__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .blog-card__title {
    font-size: 26px;
  }
}
.blog-card__title a {
  color: inherit;
}
.blog-card__title a:hover {
  color: inherit;
}
.blog-card:hover .blog-card__title a {
  text-decoration: underline;
}
.blog-card--large {
  background: #fff;
  box-shadow: 0px 3px 12px 0px rgba(5, 5, 5, 0.04);
}
.blog-card--large .blog-card__image {
  height: 320px;
}
@media (min-width: 768px) {
  .blog-card--large .blog-card__image {
    height: 520px;
  }
}
.blog-card--large .blog-card__title {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
}
@media (min-width: 576px) {
  .blog-card--large .blog-card__title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .blog-card--large .blog-card__title {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .blog-card--large .blog-card__title {
    font-size: 44px;
  }
}

/* ----> Blog Media */
.blog-media {
  background-color: #fff;
  /* ----> Blog Media Small */
}
@media (min-width: 576px) {
  .blog-media {
    display: flex;
  }
}
.blog-media__image {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .blog-media__image {
    max-width: 219px;
    min-width: 200px;
  }
}
.blog-media__date {
  background-color: var(--bs-primary);
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 4px;
  padding-bottom: 2px;
}
.blog-media__date > * {
  display: block;
}
.blog-media__date .day {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
}
@media (min-width: 576px) {
  .blog-media__date .day {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .blog-media__date .day {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .blog-media__date .day {
    font-size: 44px;
  }
}
.blog-media__date .month {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .blog-media__date .month {
    font-size: 18px;
  }
}
.blog-media__categories {
  margin-bottom: 9px;
}
.blog-media__category {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  margin-bottom: 5px;
}
.blog-media__body {
  padding: 30px;
}
@media (min-width: 992px) {
  .blog-media__body {
    padding: 40px;
  }
}
.blog-media__title {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  margin-bottom: 48px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .blog-media__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .blog-media__title {
    font-size: 26px;
  }
}
.blog-media__title a {
  color: inherit;
}
.blog-media__title a:hover {
  color: inherit;
}
.blog-media:hover .blog-media__title a {
  text-decoration: underline;
}
.blog-media--small {
  display: flex;
  gap: 24px;
  background-color: transparent;
}
.blog-media--small .blog-media__image {
  min-width: 110px;
  max-width: 110px;
  min-height: 96px;
  max-height: 96px;
  height: 96px;
  width: 110px;
}
.blog-media--small .blog-media__body {
  padding: 0;
}
.blog-media--small .blog-media__title {
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .blog-media--small .blog-media__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .blog-media--small .blog-media__title {
    font-size: 24px;
  }
}
.blog-media--small .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
}

.blog-list-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.blog-sidebar__title {
  color: #959595;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sidebar-post-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.progressbar-block {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.progressbar-block .progressbar-single {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.progressbar-block .progressbar-single .progressbar-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .progressbar-block .progressbar-single .progressbar-label {
    font-size: 18px;
  }
}
.progressbar-block .progressbar-single .progressbar {
  height: 2px;
  background-color: rgba(5, 5, 5, 0.1) !important;
  overflow: hidden;
  position: relative;
}
.progressbar-block .progressbar-single .progressbar .bar {
  height: 100%;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
}

/* ========== Home 1 : Hero Section Style ============= */
.hero-section-01 {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .hero-section-01 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .hero-section-01 {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .hero-section-01 {
    padding-top: 200px;
    padding-bottom: 130px;
  }
}
@media (min-width: 1400px) {
  .hero-section-01 {
    padding-top: 250px;
  }
}
.hero-section-01 .hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .hero-section-01 .hero-content {
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .hero-section-01 .hero-content__title {
    max-width: 460px;
  }
}
@media (min-width: 1200px) {
  .hero-section-01 .hero-content__title {
    max-width: 540px;
  }
}
@media (min-width: 1400px) {
  .hero-section-01 .hero-content__title {
    max-width: 743px;
  }
}
.hero-section-01 .hero-content p {
  color: var(--wild-sand);
}
@media (min-width: 992px) {
  .hero-section-01 .hero-content p {
    max-width: 290px;
  }
}
@media (min-width: 1200px) {
  .hero-section-01 .hero-content p {
    max-width: 543px;
  }
}
.hero-content__navigation-circle {
  position: relative;
}
.hero-content__navigation-circle-text {
  position: absolute;
  inset: 0;
  animation: rotate 10s linear infinite;
}
.hero-content__navigation-circle-wrapper {
  position: absolute;
  top: -32%;
  right: 12%;
  width: 23.15%;
}
.hero-content__image {
  position: relative;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ========== Home 2 : Hero Section Style ============= */
.hero-section-02 {
  position: relative;
  z-index: 1;
}
.hero-section-02 .hero-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  text-align: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section-02 .hero-content__title {
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-section-02 .hero-content p {
  margin-left: auto;
  margin-right: auto;
  color: var(--wild-sand);
}
@media (min-width: 992px) {
  .hero-section-02 .hero-content p {
    max-width: 852px;
  }
}
.hero-section-02 .hero-content_button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 15px;
  column-gap: 20px;
}

.hero-fluid-slider .hero-slide-single {
  position: relative;
  width: 100%;
  height: 100%;
  inset: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 100px;
}
@media (min-width: 576px) {
  .hero-fluid-slider .hero-slide-single {
    padding-bottom: 200px;
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .hero-fluid-slider .hero-slide-single {
    padding-bottom: 220px;
    padding-top: 160px;
  }
}
@media (min-width: 1200px) {
  .hero-fluid-slider .hero-slide-single {
    padding-bottom: 260px;
    padding-top: 200px;
  }
}
@media (min-width: 1400px) {
  .hero-fluid-slider .hero-slide-single {
    padding-bottom: 320px;
    padding-top: 250px;
  }
}

.hero-fluid-slider-navigation {
  position: absolute !important;
  left: 50%;
  bottom: 60px;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  transform: translateX(-50%);
}
.hero-fluid-slider-navigation .single-nav {
  cursor: pointer;
}
.hero-fluid-slider-navigation .single-nav span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: block;
  color: var(--wild-sand);
}
@media (min-width: 576px) {
  .hero-fluid-slider-navigation .single-nav span {
    font-size: 18px;
  }
}
.hero-fluid-slider-navigation .slick-track {
  display: none;
  width: 100% !important;
  margin: 0;
  transform: translate(0) !important;
  justify-content: space-between;
  border-bottom: 2px solid rgba(var(--wild-sand-rgb), 0.12);
}
@media (min-width: 576px) {
  .hero-fluid-slider-navigation .slick-track {
    display: flex;
  }
}
.hero-fluid-slider-navigation .slick-track::before, .hero-fluid-slider-navigation .slick-track:after {
  display: none;
}
.hero-fluid-slider-navigation .slick-track .single-nav {
  width: 100% !important;
  padding-bottom: 14px;
  max-width: 400px;
  position: relative;
  text-align: center;
}
.hero-fluid-slider-navigation .slick-track .single-nav::after {
  content: "";
  background-color: var(--wild-sand);
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: 0.4s;
}
.hero-fluid-slider-navigation .slick-track .single-nav.slick-current::after {
  transform: scale(1);
}
.hero-fluid-slider-navigation .slick-track .single-nav:first-child {
  text-align: left;
}
.hero-fluid-slider-navigation .slick-track .single-nav:first-child::after {
  transform-origin: left;
}
.hero-fluid-slider-navigation .slick-track .single-nav:last-child {
  text-align: right;
}
.hero-fluid-slider-navigation .slick-track .single-nav:last-child::after {
  transform-origin: right;
}

/* ========== Home 3 : Hero Section Style ============= */
.hero-section-03 {
  padding-top: 110px;
  position: relative;
}
.hero-section-03_wrapper {
  position: relative;
}
.hero-section-03 .hero-content-03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  max-width: 940px;
  padding-bottom: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-section-03 .hero-content-03 {
    text-align: initial;
    justify-content: initial;
    align-items: initial;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .hero-section-03 .hero-content-03 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-section-03 .hero-content-03__title {
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .hero-section-03 .hero-content-03 p {
    max-width: 852px;
  }
}
@media (min-width: 1200px) {
  .hero-section-03 .hero-content-03 p {
    max-width: 852px;
  }
}
.hero-section-03 .hero-content-03_button-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 24px;
}
@media (max-width: 767px) {
  .hero-section-03 .hero-content-03_button-group a {
    display: block;
    width: 100%;
  }
}
.hero-section-03 .hero-content-03_image-3 {
  width: 100%;
}
@media (min-width: 992px) {
  .hero-section-03 .hero-content-03_image-3 {
    position: absolute;
    width: 43%;
    z-index: -1;
    height: 100%;
    right: 0;
    top: 0;
  }
}
.hero-section-03 .hero-content-03_image-3 img {
  height: 100%;
  width: 100%;
  object-position: top;
}
.hero-contact-widgets {
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 15px;
  padding-bottom: 60px;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-contact-widgets {
    column-gap: 108px;
  }
}
@media (min-width: 992px) {
  .hero-contact-widgets {
    text-align: initial;
    justify-content: initial;
    padding-bottom: 80px;
  }
}

/* ========== Testimonial Section Style ============= */
.testimonial-section-01 .testimonial-01__slider {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .testimonial-section-01 .testimonial-01__slider {
    max-width: 870px;
  }
}
.testimonial-section-01 .testimonial-01__slider-wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .testimonial-section-01 .testimonial-01__slider-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.testimonial-01__slider {
  position: static;
}
.testimonial-01__slider .slick-arrow {
  position: absolute;
  left: 0;
  right: 0;
  height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .testimonial-01__slider .slick-arrow {
    display: none !important;
  }
}
.testimonial-01__slider .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
.testimonial-01__slider .slick-arrow.slick-next::before {
  content: url("../image/icons/arrow-right.svg");
}
.testimonial-01__slider .slick-arrow.slick-next:hover::before {
  content: url("../image/icons/arrow-right-white.svg");
}
.testimonial-01__slider .slick-arrow.slick-prev {
  left: 0;
  right: auto;
}
.testimonial-01__slider .slick-arrow.slick-prev::before {
  content: url("../image/icons/arrow-left.svg");
}
.testimonial-01__slider .slick-arrow.slick-prev:hover::before {
  content: url("../image/icons/arrow-left-white.svg");
}
.testimonial-01__slider .slick-dots {
  display: flex;
  position: relative;
  bottom: 0;
  justify-content: center;
  margin-top: 30px;
}
.testimonial-01__slider .slick-dots li {
  width: auto;
  height: auto;
}
.testimonial-01__slider .slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 500px;
  background-color: rgba(255, 255, 255, 0.3);
}
.testimonial-01__slider .slick-dots li button::before {
  display: none;
}
.testimonial-01__slider .slick-dots li.slick-active button {
  background-color: var(--bs-primary);
}

/* ==========  ABout Section Style ============= */
.about-section .content-text-block-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .about-section .content-text-block-wrapper {
    text-align: initial;
    align-items: initial;
    row-gap: 60px;
  }
}

/* ==========  Award Section Style ============= */
.award-section {
  position: relative;
}
.award-section__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
.award-widget {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}
.award-widget .date {
  width: 30%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  order: 2;
  display: flex;
  justify-content: end;
}
@media (min-width: 992px) {
  .award-widget .date {
    width: 16%;
  }
}
@media (min-width: 992px) {
  .award-widget .date {
    order: 1;
    display: block;
  }
}
.award-widget__title {
  width: 70%;
  font-weight: 500;
  line-height: 1.42;
  font-size: 18px;
  order: 1;
}
@media (min-width: 768px) {
  .award-widget__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .award-widget__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .award-widget__title {
    width: 34%;
    order: 2;
  }
}
.award-widget p {
  width: 96%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  order: 3;
}
@media (min-width: 576px) {
  .award-widget p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .award-widget p {
    width: 40%;
  }
}
.award-widget__link {
  width: 4%;
  display: flex;
  display: flex;
  justify-content: end;
  order: 4;
}
@media (min-width: 992px) {
  .award-widget__link {
    width: 10%;
  }
}
.award-widget__link i {
  color: var(--black-2);
  transform: rotate(-45deg);
  transition: 0.4s;
}
.award-widget:hover .award-widget__link i {
  transform: rotate(0deg);
}

/* ========== Home 3 : Cta Section Style ============= */
.cta-section-03 {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.cta-section-03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 576px) {
  .cta-section-03 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .cta-section-03 {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}
@media (min-width: 992px) {
  .cta-section-03 {
    padding-top: 140px;
    padding-bottom: 160px;
  }
}
@media (min-width: 1200px) {
  .cta-section-03 {
    padding-top: 180px;
    padding-bottom: 200px;
  }
}
@media (min-width: 1400px) {
  .cta-section-03 {
    padding-top: 197px;
    padding-bottom: 227;
  }
}
.cta-section-03 .cta-content-03 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  text-align: center;
}
.cta-section-03 .cta-content-03__subtitle {
  color: rgba(245, 245, 245, 0.7);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-section-03 .cta-content-03__title {
  text-transform: uppercase;
}

/* ========== Home 2 : Cta Section Style ============= */
.cta-section-02__wrapper {
  background-color: var(--bs-primary);
  padding: 40px;
}
@media (min-width: 576px) {
  .cta-section-02__wrapper {
    padding: 60px;
  }
}
@media (min-width: 768px) {
  .cta-section-02__wrapper {
    padding: 90px;
  }
}
@media (min-width: 1200px) {
  .cta-section-02__wrapper {
    padding: 110px;
  }
}
.cta-section-02 .cta-content-02 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.cta-section-02 .cta-content-02 .subtitle {
  color: var(--black-2);
}
@media (min-width: 992px) {
  .cta-section-02 .cta-content-02 {
    text-align: initial;
    flex-direction: row;
  }
}
.cta-section-02 .cta-content-02__text-block {
  max-width: 440px;
}
@media (min-width: 992px) {
  .cta-section-02 .cta-content-02__text-block {
    max-width: 450px;
  }
}
@media (min-width: 1200px) {
  .cta-section-02 .cta-content-02__text-block {
    max-width: 500px;
  }
}
.cta-section-02 .cta-content-02__title {
  text-transform: uppercase;
}

/* ========== Home 1: Cta Section Style ============= */
.cta-section .cta-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
  text-align: center;
}
.cta-section .cta-content__title {
  text-transform: uppercase;
}

/* ========== Team Section Style ============= */
.team-section {
  position: relative;
  z-index: 1;
}
.team-section__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 45%;
  max-width: 647px;
}
.team-section__shape img {
  width: 100%;
}

/* ========== Team Section Style ============= */
.team-details-main-section .contact-form h3 {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .team-details-main-section .contact-form h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .team-details-main-section .contact-form h3 {
    font-size: 26px;
  }
}
.team-details-main-section .team-member-info p {
  margin-bottom: 20px;
}
.team-details-main-section .team-member-info p:last-child {
  margin-bottom: 0;
}
.team-details-main-section .team-member__position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-details-main-section .team-member__name {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .team-details-main-section .team-member__name {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .team-details-main-section .team-member__name {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .team-details-main-section .team-member__name {
    font-size: 44px;
  }
}
.team-details-main-section .team-member-contact-widgets {
  padding-top: 60px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 60px;
}
@media (min-width: 768px) {
  .team-details-main-section .team-member-contact-widgets {
    column-gap: 108px;
  }
}
@media (min-width: 992px) {
  .team-details-image {
    padding-right: 35px;
  }
}
.team-details-image img {
  width: 100%;
}

/* ========== Content Section Style ============= */
.content-text-block-02-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 992px) {
  .content-text-block-02-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
  }
}
.content-list-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 556px;
  justify-content: space-between;
  row-gap: 12px;
}
.content-list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.content-list li::before {
  content: "";
  width: 6px;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  min-height: 6px;
  max-height: 6px;
  border-radius: 500px;
  background-color: var(--black-2);
  top: 12px;
  position: relative;
}
.content-list-item {
  display: flex;
  column-gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .content-list-item {
    font-size: 18px;
  }
}

/* ==========  Footer Style  ============= */
.footer-section {
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--wild-sand);
}
.footer-section__shape {
  bottom: 0;
  left: 33%;
  width: 34%;
  height: 46%;
  position: absolute;
  z-index: -1;
  opacity: 0.3;
  display: none;
}
.footer-section__shape img {
  width: 100%;
}
@media (min-width: 768px) {
  .footer-section__shape {
    display: block;
  }
}
@media (min-width: 576px) {
  .footer-section {
    font-size: 18px;
  }
}
.footer-section__content-block {
  max-width: 374px;
}
.footer-section__content-block .footer-brand {
  display: flex;
  column-gap: 10px;
  margin-bottom: 40px;
}
.footer-section__content-block .footer-brand span {
  color: #f5f5f5;
  font-size: 34px;
  font-family: Space Grotesk;
  font-weight: 500;
}
.footer-section__content-text {
  margin-bottom: 44px;
}
.footer-section .row--list-block {
  gap: 40px;
  max-width: 580px;
}
@media (min-width: 768px) {
  .footer-section .row--list-block {
    justify-content: space-between;
  }
}
.footer-section .row--list-block .footer-title {
  color: var(--scorpion);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-section a:hover {
  color: var(--bs-primary);
}
.footer-section .copyright-block p {
  color: var(--wild-sand);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .footer-section .copyright-block p {
    font-size: 18px;
  }
}
.footer-section .copyright-block ul {
  margin-bottom: 0px;
}
.footer-section .copyright-block ul li {
  display: flex;
}
.footer-section .copyright-block .copyright-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: space-between;
}
.footer-section .copyright-block .divider-navigation-inline li::after {
  color: var(--scorpion);
}
.footer-section .copyright-block .footer-social-list li a {
  display: flex;
  column-gap: 12px;
  align-items: center;
  color: var(--wild-sand);
}
.footer-section .copyright-block .footer-social-list li a:hover {
  color: var(--bs-primary);
}
.footer-section .copyright-block .footer-social-list li a i {
  width: 18px;
  height: 18px;
}
.footer-section .copyright-block .footer-social-list li a span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .footer-section .copyright-block .footer-social-list li a span {
    font-size: 18px;
  }
}
.footer-section .footer-contact-block {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 768px) {
  .footer-section .footer-contact-block {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
  }
}

/* ========== Component : banner Style  ============= */
.inner_banner-section {
  padding-top: 130px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .inner_banner-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .inner_banner-section {
    padding-top: 170px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .inner_banner-section {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
.inner_banner-content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.inner_banner-title {
  text-align: center;
  color: #000;
  font-weight: 500;
  line-height: 1.18;
  font-size: 38px;
}
@media (min-width: 480px) {
  .inner_banner-title {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .inner_banner-title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .inner_banner-title {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .inner_banner-title {
    font-size: 72px;
  }
}
@media (min-width: 1400px) {
  .inner_banner-title {
    font-size: 80px;
  }
}

.banner__page-navigator {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  flex-direction: column;
}
@media (min-width: 576px) {
  .banner__page-navigator {
    font-size: 18px;
  }
}
@media (min-width: 480px) {
  .banner__page-navigator {
    flex-direction: row;
  }
}
.banner__page-navigator li {
  text-transform: capitalize;
  text-align: center;
}
@media (min-width: 480px) {
  .banner__page-navigator li {
    text-align: initial;
  }
}
.banner__page-navigator li:after {
  content: "/";
  font-family: "Font Awesome 6 Free";
  color: var(--scorpion);
  padding-right: 5px;
}
.banner__page-navigator li:last-child:after {
  display: none;
}
.banner__page-navigator .active {
  color: var(--wild-sand);
}
.banner__page-navigator a {
  color: inherit;
}

/* ========== Brand Section Style ============= */
.brand-section .brand-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 0 13px;
  animation-name: ticker;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  column-gap: 50px;
  animation-duration: 5s;
}
@media (min-width: 768px) {
  .brand-section .brand-wrapper {
    animation-duration: 10s;
    column-gap: 100px;
  }
}
@media (min-width: 992px) {
  .brand-section .brand-wrapper {
    animation-duration: 20s;
    column-gap: 170px;
  }
}
@media (min-width: 1400px) {
  .brand-section .brand-wrapper {
    animation-duration: 30s;
  }
}
.brand-section .brand-wrapper .icon-single img {
  opacity: 0.3;
}
.brand-section .brand-wrapper .icon-single img:hover {
  opacity: 1;
}

@keyframes ticker {
  0% {
    transform: translateX(0, 0, 0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes ticker-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ========== Stats Section Style ============= */
.stats-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
}
@media (min-width: 992px) {
  .stats-section .row--custom {
    align-items: center;
  }
}
.stats-section .stats-wrapper .stats-single-row {
  --bs-gutter-y: 30px;
  justify-content: center;
}
.stats-section .stats-wrapper .stats-single {
  align-items: center;
  text-align: center;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.stats-section .stats-wrapper .stats-single__count {
  color: var(--black-2);
  font-weight: 500;
  line-height: 1.18;
  font-size: 38px;
  margin-bottom: 4px;
}
@media (min-width: 480px) {
  .stats-section .stats-wrapper .stats-single__count {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .stats-section .stats-wrapper .stats-single__count {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .stats-section .stats-wrapper .stats-single__count {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .stats-section .stats-wrapper .stats-single__count {
    font-size: 72px;
  }
}
@media (min-width: 1400px) {
  .stats-section .stats-wrapper .stats-single__count {
    font-size: 80px;
  }
}

/* ==========  Contact Section Style ============= */
.contact-section .contact-form-box {
  background-color: #fff;
  padding: 40px 60px;
}
.contact-section .contact-form-box .contact-form__title {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact-section .contact-form-box .contact-form__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .contact-section .contact-form-box .contact-form__title {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .contact-section .contact-form-box .contact-form__title {
    margin-bottom: 45px;
  }
}
.contact-section .contact-form-box form {
  align-items: center;
}
.contact-section .contact-text-block__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (min-width: 992px) {
  .contact-section .contact-text-block__wrapper {
    row-gap: 60px;
  }
}
.contact-section .contact-widgets-02 {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  max-width: 414px;
}

.product-details__price {
  color: var(--black-2);
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-details__title {
  margin-bottom: 8px;
}
.product-details__rating-block {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 32px;
}
.product-details__rating-block span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .product-details__rating-block span {
    font-size: 18px;
  }
}
.product-details__button-group {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .product-details__button-group {
    margin-top: 60px;
  }
}
.product-details__specification {
  margin-bottom: 32px;
}
.product-details__specification li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .product-details__specification li {
    font-size: 18px;
  }
}
.product-details__specification li span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .product-details__specification li span {
    font-size: 18px;
  }
}

.tab__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 476px;
  margin-bottom: 32px;
  row-gap: 15px;
  column-gap: 10px;
}
.tab__nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  display: flex;
  flex-direction: column;
  color: var(--black-2) !important;
}
@media (min-width: 576px) {
  .tab__nav .nav-link {
    font-size: 18px;
  }
}
.tab__nav .nav-link::after {
  content: "";
  height: 2px;
  width: 0%;
  background-color: var(--black-2);
  transition: 0.4s;
}
.tab__nav .nav-link.active {
  background-color: initial;
}
.tab__nav .nav-link.active::after {
  content: "";
  left: 0;
  right: auto;
  width: 100%;
  background-color: var(--black-2);
}
.tab__nav .nav-link.active span {
  color: inherit;
}
.tab__nav.nav {
  --bs-nav-link-padding-x: 0rem;
  --bs-nav-link-padding-y: 0rem;
}

.product-section__head {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.blog-meta {
  flex-wrap: wrap;
  display: flex;
  column-gap: 18px;
  row-gap: 10px;
}
@media (min-width: 576px) {
  .blog-meta {
    gap: 0px;
  }
}
.blog-meta > * {
  display: flex;
  column-gap: 8px;
  align-items: center;
  color: var(--black-2);
}
.blog-meta > * span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.blog-meta > * + *::before {
  width: 6px;
  height: 6px;
  background: var(--black-2);
  border-radius: 500px;
  margin-left: 12px;
}
@media (min-width: 576px) {
  .blog-meta > * + *::before {
    content: "";
  }
}

.blog-details-content blockquote {
  line-height: 1.7142857143;
  font-size: 20px;
  display: flex;
  column-gap: 24px;
  margin-top: 28px;
  margin-bottom: 48px;
}
@media (min-width: 576px) {
  .blog-details-content blockquote {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .blog-details-content blockquote {
    font-size: 28px;
  }
}
.blog-details-content blockquote::before {
  content: url(../image/icons/icon-quote.svg);
}
.blog-details-content__footer {
  padding-top: 28px;
}
.blog-details-content__footer .tags {
  display: flex;
  column-gap: 8px;
}

/* ========== Service Details Main Style ============= */
.service-details_main-section img {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .service-details_main-section img {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .service-details_main-section img {
    margin-bottom: 80px;
  }
}
.service-details_main-section h3 {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .service-details_main-section h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .service-details_main-section h3 {
    font-size: 26px;
  }
}
.service-details_main-section p {
  margin-bottom: 20px;
}
.service-details_main-section p:last-child {
  margin-bottom: 0;
}
.service-details_main-section span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--black-2);
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .service-details_main-section span {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .service-details_main-section span {
    margin-bottom: 60px;
  }
}
.service-details_main-section ul {
  padding-top: 40px;
  margin-bottom: 0;
}
.service-details_main-image-row {
  margin-top: 40px;
}
@media (min-width: 576px) {
  .service-details_main-image-row {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .service-details_main-image-row {
    margin-top: 80px;
  }
}

.single-page-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .single-page-content p {
    font-size: 18px;
  }
}

.product-details__image {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.product-details__image .product-image-thumbnail img {
  cursor: pointer;
}

.portfolio-details_main-section img {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .portfolio-details_main-section img {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .portfolio-details_main-section img {
    margin-bottom: 80px;
  }
}
.portfolio-details_main-section h3 {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .portfolio-details_main-section h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .portfolio-details_main-section h3 {
    font-size: 26px;
  }
}
.portfolio-details_main-section p {
  margin-bottom: 20px;
}
.portfolio-details_main-section p:last-child {
  margin-bottom: 0;
}
.portfolio-details_facts-block {
  display: flex;
  column-gap: 15px;
  row-gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 60px;
}
.portfolio-details_facts-block .single-facts__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .portfolio-details_facts-block .single-facts__title {
    font-size: 18px;
  }
}
.portfolio-details_facts-block span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .portfolio-details_facts-block span {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .portfolio-details_facts-block {
    margin-bottom: 80px;
  }
}
.portfolio-details_main-image-row img {
  margin-bottom: 0;
}

.error-section {
  padding-top: 200px;
  padding-bottom: 260px;
  position: relative;
}
.error-section-shape {
  position: absolute;
  opacity: 0.2;
  bottom: 0;
  z-index: -1;
  width: 54%;
  left: 23%;
}
.error-section-shape img {
  width: 100%;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.error-content__image {
  margin-bottom: 48px;
}
.error-content__image img {
  width: 100%;
}

/* ==========  checkout Section Style ============= */
.checkout-section .redeem-block {
  background-color: var(--wild-sand);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.checkout-section .redeem-block span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .checkout-section .redeem-block span {
    font-size: 18px;
  }
}
.checkout-section .redeem-block span a {
  color: var(--black-2);
}
.checkout-section .redeem-block span a span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
}
@media (min-width: 576px) {
  .checkout-section .redeem-block span a span {
    font-size: 18px;
  }
}
.checkout-section .checkout-form h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dusty-gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.checkout-section .checkout-form h4 span {
  color: var(--black-2);
}
.checkout-section .checkout-form .nice-select {
  font-size: 18px;
  height: 56px;
  padding-top: 9px;
  padding-bottom: 9px;
  width: 100%;
}
.checkout-section .checkout-form .nice-select .list {
  width: 100%;
}
.checkout-section .checkout-form .nice-select:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: 0;
  height: 22px;
  margin-top: 0;
  width: 22px;
  right: 24px;
  transform-origin: 50% 50%;
  top: 50%;
  transform: rotate(0);
  transform-box: fill-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -11px;
  margin-right: -5px;
}
.checkout-section .checkout-form .nice-select.open:after {
  transform: rotate(180deg);
}
.checkout-section .order-bottom-block {
  margin-top: 40px;
}
.checkout-section .order-bottom-block label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--black-2);
}
@media (min-width: 576px) {
  .checkout-section .order-bottom-block label {
    font-size: 18px;
  }
}
.checkout-section .order-bottom-block h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  margin-top: 28px;
  margin-bottom: 12px;
}
@media (min-width: 576px) {
  .checkout-section .order-bottom-block h4 {
    font-size: 18px;
  }
}
.checkout-section .order-bottom-block p {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .checkout-section .order-bottom-block p {
    margin-bottom: 40px;
  }
}
.checkout-section .order-bottom-block p a {
  text-decoration: underline;
  color: var(--black-2);
  font-weight: 500;
}
.checkout-section .order-bottom-block form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-section .order-bottom-block form #cart-select {
  accent-color: black;
  height: 18px;
  width: 18px;
}
.checkout-section ul > * {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  display: flex;
  justify-content: space-between;
}
.checkout-section ul .order-item-details {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dusty-gray);
}
.checkout-section ul .order-item-single {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
}
.checkout-section ul .order-item-total {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.67;
  color: var(--black-2);
}
@media (min-width: 576px) {
  .checkout-section ul .order-item-total {
    font-size: 18px;
  }
}
.checkout-form-bottom {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .checkout-form-bottom {
    margin-top: 60px;
  }
}

/* Common: Section Heading */
.section-heading {
  margin-bottom: 40px;
}
@media (min-width: 575px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .section-heading {
    margin-bottom: 80px;
  }
}
.section-heading--white .section-heading__title {
  color: #fff;
}
.section-heading--row {
  row-gap: 30px;
}
.section-heading--row > .row {
  justify-content: space-between;
  align-items: flex-end;
  --bs-gutter-y: 30px;
}
.section-heading--row .section-heading__title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-heading--row .section-heading__button {
    text-align: right;
  }
}

.heading-xxl {
  font-weight: 500;
  line-height: 1.15;
  font-size: 42px;
}
@media (min-width: 480px) {
  .heading-xxl {
    font-size: 46px;
  }
}
@media (min-width: 576px) {
  .heading-xxl {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .heading-xxl {
    font-size: 68px;
  }
}
@media (min-width: 1200px) {
  .heading-xxl {
    font-size: 80px;
  }
}
@media (min-width: 1400px) {
  .heading-xxl {
    font-size: 96px;
  }
}

.heading-xl {
  font-weight: 500;
  line-height: 1.18;
  font-size: 38px;
}
@media (min-width: 480px) {
  .heading-xl {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .heading-xl {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .heading-xl {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .heading-xl {
    font-size: 72px;
  }
}
@media (min-width: 1400px) {
  .heading-xl {
    font-size: 80px;
  }
}

.heading-lg {
  font-weight: 500;
  line-height: 1.23;
  font-size: 34px;
}
@media (min-width: 480px) {
  .heading-lg {
    font-size: 42px;
  }
}
@media (min-width: 576px) {
  .heading-lg {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .heading-lg {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .heading-lg {
    font-size: 52px;
  }
}
@media (min-width: 1400px) {
  .heading-lg {
    font-size: 60px;
  }
}

.heading-md {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
}
@media (min-width: 576px) {
  .heading-md {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .heading-md {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .heading-md {
    font-size: 44px;
  }
}

.heading-sm {
  font-weight: 500;
  line-height: 1.38;
  font-size: 20px;
}
@media (min-width: 768px) {
  .heading-sm {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .heading-sm {
    font-size: 26px;
  }
}

.section-heading {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
.section-heading__title {
  font-weight: 500;
  line-height: 1.27;
  font-size: 28px;
}
@media (min-width: 576px) {
  .section-heading__title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .section-heading__title {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .section-heading__title {
    font-size: 44px;
  }
}

.subtitle {
  color: var(--dusty-gray);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

/* ========== Common: Spacing Combos  ============= */
.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.section-padding.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-bottom {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom {
    padding-bottom: 134px;
  }
}

.section-padding-top:not(.has-section-heading) {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 134px;
  }
}
.section-padding-top.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding-top.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding-top.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-95 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-95 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

.section-padding-100 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section-padding-130 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 676px) {
  .section-padding-130 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-130 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-130 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.section-padding-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 676px) {
  .section-padding-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.section-padding-top-120 {
  padding-top: 60px;
}
@media (min-width: 676px) {
  .section-padding-top-120 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-top-120 {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-top-120 {
    padding-top: 120px;
  }
}

.section-padding-bottom-95 {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom-95 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom-95 {
    padding-bottom: 95px;
  }
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-top-100 {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .padding-top-100 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .padding-top-100 {
    padding-top: 100px;
  }
}

.padding-bottom-100 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-100 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-100 {
    padding-bottom: 100px;
  }
}

.padding-top-130 {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .padding-top-130 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .padding-top-130 {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .padding-top-130 {
    padding-top: 130px;
  }
}

.padding-top-140 {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .padding-top-140 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .padding-top-140 {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .padding-top-140 {
    padding-top: 140px;
  }
}

.padding-top-120 {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .padding-top-120 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .padding-top-120 {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .padding-top-120 {
    padding-top: 130px;
  }
}

.padding-bottom-120 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-120 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-120 {
    padding-bottom: 120px;
  }
}

.padding-bottom-130 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-130 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-130 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .padding-bottom-130 {
    padding-bottom: 130px;
  }
}

.padding-bottom-140 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-140 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-140 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .padding-bottom-140 {
    padding-bottom: 140px;
  }
}

.padding-bottom-150 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-150 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-150 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .padding-bottom-150 {
    padding-bottom: 150px;
  }
}

/* ----------------------------
Common: Spacing Utilities
-------------------------------*/
.mb-30 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb-30 {
    margin-bottom: 30px;
  }
}

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

.mt-32 {
  margin-top: 32px;
}
@media (min-width: 992px) {
  .mt-32 {
    margin-top: 32px;
  }
}

.mb-32 {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .mb-32 {
    margin-bottom: 32px;
  }
}

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

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

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

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

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

.mb-48 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-48 {
    margin-bottom: 44px;
  }
}

.mb-45 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-45 {
    margin-bottom: 45px;
  }
}

.mb-50 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}

.mb-res-48 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-res-48 {
    margin-bottom: 44px;
  }
}

.mb-res-45 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-res-45 {
    margin-bottom: 45px;
  }
}

.mb-res-50 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mb-res-50 {
    margin-bottom: 50px;
  }
}

.mb-70 {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .mb-70 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-70 {
    margin-bottom: 70px;
  }
}

.mb-80 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-80 {
    margin-bottom: 80px;
  }
}

.mb-90 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-90 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-90 {
    margin-bottom: 90px;
  }
}

.mb-100 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-100 {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .mb-100 {
    margin-bottom: 100px;
  }
}

.mb-130 {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .mb-130 {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .mb-130 {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .mb-130 {
    margin-bottom: 130px;
  }
}

.mb-140 {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .mb-140 {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .mb-140 {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .mb-140 {
    margin-bottom: 140px;
  }
}

.mb-res-60 {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .mb-res-60 {
    margin-bottom: 60px;
  }
}

.mb-res-70 {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .mb-res-70 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-res-70 {
    margin-bottom: 70px;
  }
}

.mb-res-80 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-res-80 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-res-80 {
    margin-bottom: 80px;
  }
}

.mb-res-90 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-res-90 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .mb-res-90 {
    margin-bottom: 90px;
  }
}

.mb-res-100 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mb-res-100 {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .mb-res-100 {
    margin-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .mb-res-100 {
    margin-bottom: 100px;
  }
}

.mb-res-130 {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .mb-res-130 {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .mb-res-130 {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .mb-res-130 {
    margin-bottom: 130px;
  }
}

.mb-res-140 {
  margin-bottom: 60px;
}
@media (min-width: 576px) {
  .mb-res-140 {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .mb-res-140 {
    margin-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .mb-res-140 {
    margin-bottom: 140px;
  }
}

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

/* ----------------------------
Common: Responsive Spacer
-------------------------------*/
.spacer-top-80 {
  margin-top: 40px;
}
@media (min-width: 576px) {
  .spacer-top-80 {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .spacer-top-80 {
    margin-top: 80px;
  }
}

.spacer-bottom-80 {
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .spacer-bottom-80 {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .spacer-bottom-80 {
    margin-bottom: 80px;
  }
}

/* ----------------------------
Common: Spacing Gutters
-------------------------------*/
.gutter-y-20 {
  --bs-gutter-y: 20px;
}

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

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

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

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

.gutter-x-40 {
  --bs-gutter-x: 40px;
}

.gutter-x-50 {
  --bs-gutter-x: 50px;
}

.gutter-x-60 {
  --bs-gutter-x: 60px;
}

@media (min-width: 992px) {
  .gutter-x-80 {
    --bs-gutter-x: 30px;
  }
}
@media (min-width: 1200px) {
  .gutter-x-80 {
    --bs-gutter-x: 50px;
  }
}
@media (min-width: 1400px) {
  .gutter-x-80 {
    --bs-gutter-x: 80px;
  }
}

.gutter-60 {
  --bs-gutter-y: 30px;
}
@media (min-width: 992px) {
  .gutter-60 {
    --bs-gutter-x: 30px;
  }
}
@media (min-width: 1200px) {
  .gutter-60 {
    --bs-gutter-x: 60px;
  }
}

/* ----------------------------
Common: Spacing Gap
-------------------------------*/
.gap-y-default {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.gap-y-40 {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.row-gap-8 {
  row-gap: 8px;
}

/******* Utility Classes ********/
.justify-center {
  justify-content: center;
}

.h-full {
  height: 100%;
}

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

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

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

/******* Utility Text Colors ********/
/******* Utility Background Colors ********/
.bg-white {
  background: #FFFFFF;
}

.bg-cream-dark {
  background-color: #F5EFEB;
}

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

.bg-primary {
  background: var(--bs-primary);
}

.bg-sand {
  background-color: var(--wild-sand);
}

.text-sand {
  color: var(--wild-sand);
}

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

.text-white {
  color: #fff !important;
}

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

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

.text-gray {
  color: #959595;
}
