/*-----------------------------------------------------------------
Theme Name: Reluxe
Author: Mugli
Author URI: https://themeforest.net/user/mugli 
Version: 1.0.0 
Description: Yaazh's Aesthetics  <

-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
-------------------------------------------------------------------

01.Mixins
02.Variables
03.Typography
04.Buttons 
05.Gutter 
06.Container 
07.Animation 
08.Helping 
09.MeanMenu 
10.Preloader
11.Title 
12.Common 
13.Header 
14.Breadcumb 
15.Footer 
16.Appointment
17.Services
18.Team
19.Project 
20.Wcu
21.Pricing 
22.Intro 
23.Cta
24.About
25.Features
26.Gallery
27.Testimonial
28.Subscribe
29.Faq
30.Contact
31.Blog
32.Blog Extra
33.Sidebar

------------------------------------------------------------------*/
/* 01.Mixins */
/* 02.Variables */
/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #C28565;
  --theme2: #F9F3F0;
  --title: #0D0D0D;
  --orange: #F74F22;
  --text: #6E6E6E;
  --border: #CCCCCC;
  --border-2: #6E6E6E;
  --bg: #191919;
  --bg2: #191919;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* 03.Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input::-moz-placeholder {
  color: #767771;
}

input::placeholder {
  color: #767771;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marcellus", serif;
  margin: 0px;
  padding: 0;
  color: #004654;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 145%;
  font-weight: 700;
}

@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
}

@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: #004654;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: #0dcaf0 !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.info-text-style {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.form-contl {
  position: relative;
  margin-top: 30px;
}

.form-contl input {
  position: relative;
  padding: 17px 20px;
  height: 60px;
  background: var(--bg);
  width: 100%;
  border: 1px solid #6E6E6E;
  opacity: 0.8;
}

.form-contl input::-moz-placeholder {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.form-contl input::placeholder {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.form-contl input.style2 {
  border: none;
}

.form-contl button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
}

.form-contl button.style2 {
  background: transparent;
  color: var(--theme);
}

input.form-control,
textarea.form-control {
  outline: none;
  box-shadow: none;
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 17px 10px;
  font-size: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

input.form-control:focus,
textarea.form-control:focus {
  background-color: var(--white);
  border: 1px solid var(--border);
  outline: none;
  box-shadow: none;
}

label {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

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

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

.form-group>i.fa-envelope {
  padding-top: 1px;
}

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

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-radius: 10px;
}

input[type=checkbox]:checked~label:after {
  opacity: 1;
}

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

input[type=checkbox]~label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3.5px;
  background: var(--white);
  border: 1px solid var(--border-2);
  height: 20px;
  width: 20px;
  text-align: center;
  z-index: 9;
}

input[type=checkbox]~label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: var(--theme);
  height: 8px;
  width: 8px;
  opacity: 0;
  transition: 0.4s;
  z-index: 9;
}

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

input[type=checkbox].style2~label:before {
  background-color: white;
  border: 1px solid #f7ccd7;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

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

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

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

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

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

/* 04.Buttons */
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.theme-btn {
  display: inline-block;
  position: relative;
  padding: 22px 30px;
  gap: 10px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  background: #0dcaf0;
  z-index: 1;
  line-height: 1;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.theme-btn i {
  margin-left: 6px;
}

.theme-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--text);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}

.theme-btn:hover {
  color: var(--white) !important;
}

.theme-btn:hover:before {
  top: -96%;
}

.theme-btn-2 {
  color: #004654;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
}

.theme-btn-2:hover {
  letter-spacing: 5px;
}

.arrow-btn {
  display: inline-block;
  position: absolute;
  top: 7px;
  right: -43px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  margin-top: -0.4em;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.arrow-btn:hover {
  background: var(--theme2);
  color: var(--title);
}

.arrow-btn.style2 {
  background: var(--theme2);
  color: var(--title);
}

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

.btn-wrapper {
  position: relative;
  max-width: 220px;
}

.btn-wrapper:hover .arrow-btn {
  background: var(--theme2);
  color: var(--title);
}

.btn-wrapper:hover .theme-btn {
  background-color: var(--theme2);
  color: var(--title);
}

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

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

.link-btn {
  display: inline-block;
  color: var(--text);
  text-align: center;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.link-btn i {
  margin-left: 10px;
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
}

.link-btn:hover {
  color: var(--theme2);
}

.link-btn:hover i {
  margin-left: 10px;
  transform: rotate(0);
}

/* 05.Gutter */
/*----------------------------------------------
    # Gutter  style here
----------------------------------------------*/
@media (min-width: 1600px) {
  .gy-30 {
    --bs-gutter-y: 30px;
  }

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

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

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

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

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

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

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

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

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

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

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

/* 06.Container */
/*----------------------------------------------
    # Container  style here
----------------------------------------------*/
@media (min-width: 1400px) {
  .causes-wrapper.style1 .container {
    max-width: 1352px;
  }

  .header-section-2 .container {
    max-width: 1585px;
    margin-left: 20px;
    margin-right: auto;
  }
}

@media (min-width: 1400px) and (max-width: 1899px) {
  .header-section-2 .container {
    margin-left: auto;
  }
}

@media (min-width: 2000px) {
  .header-section-2 .container {
    max-width: 100%;
    margin-left: auto;
  }

  .header-section-2 .container .mega-menu-wrapper {
    padding-right: 225px;
  }
}

@media (min-width: 2000px) and (max-width: 1899px) {
  .header-section-2 .container {
    margin-right: auto;
  }
}

/* 07.Animation */
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

.ripple-effect {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #F3E7E0;
  border: 1px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(255, 217, 196);
  animation: rippleOne 2s infinite;
}

.ripple-effect .playerImg {
  width: 19px;
  height: 24px;
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-bob-x {
  0% {
    transform: translateX(30px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

.bounce-x {
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    width: var(--progress-width);
  }
}

.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/* 08.Helping */
/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  animation: rippleOne 3s infinite;
}

.ripple::before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(245, 255, 255, 0.3);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}

.page-nav-wrap ul li {
  display: inline-block;
  text-align: center;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid #E3E3E3;
  color: var(--title);
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}

.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.box-shadow {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-110 {
  padding-top: 110px;
}

@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}

@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.margin-top-10 {
  margin-top: -10px;
}

.margin-top-5 {
  margin-top: -5px;
}

.margin-top-60 {
  margin-top: -65px;
}

@media (max-width: 1399px) {
  .margin-top-60 {
    margin-top: -25px;
  }
}

@media (max-width: 1199px) {
  .margin-top-60 {
    margin-top: -27px;
  }
}

@media (max-width: 991px) {
  .margin-top-60 {
    margin-top: -75px;
  }
}

@media (max-width: 767px) {
  .margin-top-60 {
    margin-top: -65px;
  }
}

.margin-top-8 {
  margin-top: -10px;
}

.mt-n30 {
  margin-top: -30px !important;
}

.mt-n50 {
  margin-top: -50px !important;
}

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

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

.mr-7 {
  margin-right: 7px;
}

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

.mr-44 {
  margin-right: 44px;
}

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

@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: 25px;
  }
}

.ml-50 {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.mt-n10 {
  margin-top: -10px;
}

.mt-n5 {
  margin-top: -5px;
}

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

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

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

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

.mt-60 {
  margin-top: 55px;
}

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

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

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

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

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

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

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

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

.mx-345 {
  max-width: 345px;
}

.mx-410 {
  max-width: 410px;
}

.mx-440 {
  max-width: 440px;
}

.mx-660 {
  max-width: 660px;
}

.mx-545 {
  max-width: 545px;
}

.mx-630 {
  max-width: 630px;
}

.mx-850 {
  max-width: 850px;
}

.mx-848 {
  max-width: 848px;
}

.mx-705 {
  max-width: 705px;
}

.mx-770 {
  max-width: 770px;
}

.mx-300 {
  max-width: 300px;
}

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

.center {
  text-align: center;
  margin: 0 auto;
}

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

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

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

.bg-color2 {
  background-color: var(--bg2);
}

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

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

.text-dark2 {
  color: #838387 !important;
}

.text-bg-color2 {
  color: var(--bg2) !important;
}

.text-theme-color {
  color: #004654 !important;
}

.text-theme-color2 {
  color: var(--theme2) !important;
}

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

.bg-transparent {
  background: transparent;
}

.border-theme {
  border: 1px solid var(--theme);
}

/* 09.MeanMenu */
/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items {
    flex-wrap: wrap;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* 10.Preloader */
/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid #0dcaf0;
  border-top-color: #004654;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Marcellus", serif, "DM Sans", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: #004654;
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  color: #0dcaf0;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Marcellus", serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color:  #004654;
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.back-to-top {
  border-radius: 12px;
  background-color: #004654;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: #0dcaf0;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* 11.Title */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.section-title {
  position: relative;
  z-index: 99;
}

.section-title .subtitle {
  color: #004654;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
}

.section-title h2 {
  color: #004654;
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 37px;
    line-height: 47.6px;
  }
}

.section-title p {
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-align: start;
  margin-top: 15px;
}

.section-title-area {
  position: relative;
  z-index: 5;
}

.section-title-area .desc p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* 12.Common */
.social-profile {
  position: absolute;
  right: 1rem;
  top: 1rem;
  max-height: 380px;
  content: "";
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  z-index: 9;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.social-profile ul {
  max-width: 50px;
  margin: 0 auto;
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  border-radius: 144px;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-border-radius: 144px;
  -moz-border-radius: 144px;
  -ms-border-radius: 144px;
  -o-border-radius: 144px;
}

.social-profile ul li {
  margin-bottom: 8px;
  display: block;
  text-align: center;
}

.social-profile ul li:last-child {
  margin-bottom: 0px;
}

.social-profile ul li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background: var(--white);
  color: var(--title);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.social-profile ul li a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.social-profile .plus-btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background-color: var(--theme);
  color: var(--white) !important;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.social-profile .plus-btn a {
  background-color: var(--theme);
  color: var(--white) !important;
}

.social-profile:hover ul {
  transform: translateY(10%);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.social-media li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  transition: all 0.4s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.social-media li a:hover {
  background: var(--theme2);
  color: var(--title);
  border: 1px solid var(--border);
}

.social-media.style2 li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: var(--white);
  color: var(--title);
  transition: all 0.4s;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.social-media.style2 li a:hover {
  background: var(--theme);
  color: var(--white) !important;
  border: 1px solid var(--theme);
}

.social-media.style3 li a {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  background: transparent;
  color: var(--title);
  transition: all 0.4s;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.social-media.style3 li a:hover {
  color: var(--theme) !important;
  border: none;
}

.fancy-box {
  display: flex;
  align-items: center;
  gap: 19px;
}

.fancy-box.style1 .fancy-item {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.fancy-box.style1 .fancy-item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.fancy-box.style1 .fancy-item p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 240px;
}

.fancy-box.style1 .fancy-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fancy-box.style1 .fancy-item .icon img {
  width: 45px;
  height: 45px;
}

.fancy-box.style2 .fancy-item {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.fancy-box.style2 .fancy-item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.fancy-box.style2 .fancy-item p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 240px;
}

.fancy-box.style2 .fancy-item .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fancy-box.style2 .fancy-item .icon img {
  width: 45px;
  height: 45px;
}

.fancy-box.style2 .fancy-item .icon.active {
  background: var(--theme);
}

.fancy-box.style3 .fancy-item {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.fancy-box.style3 .fancy-item h4 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 10px;
}

.fancy-box.style3 .fancy-item p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.fancy-box.style3 .fancy-item .item {
  width: 73px;
  height: 73px;
  line-height: 73px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fancy-box.style3 .fancy-item .item img {
  width: 73px;
  height: 73px;
}

.fancy-box.style4 .fancy-item {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.fancy-box.style4 .fancy-item h4 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 10px;
}

.fancy-box.style4 .fancy-item p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.fancy-box.style4 .fancy-item .item {
  width: 73px;
  height: 73px;
  line-height: 73px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.fancy-box.style4 .fancy-item .item img {
  width: 73px;
  height: 73px;
}

.contact-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-meta .video-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-meta .video-box .video-wrap {
  position: relative;
}

.contact-meta .video-box .video-wrap .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: 6s rippleOne linear infinite;
}

.contact-meta .video-box h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

@media (max-width: 767px) {
  .contact-meta {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 107px;
  padding-top: 24px;
  background: var(--theme);
  z-index: 9;
}

.marquee-wrapper.style-1 {
  background-color: transparent;
  line-height: 55px;
}

@media (max-width: 1399px) {
  .marquee-wrapper.style-1 {
    margin-bottom: 0px;
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .marquee-wrapper.style-1 {
    margin-bottom: -50px;
    margin: 0px 0px;
  }
}

.marquee-wrapper.style-1.text-slider {
  height: auto;
}

.marquee-wrapper.style-2 {
  line-height: 55px;
}

.text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}

@media (max-width: 767px) {
  .text-slider {
    font-size: 36px;
  }
}

.text-slider img {
  margin-bottom: 10px;
  margin-right: 8px;
  margin-left: 10px;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-item.style1 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: transparent;
  -webkit-text-stroke: 1px #bcb8b1;
  font-family: "Marcellus", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.marquee-item.style1 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}

.marquee-item.style-2 .text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}

@media (max-width: 767px) {
  .marquee-item.style-2 .text-slider {
    font-size: 36px;
  }
}

.marquee-item.style-2 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme2), var(--theme2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}

.marquee-item.style-2 .text-style:hover {
  color: var(--theme2);
  background-size: 100% 3px;
  opacity: 0.7;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }

  100% {
    right: -100%;
  }
}

.marque-section-2 {
  position: relative;
}

.modal-details .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
}

.modal-details .title-box .title h3 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}

.modal-details .title-box .price {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.modal-details .desc p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.star ul li i {
  color: var(--theme2);
}

.progress-wrap {
  margin-bottom: 15px;
}

.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.progress-wrap .progress-meta .title {
  color: var(--theme);
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

@media (max-width: 500px) {
  .progress-wrap .progress-meta {
    gap: 210px;
  }
}

@media (max-width: 470px) {
  .progress-wrap .progress-meta {
    gap: 150px;
  }
}

.progress-wrap .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #D9DDFF !important;
  border-radius: 10px;
  overflow: visible;
}

.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}

@media (max-width: 575px) {
  .progress-wrap .progress-container {
    width: 85%;
  }
}

.progress-wrap .progress-container:before,
.progress-wrap .progress-container:after {
  position: absolute;
  top: -4px;
  content: "";
  width: 8px;
  height: 12px;
  background-color: var(--theme);
  z-index: 3;
  border-radius: 2px;
}

.progress-wrap .progress-container:before {
  left: 0;
}

.progress-wrap .progress-container:after {
  right: 30%;
}

.progress-wrap .progress-container.style2:before,
.progress-wrap .progress-container.style2:after {
  background-color: var(--theme2);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}

.arrow-button .arrow-prev {
  margin-right: 12px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  color: #004654;
  border: 1px solid #004654;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: #004654;
  border: 1px solid #004654;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
  background-color: #004654;
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme2);
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme2);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.conter-box.style1 {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1199px) {
  .conter-box.style1 {
    gap: 15px;
    padding: 5px;
  }
}

@media (max-width: 991px) {
  .conter-box.style1 {
    display: flex;
    justify-content: center;
  }
}

.conter-box.style1 .item img {
  width: 70px;
  height: 70px;
  padding: 10px;
  background: #004654;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.conter-box.style1 .counter-item .counter-number {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

@media (max-width: 1399px) {
  .conter-box.style1 .counter-item .counter-number {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 1199px) {
  .conter-box.style1 .counter-item .counter-number {
    font-size: 30px;
    line-height: 50px;
  }
}

.conter-box.style1 .counter-item .plus {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

@media (max-width: 1199px) {
  .conter-box.style1 .counter-item .plus {
    font-size: 30px;
    line-height: 50px;
  }
}

.conter-box.style1 .counter-item span {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

@media (max-width: 1199px) {
  .conter-box.style1 .counter-item span {
    font-size: 14px;
  }
}

.conter-box.style2 {
  width: 333px;
  padding: 25px;
  background: var(--theme);
  display: flex;
  align-items: center;
  gap: 20px;
}

.conter-box.style2 .item img {
  width: 70px;
  height: 70px;
}

.conter-box.style2 .counter-item .counter-number {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.conter-box.style2 .counter-item .plus {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.conter-box.style2 .counter-item span {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.conter-box.style3 {
  width: 225px;
  padding: 25px 15px 25px 30px;
  background: var(--white);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--theme);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.conter-box.style3 .item img {
  width: 70px;
  height: 70px;
}

.conter-box.style3 .counter-item .counter-number {
  color: var(--theme);
  font-family: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.conter-box.style3 .counter-item .plus {
  color: var(--theme);
  font-family: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.conter-box.style3 .counter-item span {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.conter-box.style4 {
  padding: 40px;
  background: var(--white);
  text-align: center;
}

.conter-box.style4 h2 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.conter-box.style4 p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.before-after-section .thumb {
  width: 100%;
}

.before-after-section .thumb img {
  width: 100%;
}

.comment-list .comment-item {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-2);
}

.comment-list .comment-item .post-comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.comment-list .comment-item .post-comment .comment-content .name {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.comment-list .comment-item .post-comment .comment-content .commented-on {
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .commented-on {
    margin-bottom: -10px;
  }
}

.comment-list .comment-item .post-comment .comment-content .star {
  position: absolute;
  top: 15px;
  right: 15px;
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .star {
    position: relative;
    margin: 0px 0 25px 12px;
  }
}

@media (max-width: 575px) {
  .comment-list .comment-item .post-comment {
    display: flex;
    flex-direction: column;
  }
}

.star {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.star li {
  color: var(--theme);
}

.comment-form {
  margin-top: var(--blog-space-y, 50px);
  padding: 60px;
  position: relative;
  border-radius: 0;
  background: var(--bg2);
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.comment-form .inner-title {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.comment-form .rating {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
  margin-bottom: 35px;
}

@media (max-width: 575px) {
  .comment-form {
    padding: 30px;
  }
}

.checklist-wrapper.style2 {
  display: flex;
  gap: 85px;
  align-items: center;
}

.checklist-wrapper.style2 .checklist li {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .checklist-wrapper.style2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2px;
  }
}

.checklist li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #004654;
  color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-right: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.checklist li span {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.checklist.style2 {
  display: flex;
  align-items: center;
  gap: 45px;
}

.checklist.style2 li {
  margin-bottom: 20px;
}

.checklist.style2 li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: transparent;
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-right: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.checklist.style2 li span {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

@media (max-width: 767px) {
  .checklist.style2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2px;
  }
}

.checklist.style3 li {
  margin-bottom: 20px;
}

.checklist.style3 li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: transparent;
  color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-right: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.checklist.style3 li span {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.checklist.style4 {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 5px;
}

.checklist.style4 li {
  margin-bottom: 12px;
}

.checklist.style4 li i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: transparent;
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-right: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.checklist.style4 li span {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

@media (max-width: 767px) {
  .checklist.style4 {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::-moz-placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-moz-placeholder {
    font-size: 18px;
  }

  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 120px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 120px 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding1 {
  padding: 200px 0 110px;
}

@media (max-width: 1199px) {
  .section-padding1 {
    padding: 180px 0 90px;
  }
}

@media (max-width: 991px) {
  .section-padding1 {
    padding: 170px 0 80px;
  }
}

.section-padding2 {
  padding: 110px 0 270px;
}

@media (max-width: 1199px) {
  .section-padding2 {
    padding: 90px 0 240px;
  }
}

@media (max-width: 991px) {
  .section-padding2 {
    padding: 80px 0 230px;
  }
}

@media (max-width: 767px) {
  .section-padding2 {
    padding: 80px 0 190px;
  }
}

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

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

.beforeAfter-slide-image {
  position: relative;
  width: 100%;
  height: 632px;
  border: none;
  background-color: transparent;
  overflow: hidden;
  border-radius: 30px;
}

.beforeAfter-slide-image .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.beforeAfter-slide-image .slider {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 101%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.beforeAfter-slide-image .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2px;
  height: 600px;
  background: var(--white);
  cursor: pointer;
}

.beforeAfter-slide-image .slider::-moz-range-thumb {
  width: 2px;
  height: 600px;
  background: var(--white);
  cursor: pointer;
}

.beforeAfter-slide-image .foreground-img {
  background-position: left center;
  width: 49.5%;
}

.beforeAfter-slide-image .slider-button {
  pointer-events: none;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: calc(50% - 43px);
  top: calc(50% - 40px);
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.beforeAfter-slide-image .slider-button:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  border-right: solid 10px var(--title);
  border-bottom: solid 10px transparent;
  border-top: solid 10px transparent;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translate(0, -50%);
}

.beforeAfter-slide-image .slider-button:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  border-left: solid 10px var(--title);
  border-bottom: solid 10px transparent;
  border-top: solid 10px transparent;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translate(0, -50%);
}

@media (max-width: 991px) {
  .beforeAfter-slide-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .beforeAfter-slide-image {
    height: 190px;
  }
}

/* 13.Header */
/*----------------------------------------------
    # Header style here
----------------------------------------------*/
.header-section-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.header-section-4 {
  border-bottom: 1px solid var(--bg2);
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}

@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}

@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}

.main-header-wrapper .main-header-items {
  width: 100%;
}

.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #D4DCED;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}

@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #D4DCED;
  padding-right: 50px;
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}

@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}

.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}

@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 {
  background-color: transparent;
}

.header-1 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper {
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}

@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 5px;
  }

  .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}

@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}

.header-1 .header-right {
  gap: 5px !important;
}

@media (max-width: 1399px) {
  .header-1 .header-right {
    gap: 3px !important;
  }
}

@media (max-width: 450px) {
  .header-1 .header-right {
    gap: 5px !important;
  }
}

.header-1 .header-right .header-button {
  margin-left: 25px;
}

@media (max-width: 767px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}

.header-1 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .header-1 .header-right .sidebar__toggle {
    color: var(--white);
  }
}

.header-2 .header-left .logo {
  position: relative;
  z-index: 3;
}

.header-2 .header-left .logo .header-logo {
  position: relative;
  z-index: 5;
}

.header-2 .header-left .logo:before {
  position: absolute;
  content: "";
  top: -28px;
  left: -60px;
  background: var(--theme);
  padding: 55px 130px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .header-2 .header-left .logo:before {
    left: -133px;
    padding: 55px 160px;
  }
}

.header-2 .header-right .contact {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-2 .header-right .contact .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.header-2 .header-right .contact .icon i {
  color: var(--white);
}

.header-2 .header-right .contact .number {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.header-2 .header-main .main-menu ul li a {
  color: var(--white) !important;
}

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

.header-2 .header-main .main-menu ul li.active,
.header-2 .header-main .main-menu ul li:hover {
  color: var(--theme);
}

.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--title) !important;
}

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

.header-2 .header-main .sidebar__toggle {
  color: var(--white);
}

.header-4 {
  background-color: transparent;
}

.header-4 .header-main .main-menu ul li a {
  color: var(--white) !important;
}

.header-4 .header-main .main-menu ul li a:hover,
.header-4 .header-main .main-menu ul li a.active {
  color: var(--white) !important;
}

.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--title) !important;
}

.header-4 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
}

@media (max-width: 470px) {
  .header-4 .mega-menu-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 450px) {
  .header-4 .mega-menu-wrapper {
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .header-4 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .header-4 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}

@media (max-width: 1399px) {
  .header-4 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 5px;
  }

  .header-4 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}

@media (max-width: 1899px) {
  .header-4 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}

.header-4 .header-right {
  gap: 5px !important;
}

@media (max-width: 1399px) {
  .header-4 .header-right {
    gap: 3px !important;
  }
}

@media (max-width: 450px) {
  .header-4 .header-right {
    gap: 5px !important;
  }
}

.header-4 .header-right .header-button {
  margin-left: 25px;
}

@media (max-width: 767px) {
  .header-4 .header-right .header-button {
    display: none;
  }
}

.header-4 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .header-4 .header-right .sidebar__toggle {
    color: var(--white);
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 20px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  padding: 20px 10px;
  text-align: left;
  position: relative;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}

.header-main .main-menu ul li a i {
  margin-left: 7px;
}

.header-main .main-menu ul li a:hover,
.header-main .main-menu ul li a.active {
  color: #0dcaf0 !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  width: -moz-max-content;
  width: max-content;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  color: var(--title);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li a.active,
.header-main .main-menu ul li .submenu li a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  background: #00465457;
  color: #004654 !important;
  padding: 11px 35px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme2);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 270px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--title) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme2);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

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

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

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  color: var(--title);
  font-size: 18px;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: #004654;
  box-shadow: var(--box-shadow);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.sticky.header-1 {
  padding: 0 10px;
}

.sticky.header-1 .logo {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--white);
}

.sticky.header-1 .header-main .main-menu ul li a.active,
.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: #0dcaf0 !important;
}

@media (max-width: 450px) {
  .sticky.header-1 {
    padding: 0;
  }
}

.sticky.header-2 {
  padding: 0 10px;
}

.sticky.header-2 .logo {
  display: block;
}

.sticky.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--title) !important;
}

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

.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--white) !important;
}

.sticky.header-2 .header-main .main-menu ul li a.active,
.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

@media (max-width: 450px) {
  .sticky.header-2 {
    padding: 0;
  }
}

.offcanvas__info {
  background: #004654;
  border-left: 2px solid #0dcaf0;
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: #004654;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  color: var(--theme2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme2);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: #004654;
  color: var(--white);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding-top: 150px;
  padding-bottom: 50px;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: var(--theme);
}

.breadcrumb-wrapper .shape-image {
  position: absolute;
  right: 0;
  bottom: 10%;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .shape-image {
    display: none;
  }
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.breadcrumb-wrapper .page-heading .shape {
  position: absolute;
  top: 0px;
  right: 180px;
  animation: float-bob-x 5s linear infinite;
  -webkit-animation: float-bob-x 5s linear infinite;
}

.breadcrumb-wrapper .page-heading .title .title-heading {
  display: inline-block;
  padding: 8px 24px;
  background-color: var(--theme2);
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  border-radius: 60px;
  transform: rotate(-20deg);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  color: var(--bg2);
  font-family: "Marcellus", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  max-width: 528px;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme2);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
  opacity: 0.8;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    display: block;
  }

  .breadcrumb-wrapper .page-heading h1 {
    max-width: 100%;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items {
    flex-wrap: wrap;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
  position: relative;
  height: 380px;
  margin-bottom: -50px;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
    margin-bottom: 0;
  }

  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
    width: 100%;
    height: 100%;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
  position: absolute;
  top: -60px;
  bottom: 0;
  left: -27%;
  z-index: -1;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
    display: none;
  }
}

.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.error-wrapper {
  position: relative;
}

.error-wrapper .shape1 {
  position: absolute;
  top: 60%;
  left: 10%;
  z-index: 1;
}

.error-wrapper .shape2 {
  position: absolute;
  top: 10%;
  right: 8%;
  z-index: 1;
}

.error-wrapper .error-items h1 {
  color: var(--title);
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.error-wrapper .error-items p {
  color: var(--text);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}

.error-wrapper .error-items .btn-wrapper {
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}

/* 14.Breadcumb */
.breadcumb-wrapper {
  background-image: url(/assets/images/image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.breadcumb-wrapper .breadcumb-content {
  padding: 150px 0;
  text-align: left;
}

.breadcumb-wrapper .breadcumb-content .breadcumb-title {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .breadcumb-wrapper .breadcumb-content .breadcumb-title {
    font-size: 35px;
    line-height: 75px;
  }
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu {
  display: flex;
  justify-content: start;
  gap: 15px;
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu li a {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

@media (max-width: 375px) {
  .breadcumb-wrapper .breadcumb-content .breadcumb-menu li a {
    font-size: 20px;
    line-height: 21.2px;
  }
}

.breadcumb-wrapper .breadcumb-content .breadcumb-menu li.active {
  color: #0dcaf0;
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

@media (max-width: 375px) {
  .breadcumb-wrapper .breadcumb-content .breadcumb-menu li.active {
    font-size: 20px;
    line-height: 26.2px;
  }
}

.error-wrapper h2 {
  color: var(--title);
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-top: 70px;
  margin-bottom: 35px;
}

.account-wrapper {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.account-card {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.account-card .logo {
  margin-bottom: 60px;
}

.account-card h3 {
  color: var(--title);
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.account-card p {
  color: var(--title);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 50px;
}

.account-card h6 {
  color: var(--title);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 50px;
}

.account-card .form-ctl {
  position: relative;
}

.account-card .form-ctl .icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.account-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-thumb img {
  width: 100%;
  height: auto;
}

/* 15.Footer */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer-thumb {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}

.footer-thumb3 {
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 1;
  opacity: 0.5;
}

.footer-widgets-wrapper {
  padding: 50px 0 60px;
  position: relative;
  z-index: 9;
}

.footer-widgets-wrapper.style1 {
  background: var(--title);
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 70px;
  }
}

.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme2);
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--white);
}

@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input {
  position: relative;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.69);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.69);
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.69);
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn {
  position: absolute;
  top: 10px;
  right: 0;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .widget-head .footer-input .newsletter-btn i {
  font-size: 22px;
  transform: rotate(-40deg);
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.85);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 15px;
  gap: 10px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon.style2 a {
  border: none;
  background-color: transparent;
  color: var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon.style2 a:hover {
  background-color: #004654;
  color: var(--white) !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 55px;
  line-height: 60px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
  font-size: 24px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  font-weight: 500;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover {
  margin-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a:hover a {
  color: var(--theme2);
}

.footer-widgets-wrapper.style3 .single-footer-widget {
  margin-top: 30px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper.style3 .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--theme);
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--text);
}

@media (max-width: 767px) {
  .footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}

@media (max-width: 575px) {
  .footer-widgets-wrapper.style3 .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head h4 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input {
  position: relative;
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.69);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 20px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.69);
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input input::placeholder {
  color: rgba(255, 255, 255, 0.69);
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input .newsletter-btn {
  position: absolute;
  top: 10px;
  right: 0;
  color: var(--white);
}

.footer-widgets-wrapper.style3 .single-footer-widget .widget-head .footer-input .newsletter-btn i {
  font-size: 22px;
  transform: rotate(-40deg);
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content {
  margin-top: -1em;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content .social-icon {
  display: inline-block;
  margin-top: 15px;
  gap: 5px;
  position: relative;
  z-index: 9;
  border: 1px solid var(--border);
  max-width: 150px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper.style3 .single-footer-widget .footer-content .social-icon {
    margin-top: 10px;
  }
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content .social-icon a i {
  color: var(--title);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content.style2 {
  margin-top: 0;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content.style2 .item {
  margin-bottom: 10px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content.style2 .item p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .footer-content.style2 .item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-top: 3px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .list-area li a {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .info-text-style {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .form-contl {
  position: relative;
  margin-top: 10px;
}

.footer-widgets-wrapper.style3 .single-footer-widget .form-contl input {
  background: transparent;
  border: 1px solid var(--border);
}

.footer-widgets-wrapper.style3 .single-footer-widget .form-contl input::-moz-placeholder {
  color: var(--text);
}

.footer-widgets-wrapper.style3 .single-footer-widget .form-contl input::placeholder {
  color: var(--text);
}

.footer-top-logo {
  position: relative;
}

.footer-top-logo:before {
  position: absolute;
  content: "";
  top: 35px;
  left: -555px;
  width: 515px;
  height: 1px;
  background: var(--border-2);
}

.footer-top-logo:after {
  position: absolute;
  content: "";
  top: 35px;
  right: -555px;
  width: 515px;
  height: 1px;
  background: var(--border-2);
}

.footer-bottom {
  position: relative;
  z-index: 9;
  background: transparent;
}

.footer-bottom.style1 {
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom.style1 .footer-wrapper {
  border-top: none;
}

.footer-bottom .footer-wrapper {
  padding: 18px 0;
  border-top: 1px solid var(--border-2);
}

@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center !important;
  }
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

@media (max-width: 500px) {
  .footer-bottom .footer-wrapper p {
    font-size: 13px;
  }
}

.footer-bottom .footer-wrapper p a {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom .footer-wrapper .brand-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .footer-bottom .footer-wrapper .brand-logo {
    gap: 2px;
  }
}

.footer-bottom .footer-wrapper .brand-logo li {
  padding: 5px 7px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .footer-bottom .footer-wrapper .brand-logo li a {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .footer-bottom .footer-wrapper .brand-logo li a {
    font-size: 12px;
  }
}

.footer-bottom.style3 .footer-wrapper {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
  .footer-bottom.style3 .footer-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center !important;
  }
}

.footer-bottom.style3 .footer-wrapper p {
  color: var(--text);
}

.footer-bottom.style3 .footer-wrapper p a {
  color: var(--text) !important;
  font-weight: 600;
}

.footer-bottom.style3 .footer-wrapper ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-bottom.style3 .footer-wrapper ul li a {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.contact-info-area {
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 50px;
}

@media (max-width: 1399px) {
  .contact-info-area {
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 80px;
    justify-content: initial;
  }
}

@media (max-width: 575px) {
  .contact-info-area {
    gap: 30px;
  }
}

.contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1199px) {
  .contact-info-area .contact-info-items {
    flex-wrap: wrap;
  }
}

.contact-info-area .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  border: 2px dotted var(--white);
  border-radius: 50%;
  font-size: 30px;
  color: var(--white);
}

.contact-info-area .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-info-area .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
  text-transform: initial;
}

.contact-info-area .contact-info-items .content h3 a {
  color: var(--white);
}

/* 16.Appointment */
.appointment-form.style1 {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .appointment-form.style1 {
    margin-top: 0;
  }
}

.appointment-thumb p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 50px;
}

.appointment-thumb.style1 {
  margin-top: 60px;
}

.appointment-thumb.style1 .thumb {
  position: relative;
}

.appointment-thumb.style1 .thumb>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 30px;
  background: rgba(194, 133, 101, 0.2);
  position: relative;
  width: 100%;
}

.appointment-thumb.style1 .thumb .conter-box.style2 {
  position: absolute;
  bottom: 70px;
  right: 0;
}

/* 17.Services */
.services-wrapper.style2 {
  position: relative;
}

.services-wrapper.style2 .shape1 {
  position: absolute;
  top: -80px;
  left: 0;
}

.services-wrapper.style2 .services-thumb {
  position: relative;
  z-index: 1;
}

.services-wrapper.style2 .services-thumb img {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid var(--theme);
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

.services-wrapper.style2 .services-thumb .shape {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  z-index: 2;
}

.services-wrapper.style2 .services-thumb .shape img {
  border: none;
}

.services-wrapper.style3 .service-card.nth-child1 {
  margin-top: 20px;
}

.services-wrapper.style3 .service-card.nth-child2 {
  margin-top: 60px;
}

.services-wrapper.style3 .service-card.nth-child4 {
  margin-top: 60px;
}

.services-wrapper.style4 .services-thumb {
  width: 100%;
  height: 100%;
}

.services-wrapper.style4 .services-thumb img {
  width: 100%;
  height: 100%;
}

.services-wrapper.style4 .services-content h2 {
  margin-bottom: 5px;
}

.services-wrapper.style4 .services-content p {
  margin-bottom: 15px;
}

.services-wrapper.style4 .services-content .checklist {
  margin-bottom: 35px;
}

.services-wrapper.style4 .services-content .checklist li {
  margin-bottom: 18px;
}

.service-card.style1 {
  padding: 32px 32px;
  background: var(--white);
  border: 8px solid #F9F3F0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style1 h6 {
  position: relative;
  color: #004654;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-left: 40px;
  margin-bottom: 40px;
}

.service-card.style1 h6:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -40px;
  width: 30px;
  height: 1px;
  background: var(--title);
}

.service-card.style1 h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 5px;
}

.service-card.style1 p {
  margin-bottom: 30px;
}

.service-card.style1 .icon {
  width: 95px;
  height: 95px;
  line-height: 95px;
  text-align: center;
  background: #004654;
  margin-bottom: 20px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}

.service-card.style1 .icon img {
  width: 65px;
  height: 65px;
}

.service-card.style1:hover {
  transform: translateY(-2%);
  -webkit-transform: translateY(-2%);
  -moz-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  -o-transform: translateY(-2%);
}

.service-card.style2 {
  padding: 20px 20px 20px 30px;
  background: var(--white);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style2 h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 20px;
}

.service-card.style2 p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 15px;
}

.service-card.style2 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme2);
  margin-bottom: 25px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style2 .icon img {
  width: 45px;
  height: 45px;
}

.service-card.style2:hover {
  transform: translateY(-2%);
  -webkit-transform: translateY(-2%);
  -moz-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  -o-transform: translateY(-2%);
}

.service-card.style3 {
  padding: 30px;
  background: var(--white);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style3 h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 20px;
}

.service-card.style3 p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 15px;
}

.service-card.style3 .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  margin-bottom: 25px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style3 .icon img {
  width: 65px;
  height: 65px;
}

.service-card.style3:hover {
  transform: translateY(-2%);
  -webkit-transform: translateY(-2%);
  -moz-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  -o-transform: translateY(-2%);
}

.service-card.style4 {
  text-align: center;
  padding: 30px;
  background: var(--white);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style4 h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 20px;
}

.service-card.style4 p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 15px;
}

.service-card.style4 .icon {
  max-width: 95px;
  margin: 0 auto 25px;
  height: 95px;
  line-height: 95px;
  text-align: center;
  background: var(--theme2);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.service-card.style4 .icon img {
  width: 65px;
  height: 65px;
}

.service-card.style4:hover {
  background: var(--theme2);
  transform: translateY(-2%);
  -webkit-transform: translateY(-2%);
  -moz-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  -o-transform: translateY(-2%);
}

.service-details-content .service-details-thumb img {
  width: 100%;
}

.service-details-content .title {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-details-content .fancy-content-wrapper {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-top: 45px;
  margin-bottom: 10px;
}

.service-details-content .checklist {
  margin-bottom: 25px;
}

/* 18.Team */
.team-card.style1 {
  margin-top: 30px;
}

.team-card.style1 .team-thumb {
  position: relative;
  z-index: 1;
}

.team-card.style1 .team-thumb::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38.5%, #FFF 100%);
  z-index: 3;
}

.team-card.style1 .team-thumb img {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card.style1 .team-thumb .social-media {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

.team-card.style1 .team-content {
  margin-top: 15px;
}

.team-card.style1 .team-content .name {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 10px;
}

.team-card.style1 .team-content .designation {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.team-card.style1:hover .team-thumb .social-media {
  opacity: 1;
  visibility: visible;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.team-card.style2 {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.team-card.style2 .team-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.team-card.style2 .team-thumb::before {
  position: absolute;
  content: "";
  bottom: -60px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, #0D0D0D 100%);
  z-index: 3;
}

.team-card.style2 .team-thumb img {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card.style2 .team-thumb .social-media {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0px;
  right: 40px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.team-card.style2 .team-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  margin-top: 15px;
}

@media (max-width: 575px) {
  .team-card.style2 .team-content {
    bottom: 14px;
  }
}

.team-card.style2 .team-content .name {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 10px;
}

.team-card.style2 .team-content .name a {
  color: var(--white) !important;
}

.team-card.style2 .team-content .name a:hover {
  color: var(--theme) !important;
  letter-spacing: 2px;
}

.team-card.style2 .team-content .designation {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.team-card.style2:hover .team-thumb .social-media {
  opacity: 1;
  visibility: visible;
  position: absolute;
  bottom: 130px;
  right: -30px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.team-card.style3 {
  position: relative;
  margin-top: 30px;
}

.team-card.style3 .team-thumb {
  position: relative;
  z-index: 1;
}

.team-card.style3 .team-thumb::before {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38.5%, #FFF 100%);
  z-index: 3;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.team-card.style3 .team-thumb img {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card.style3 .team-thumb .social-media {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 42px;
  right: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}

.team-card.style3 .team-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 15px;
  left: 30px;
  z-index: 6;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.team-card.style3 .team-content .name {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 10px;
}

.team-card.style3 .team-content .designation {
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.team-card.style3:hover .team-thumb:before {
  opacity: 1;
  visibility: visible;
}

.team-card.style3:hover .team-thumb .social-media {
  opacity: 1;
  visibility: visible;
  position: absolute;
  bottom: 32px;
  right: 8%;
  transform: translateX(-8%);
  -webkit-transform: translateX(-8%);
  -moz-transform: translateX(-8%);
  -ms-transform: translateX(-8%);
  -o-transform: translateX(-8%);
}

.team-card.style3:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.teamSliderOne {
  padding-bottom: 80px;
}

.teamSliderOne .swiper-pagination {
  display: block;
  padding-top: 30px;
  margin-bottom: -12px;
}

.teamSliderOne .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  border-radius: 50%;
  opacity: 1;
}

.teamSliderOne .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 2px solid var(--theme);
  top: 5px;
}

.teamSliderOne .swiper-pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.teamSliderOne .swiper-pagination .swiper-pagination-bullet-active:after {
  background: transparent;
}

.team-details-content {
  padding: 60px;
}

@media (max-width: 767px) {
  .team-details-content {
    padding: 20px;
  }
}

.team-details-content .title {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px;
  margin-bottom: 10px;
}

.team-details-content p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 20px;
}

.team-details-content h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 15px;
}

.team-details-content h4 span {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.team-details-content .contact-box {
  margin-top: 30px;
}

.team-details-content .contact-box h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 20px;
}

.team-details-content .contact-box .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.team-details-content .contact-box .contact-item .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.team-details-content .contact-box .contact-item .icon i {
  color: var(--theme);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.team-details-content .contact-box .contact-item .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.team-details-thumb {
  width: 100%;
  height: 100%;
}

.team-details-thumb img {
  width: 100%;
  height: 100%;
}

.social-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links li {
  width: 39px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.social-links li a {
  color: var(--title);
  padding: 10px;
}

.social-links li:hover {
  background: var(--theme);
}

.social-links li:hover a {
  color: var(--white) !important;
}

/* 19.Project */
.project-card.style1 .project-thumb {
  position: relative;
  width: 100%;
}

.project-card.style1 .project-thumb img {
  position: relative;
  width: 100%;
}

.project-card.style1 .project-thumb .project-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  padding: 30px 40px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.project-card.style1 .project-thumb .project-content .item h3 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 5px;
}

.project-card.style1 .project-thumb .project-content .item p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.project-card.style1 .project-thumb .project-content .item a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #004654;
  color: #004654;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.project-card.style1 .project-thumb .project-content .item a:hover {
  background: #004654;
  color: var(--white);
  border: 1px solid #0dcaf0;
}

.project-card.style1:hover .project-content {
  opacity: 1;
  visibility: visible;
}

.project-wrapper.style1 .arrow-button {
  bottom: 0;
  right: 0;
}

@media (max-width: 991px) {
  .project-wrapper.style1 .arrow-button {
    display: none;
  }
}

.projectSliderOne {
  overflow: visible;
  margin-left: -300px;
}

@media (max-width: 1399px) {
  .projectSliderOne {
    margin-left: -480px;
  }
}

@media (max-width: 1199px) {
  .projectSliderOne {
    margin-left: -650px;
  }
}

@media (max-width: 991px) {
  .projectSliderOne {
    margin-left: 0px;
  }
}

.projectSliderOne .swiper-wrapper .swiper-slide {
  width: 850px !important;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

@media (max-width: 991px) {
  .projectSliderOne .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
}

.projectSliderOne .swiper-wrapper .swiper-slide.swiper-slide-active {
  width: 850px !important;
  margin-top: -30px;
}

@media (max-width: 991px) {
  .projectSliderOne .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 100% !important;
  }
}

.project-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.project-thumb img {
  position: relative;
  width: 100%;
}

.project-thumb .project-content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -50px;
  padding: 20px 30px;
  background: var(--bg);
  border-bottom: 3px solid #004654;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.project-thumb .project-content h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 15px;
}

.project-thumb .project-content p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.project-thumb .project-content.style2 {
  display: flex;
  align-items: center;
  background: var(--white);
  bottom: -80px;
}

@media (max-width: 991px) {
  .project-thumb .project-content.style2 {
    bottom: -100px;
  }
}

@media (max-width: 767px) {
  .project-thumb .project-content.style2 {
    bottom: -80px;
  }
}

@media (max-width: 400px) {
  .project-thumb .project-content.style2 {
    bottom: -120px;
  }
}

.project-thumb .project-content.style2 h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 15px;
}

.project-thumb .project-content.style2 p {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.project-thumb .project-content.style2 .item .arrow-btn {
  opacity: 0;
  visibility: hidden;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--theme);
}

.project-thumb .project-content.style2 .item .arrow-btn:hover {
  background: var(--title);
  color: var(--theme2);
}

.project-thumb:hover .project-content {
  bottom: 40px;
  padding: 40px 30px;
}

.project-thumb:hover .project-content h3 {
  margin-bottom: 5px;
}

.project-thumb:hover .project-content .item .arrow-btn {
  opacity: 1;
  visibility: visible;
}

.project-details-wrapper .project-details-thumb {
  width: 100%;
}

.project-details-wrapper .project-details-thumb img {
  width: 100%;
  height: 100%;
}

.project-details-wrapper .project-information {
  padding: 40px;
  border: 1px solid var(--border);
}

.project-details-wrapper .project-information h3 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 20px;
}

.project-details-wrapper .project-information p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 25px;
}

.project-details-wrapper .project-information .info-item {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.project-details-wrapper .project-information .info-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.project-details-wrapper .project-information .info-item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.project-details-wrapper .project-information .info-item .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.project-details-wrapper .project-details_social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 50px;
}

.project-details-wrapper .project-details_social-links li.facebook {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #3D58FF;
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.project-details-wrapper .project-details_social-links li.facebook:hover {
  background: var(--title);
}

.project-details-wrapper .project-details_social-links li.linkedin {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #2C3FAC;
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.project-details-wrapper .project-details_social-links li.linkedin:hover {
  background: var(--title);
}

.project-details-wrapper .project-details_social-links li.instagram {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #9727EF;
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.project-details-wrapper .project-details_social-links li.instagram:hover {
  background: var(--title);
}

.project-details-wrapper .project-details_social-links li.twitter {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #17C0FF;
  color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.project-details-wrapper .project-details_social-links li.twitter:hover {
  background: var(--title);
}

.project-details-wrapper .project-details_social-links li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--white);
}

.project-details-wrapper .project-details-desc {
  margin-top: 50px;
}

.project-details-wrapper .project-details-desc .title {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px;
  margin-bottom: 18px;
}

.project-details-wrapper .project-details-desc p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.project-details-wrapper .project-details-desc .thumb {
  width: 100%;
}

.project-details-wrapper .project-details-desc .thumb img {
  width: 100%;
  height: 100%;
}

/* 20.Wcu */
.wcu-wrapper.style1 {
  position: relative;
}

.wcu-wrapper.style1 .shape1 {
  position: absolute;
  bottom: -380px;
  right: 0;
}

.wcu-thumb.style1 {
  position: relative;
  margin-bottom: 130px;
}

@media (max-width: 991px) {
  .wcu-thumb.style1 {
    margin-bottom: 130px;
  }
}

.wcu-thumb.style1 .thumb1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .wcu-thumb.style1 .thumb1 {
    width: 100%;
  }
}

.wcu-thumb.style1 .thumb2 {
  position: absolute;
  bottom: -125px;
  right: 100px;
  z-index: 1;
}

.wcu-thumb.style1 .shape1 {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 1;
}

.wcu-thumb.style1 .shape2 {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 3;
}

.wcu-content.style1 .section-title {
  margin-bottom: 20px;
}

.wcu-content.style1 .box {
  position: relative;
  padding: 20px 40px 20px 60px;
  background: var(--theme2);
  margin-bottom: 40px;
  margin-left: 40px;
  max-width: 482px;
}

.wcu-content.style1 .box img {
  position: absolute;
  top: 8px;
  left: -40px;
}

/* 21.Pricing */
.pricing-card-wrapper.style1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .pricing-card-wrapper.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pricing-card-wrapper.style2 {
  padding-left: 110px;
  padding-right: 110px;
}

@media (max-width: 1199px) {
  .pricing-card-wrapper.style2 {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .pricing-card-wrapper.style2 {
    padding: 5px;
  }
}

.pricing-thumb.style1 .thumb {
  margin-left: -300px;
  margin-bottom: -220px;
}

@media (max-width: 1399px) {
  .pricing-thumb.style1 .thumb {
    margin-left: -350px;
  }
}

@media (max-width: 1199px) {
  .pricing-thumb.style1 .thumb {
    margin-left: -420px;
  }
}

@media (max-width: 991px) {
  .pricing-thumb.style1 .thumb {
    margin-left: 0px;
    margin-bottom: 0px;
  }

  .pricing-thumb.style1 .thumb img {
    width: 100%;
  }
}

.pricing-card.style1 {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
}

.pricing-card.style1 .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.pricing-card.style1 .pricing-header .title h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
  margin-bottom: 5px;
}

.pricing-card.style1 .pricing-header .price h2 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.pricing-card.style1 .pricing-header .price h2 span {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.pricing-card.style1 .checklist {
  margin-bottom: 35px;
}

.pricing-card.style2 .pricing-header {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  align-items: center;
  padding: 20px 40px;
  gap: 30px;
}

@media (max-width: 575px) {
  .pricing-card.style2 .pricing-header {
    padding: 20px 17px;
    gap: 5px;
  }
}

.pricing-card.style2 .pricing-header h6 {
  color: var(--900, #0D0D0D);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Marcellus;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.pricing-card.style2 .pricing-item {
  display: grid;
  grid-template-columns: 25% 45% 15% 15%;
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
  margin-bottom: 30px;
  background: var(--white);
}

.pricing-card.style2 .pricing-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .pricing-card.style2 .pricing-item {
    padding: 10px;
    gap: 2px;
  }
}

.pricing-card.style2 .pricing-item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

@media (max-width: 767px) {
  .pricing-card.style2 .pricing-item h4 {
    font-size: 18px;
  }
}

.pricing-card.style2 .pricing-item .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 410px;
}

@media (max-width: 575px) {
  .pricing-card.style2 .pricing-item .text {
    font-size: 13px;
    line-height: 20.08px;
  }
}

.pricing-card.style2 .pricing-item .icon {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.pricing-card.style2 .pricing-item:hover .icon {
  margin-left: 10px;
}

/* 22.Intro */
.intro-wrapper.style1 {
  background-image: url('/assets/images/intro-bg-image.png');
}

@media (max-width: 1199px) {
  .intro-wrapper.style1 {
    background-image: none;
    background: #004654;
  }
}

.intro-wrapper.style2 {
  background: var(--title);
}

.intro-content-wrapper.style1 {
  padding: 117px 0 190px 80px;
  position: relative;
  background: var(--white);
}

@media (max-width: 767px) {
  .intro-content-wrapper.style1 {
    padding: 15px;
    margin-top: 30px;
  }
}

.intro-content-wrapper.style1:before {
  position: absolute;
  top: 0;
  left: 130px;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  /* background: linear-gradient(90deg, #FFF 35.36%, rgba(255, 255, 255, 0.68) 50.95%, rgba(255, 255, 255, 0) 66.17%); */
}

@media (max-width: 767px) {
  .intro-content-wrapper.style1:before {
    display: none;
  }
}

.intro-content-wrapper.style1 .intro-content {
  position: relative;
  z-index: 5;
}

.intro-content-wrapper.style1 h1 {
  position: relative;
  color: #124659;
  font-family: "Marcellus", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 84.462px;
  text-transform: uppercase;
  z-index: 5;
  margin-bottom: 20px;
  background-color: #ffffff7a;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style1 h1 {
    font-size: 40px;
    line-height: 60.462px;
  }
}

.intro-content-wrapper.style1 p {
  color: black;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  margin-bottom: 18px;
}

.intro-content-wrapper.style1 .checklist-wrapper {
  margin-bottom: 10px;
}

.intro-content-wrapper.style1 .intro-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.intro-content-wrapper.style1 .intro-thumb img {
  width: 100%;
  height: 100%;
}



.intro-content-wrapper.style2 {
  display: grid;
  align-items: center;
  grid-template-columns: 40% 60%;
}

@media (max-width: 991px) {
  .intro-content-wrapper.style2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.intro-content-wrapper.style2 .intro-thumb {
  position: relative;
  padding-top: 82px;
  width: 100%;
}

.intro-content-wrapper.style2 .intro-thumb img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.intro-content-wrapper.style2 .intro-thumb .shape1 {
  position: absolute;
  top: 200px;
  left: 10px;
  z-index: 1;
}

.intro-content-wrapper.style2 .intro-thumb .shape1 img {
  width: 100%;
  height: 100%;
}

.intro-content-wrapper.style2 .intro-thumb .shape2 {
  position: absolute;
  top: 270px;
  right: 50px;
  z-index: 1;
}

.intro-content-wrapper.style2 .intro-thumb .shape2 img {
  width: 100%;
  height: 100%;
}

.intro-content-wrapper.style2 .intro-thumb .shape3 {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 1;
}

.intro-content-wrapper.style2 .intro-thumb .shape3 img {
  width: 100%;
  height: 100%;
}

.intro-content-wrapper.style2 .intro-content {
  text-align: end;
  padding-top: 100px;
  padding-bottom: 35px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style2 .intro-content {
    padding-top: 50px;
  }
}

.intro-content-wrapper.style2 .intro-content h1 {
  color: var(--white);
  text-align: right;
  font-family: "Marcellus", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.intro-content-wrapper.style2 .intro-content h1 span {
  color: var(--theme);
  text-align: right;
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style2 .intro-content h1 {
    font-size: 70px;
    line-height: 90px;
    text-align: left;
  }

  .intro-content-wrapper.style2 .intro-content h1 span {
    font-size: 35px;
  }
}

.intro-content-wrapper.style2 .intro-content p {
  color: var(--white);
  text-align: end;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 410px;
  margin-left: auto;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style2 .intro-content p {
    font-size: 13px;
    text-align: left;
    padding-right: 10px;
  }
}

.intro-content-wrapper.style2 .intro-content .btn-wrapper {
  margin-left: auto;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style2 .intro-content .btn-wrapper {
    margin-right: auto;
    margin-left: 20px;
  }
}

.intro-content-wrapper.style2 .intro-content .big-text {
  max-width: 574px;
  margin-right: auto;
  text-align: start;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Marcellus", serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style2 .intro-content .big-text {
    font-size: 65px;
    line-height: 70px;
    margin-top: 30px;
  }
}

.intro-content-wrapper.style3 {
  padding: 290px 0 205px;
}

@media (max-width: 991px) {
  .intro-content-wrapper.style3 {
    padding: 250px 0 120px;
  }
}

@media (max-width: 767px) {
  .intro-content-wrapper.style3 {
    padding: 230px 0 80px;
  }
}

.intro-content-wrapper.style3 .intro-content h1 {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 96px;
  text-transform: capitalize;
  margin-bottom: 23px;
}

.intro-content-wrapper.style3 .intro-content .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 350px;
  margin-bottom: 40px;
}

.intro-content-wrapper.style3 .intro-counter-box {
  margin-top: 38px;
}

.intro-content-wrapper.style3 .hero-thumb {
  border-radius: 500px 500px 0px 0px;
  background: var(--theme);
  -webkit-border-radius: 500px 500px 0px 0px;
  -moz-border-radius: 500px 500px 0px 0px;
  -ms-border-radius: 500px 500px 0px 0px;
  -o-border-radius: 500px 500px 0px 0px;
}

.introSliderOne {
  position: relative;
}

.introSliderOne .swiper-pagination {
  position: absolute;
  top: 92%;
  left: 33%;
  z-index: 1;
}

.introSliderOne .swiper-pagination-bullet {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  margin: 20px;
  opacity: 0.3;
}

.introSliderOne .swiper-pagination-bullet-active {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background: transparent;
  opacity: 1;
}

/* 23.Cta */
.cta-wrapper.style1 .cta {
  padding: 60px 60px;
  background: var(--theme);
}

.cta-wrapper.style1 .cta h1 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.cta-wrapper.style1 .cta .schedule h4 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.cta-wrapper.style1 .cta .schedule h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

.cta-wrapper.style2 {
  position: relative;
  z-index: 5;
  background: var(--theme);
  margin-bottom: -140px;
}

@media (max-width: 767px) {
  .cta-wrapper.style2 {
    margin-bottom: -105px;
  }
}

.cta-wrapper.style2 .cta-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.cta-wrapper.style2 .cta-thumb img {
  width: 100%;
  height: 100%;
}

.cta-wrapper.style2 .cta-thumb .icon {
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@media (max-width: 1199px) {
  .cta-wrapper.style2 .cta-thumb .icon {
    top: 50%;
    right: 40%;
    transform: translate(-40%, -50%);
    -webkit-transform: translate(-40%, -50%);
    -moz-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    -o-transform: translate(-40%, -50%);
  }
}

@media (max-width: 767px) {
  .cta-wrapper.style2 .cta-thumb .icon {
    top: 50%;
    right: 35%;
    transform: translate(-35%, -50%);
    -webkit-transform: translate(-35%, -50%);
    -moz-transform: translate(-35%, -50%);
    -ms-transform: translate(-35%, -50%);
    -o-transform: translate(-35%, -50%);
  }
}

.cta-wrapper.style2 .cta-content {
  padding: 75px 0 68px;
}

@media (max-width: 767px) {
  .cta-wrapper.style2 .cta-content {
    padding: 20px 20px 40px;
  }
}

.cta-wrapper.style2 .cta-content h4 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 31.118px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.342px;
}

@media (max-width: 767px) {
  .cta-wrapper.style2 .cta-content h4 {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 30px;
  }
}

.cta-wrapper.style2 .cta-content h2 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 57.449px;
  font-style: normal;
  font-weight: 400;
  line-height: 68.939px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cta-wrapper.style2 .cta-content h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

.cta-wrapper.style2 .cta-content .theme-btn {
  width: 280px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
  border: 1px solid var(--white);
}

/* 24.About */
.about-wrapper.style1 .about-content p {
  margin-bottom: 20px;
}

.about-wrapper.style1 .about-content .checklist-wrapper {
  margin-bottom: 35px;
}

.about-wrapper.style1 .about-thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .about-wrapper.style1 .about-thumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
}

.about-wrapper.style1 .about-thumb .thumb1 {
  width: 300px;
  height: 564px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

@media (max-width: 991px) {
  .about-wrapper.style1 .about-thumb .thumb1 {
    width: 100%;
  }

  .about-wrapper.style1 .about-thumb .thumb1 img {
    width: 100%;
    height: 100%;
  }
}

.about-wrapper.style1 .about-thumb .thumb2 {
  width: 300px;
  height: 564px;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

@media (max-width: 1199px) {
  .about-wrapper.style1 .about-thumb .thumb2 {
    width: 100%;
  }

  .about-wrapper.style1 .about-thumb .thumb2 img {
    width: 100%;
    height: 100%;
  }
}

.about-wrapper.style2 .about-thumb {
  position: relative;
}

.about-wrapper.style2 .about-thumb .thumb-img {
  position: relative;
  display: flex;
  gap: 30px;
}

.about-wrapper.style2 .about-thumb .thumb-img .thumb1 {
  position: relative;
  width: 100%;
}

.about-wrapper.style2 .about-thumb .thumb-img .thumb2 {
  position: relative;
  width: 100%;
}

.about-wrapper.style2 .about-thumb .aboutThumbContent {
  position: absolute;
  background: var(--white);
  bottom: 30px;
  right: 30px;
  padding: 15px;
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
  max-width: 370px;
}

.about-wrapper.style2 .about-content p {
  margin-bottom: 30px;
  margin-top: 30px;
}

.about-wrapper.style2 .about-content .checklist {
  margin-bottom: 40px;
}

.about-wrapper.style2 .about-content .checklist li {
  margin-bottom: 15px;
}

/* 25.Features */
.features-wrapper.style1 {
  position: relative;
  background: var(--theme2);
}

.features-wrapper.style1 .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-wrapper.style1 {
    padding: 80px 0;
  }
}

.features-thumb {
  margin-left: -300px;
  width: 100%;
  max-height: 863px;
}

@media (max-width: 1399px) {
  .features-thumb {
    margin-left: -370px;
  }
}

@media (max-width: 1199px) {
  .features-thumb {
    margin-left: -445px;
  }
}

@media (max-width: 991px) {
  .features-thumb {
    margin-left: 0px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .features-thumb img {
    width: 100%;
    height: 100%;
  }
}

.features-content {
  position: relative;
  z-index: 5;
}

.featured-item {
  display: grid;
  align-items: center;
  grid-template-columns: 30% 50% 20%;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  max-width: 630px;
}

@media (max-width: 767px) {
  .featured-item {
    gap: 5px;
  }
}

.featured-item h3 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

@media (max-width: 575px) {
  .featured-item h3 {
    font-size: 18px;
  }
}

.featured-item .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 300px;
}

@media (max-width: 575px) {
  .featured-item .text {
    font-size: 13px;
    line-height: 22.08px;
  }
}

.featured-item .icon {
  width: 41px;
  transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
}

.featured-item:hover .icon {
  margin-left: 10px;
}

/* 26.Gallery */
.gallery-wrapper.style1 {
  background-image: url(../images/bg/galleryBg1_1.jpg);
}

.gallery-wrapper.style1 .gallery-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-wrapper.style1 .gallery-thumb img {
  position: relative;
  width: 100%;
}

.gallery-wrapper.style1 .gallery-thumb .gallery-content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -50px;
  padding: 20px 30px;
  background: var(--bg);
  border-bottom: 3px solid var(--theme);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}

.gallery-wrapper.style1 .gallery-thumb .gallery-content h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 15px;
}

.gallery-wrapper.style1 .gallery-thumb .gallery-content p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.gallery-wrapper.style1 .gallery-thumb:hover .gallery-content {
  bottom: 40px;
  padding: 40px 30px;
}

.gallery-wrapper.style1 .gallery-thumb:hover .gallery-content h3 {
  margin-bottom: 2px;
}

/* 27.Testimonial */
.testimonial-card-wrapper.style1 {
  position: relative;
  padding: 85px 0;
}

@media (max-width: 991px) {
  .testimonial-card-wrapper.style1 {
    padding: 0;
  }
}

.testimonial-card-wrapper.style1 .testimonial-thumb {
  position: relative;
  z-index: 1;
  margin-top: -250px;
  margin-bottom: -250px;
}

@media (max-width: 991px) {
  .testimonial-card-wrapper.style1 .testimonial-thumb {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .testimonial-card-wrapper.style1 .testimonial-thumb img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .testimonial-card-wrapper.style1 .testimonial-thumb {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .testimonial-card-wrapper.style1 .testimonial-thumb img {
    width: 100%;
  }
}

.testimonial-card-wrapper.style3 .testimonial-thumb {
  position: relative;
  margin-right: 30px;
}

.testimonial-card-wrapper.style3 .testimonial-thumb img {
  position: relative;
  width: 100%;
}

.testimonial-card-wrapper.style3 .testimonial-thumb .conter-box {
  position: absolute;
  bottom: 105px;
  right: -30px;
}

.testimonial-card-wrapper.style3 .shape {
  margin-top: 35px;
  margin-bottom: 30px;
}

.testimonial-card.style1 {
  position: relative;
  z-index: 5;
  padding: 60px;
  background: var(--theme);
}

@media (max-width: 767px) {
  .testimonial-card.style1 {
    padding: 15px 5px;
  }
}

.testimonial-card.style1 .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-card.style1 .testimonial-header .icon {
  width: 90px;
  height: 104px;
}

.testimonial-card.style1 .testimonial-body p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.testimonial-card.style2 {
  position: relative;
  z-index: 5;
}

.testimonial-card.style2 .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  padding: 10px;
}

.testimonial-card.style2 .testimonial-header .fancy-box.style3 .fancy-item h4 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

.testimonial-card.style2 .testimonial-header .fancy-box.style3 .fancy-item p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.testimonial-card.style2 .testimonial-header .icon {
  width: 90px;
  height: 104px;
}

.testimonial-card.style2 .testimonial-body p {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  max-width: 630px;
}

.testimonialSliderOne {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: -80px;
}

@media (max-width: 1199px) {
  .testimonialSliderOne {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.testimonialSliderOne .swiper-pagination {
  position: absolute !important;
  display: block;
  padding-top: 30px;
  margin-bottom: -12px;
}

@media (max-width: 1199px) {
  .testimonialSliderOne .swiper-pagination {
    display: none;
  }
}

.testimonialSliderOne .swiper-horizontal>.swiper-pagination-bullets,
.testimonialSliderOne .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonialSliderOne .swiper-pagination-custom,
.testimonialSliderOne .swiper-pagination-fraction {
  bottom: 10px;
  left: 46%;
  width: 100%;
}

.testimonialSliderOne .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  border-radius: 50%;
  opacity: 1;
}

.testimonialSliderOne .swiper-pagination .swiper-pagination-bullet-active {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 2px solid var(--theme);
  top: 5px;
}

.testimonialSliderOne .swiper-pagination .swiper-pagination-bullet-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.testimonialSliderOne .swiper-pagination .swiper-pagination-bullet-active:after {
  background: transparent;
}

/* 28.Subscribe */
.subscribe-wrapper.style1 {
  position: relative;
  padding: 50px;
  background: var(--theme);
  margin-top: 100px;
  z-index: 2;
}

@media (max-width: 991px) {
  .subscribe-wrapper.style1 {
    margin-top: 0;
  }
}

.subscribe-wrapper.style1 .shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.subscribe-wrapper.style1 h2 {
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.subscribe-wrapper.style1 p {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.subscribe-wrapper.style1 .subscribeThumb {
  margin-top: -160px;
  margin-bottom: -50px;
}

@media (max-width: 991px) {
  .subscribe-wrapper.style1 .subscribeThumb {
    margin-top: 0;
  }
}

/* 29.Faq */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
@media (max-width: 1199px) {
  .faq-content {
    margin-top: 40px;
  }
}

.faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
}

.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--title);
  letter-spacing: -0.2px;
  border: none;
  box-shadow: none;
  background-color: var(--bg2);
  padding: 17px 20px;
  text-transform: capitalize;
  font-size: 20px;
  border-radius: 12px 12px 0 0;
  -webkit-border-radius: 12px 12px 0 0;
  -moz-border-radius: 12px 12px 0 0;
  -ms-border-radius: 12px 12px 0 0;
  -o-border-radius: 12px 12px 0 0;
}

.faq-content .accordion-item .accordion-header .accordion-button:after {
  display: inline-block;
  background-image: url(../images/icon/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  font-weight: 500;
  padding: 20px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease-in-out !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  -moz-transition: all 0.3s ease-in-out !important;
  -ms-transition: all 0.3s ease-in-out !important;
  -o-transition: all 0.3s ease-in-out !important;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  background-image: url(../images/icon/chevron-up.svg);
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--title);
  color: var(--white);
  transform: rotate(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 17px 20px;
  color: var(--title);
}

.faq-content .accordion-item .accordion-collapse {
  border: none;
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 150px;
  padding-left: 30px;
  padding-top: 15px;
  color: var(--text);
  background-color: var(--theme);
}

@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.faq-content.style-1 .accordion-item {
  background-color: var(--bg2);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.faq-content.style-1 .accordion-item .accordion-header .accordion-button {
  background-color: var(--theme);
  color: var(--white);
}

.faq-content.style-1 .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--title);
  font-family: inherit;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: inherit;
  background-color: var(--white);
  border: none;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.faq-content.style-1 .accordion-item .accordion-collapse .accordion-body {
  border: none;
  padding-bottom: 30px;
  background-color: var(--white);
  border-radius: 0 0 12px 12px;
  -webkit-border-radius: 0 0 12px 12px;
  -moz-border-radius: 0 0 12px 12px;
  -ms-border-radius: 0 0 12px 12px;
  -o-border-radius: 0 0 12px 12px;
}

.faq-thumb img {
  width: 100%;
}

.faq-thumb .thumb-wrap {
  position: relative;
}

.faq-thumb .thumb-wrap img {
  position: relative;
  width: 100%;
}

.faq-thumb .thumb-wrap .conter-box {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom: 15px solid var(--white);
  border-left: 15px solid var(--white);
}

/* 30.Contact */
.contact-content.style1 {
  position: relative;
  padding: 160px 40px 109px;
  background: var(--white);
  box-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .contact-content.style1 {
    padding: 50px 20px 50px;
  }
}

.contact-content.style1 .shape1 {
  position: absolute;
  top: 0;
  right: 0;
}

.contact-content.style1 .fancy-box-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
}

@media (max-width: 767px) {
  .contact-content.style1 .fancy-box-wrapper {
    flex-direction: column;
    align-items: start;
  }
}

.contact-form.style1 {
  padding: 40px;
  background: var(--theme2);
}

/* 31.Blog */
/*----------------------------------------------
    # Blog  style here
----------------------------------------------*/
.blog-card-items.style1 {
  margin-top: 30px;
  background-color: var(--white);
}

.blog-card-items.style1 .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-card-items.style1 .blog-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-card-items.style1 .blog-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  -moz-transform: translateX(50%) scaleX(2);
  -ms-transform: translateX(50%) scaleX(2);
  -o-transform: translateX(50%) scaleX(2);
}

.blog-card-items.style1 .blog-content {
  padding: 15px 30px 0px 0px;
}

.blog-card-items.style1 .blog-content ul {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 30px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog-card-items.style1 .blog-content ul li {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.blog-card-items.style1 .blog-content ul li i {
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 5px;
}

@media (max-width: 1399px) {
  .blog-card-items.style1 .blog-content ul li {
    font-size: 15px;
  }
}

.blog-card-items.style1 .blog-content h3 a {
  display: inline-block;
  position: relative;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  text-decoration: none;
  transition: width 0.5s ease-in-out;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
}

.blog-card-items.style1 .blog-content h3 a:hover {
  text-decoration: underline;
  color: var(--theme);
}

.blog-card-items.style1 .blog-content .text {
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.blog-card-items.style1 .blog-content .theme-btn-2 {
  position: relative;
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
}

.blog-card-items.style1 .blog-content .theme-btn-2 i {
  margin-left: 5px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
}

.blog-card-items.style1 .blog-content .theme-btn-2:hover i {
  margin-left: 8px;
  color: #004654;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.blog-card-items.style1:hover .blog-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-card-items.style1:hover .blog-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card-items.style2 {
  margin-top: 30px;
  background-color: var(--white);
}

.blog-card-items.style2.nth-child2 {
  margin-top: 90px;
}

@media (max-width: 1199px) {
  .blog-card-items.style2.nth-child2 {
    margin-top: 0px;
  }
}

.blog-card-items.style2 .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-card-items.style2 .blog-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-card-items.style2 .blog-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  -moz-transform: translateX(50%) scaleX(2);
  -ms-transform: translateX(50%) scaleX(2);
  -o-transform: translateX(50%) scaleX(2);
}

.blog-card-items.style2 .blog-content {
  padding: 40px;
  background: var(--theme2);
}

.blog-card-items.style2 .blog-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
  list-style-type: none;
}

.blog-card-items.style2 .blog-content ul li {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.blog-card-items.style2 .blog-content ul li i {
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 5px;
}

.blog-card-items.style2 .blog-content h3 a {
  display: inline-block;
  position: relative;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: width 0.5s ease-in-out;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
}

.blog-card-items.style2 .blog-content h3 a:hover {
  text-decoration: underline;
  color: var(--theme);
}

.blog-card-items.style2 .blog-content .theme-btn-2 {
  position: relative;
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
}

.blog-card-items.style2 .blog-content .theme-btn-2 i {
  margin-left: 5px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
}

.blog-card-items.style2 .blog-content .theme-btn-2:hover i {
  margin-left: 8px;
  color: var(--theme);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.blog-card-items.style2:hover .blog-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-card-items.style2:hover .blog-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card-items.style3 {
  margin-top: 30px;
  background-color: var(--white);
}

.blog-card-items.style3.nth-child2 {
  margin-top: 90px;
}

@media (max-width: 1199px) {
  .blog-card-items.style3.nth-child2 {
    margin-top: 0px;
  }
}

.blog-card-items.style3 .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-card-items.style3 .blog-image img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-card-items.style3 .blog-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  -moz-transform: translateX(50%) scaleX(2);
  -ms-transform: translateX(50%) scaleX(2);
  -o-transform: translateX(50%) scaleX(2);
}

.blog-card-items.style3 .blog-content {
  padding: 20px 40px 30px;
  background: var(--theme2);
}

.blog-card-items.style3 .blog-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  list-style-type: none;
}

@media (max-width: 767px) {
  .blog-card-items.style3 .blog-content ul {
    gap: 23px;
  }
}

.blog-card-items.style3 .blog-content ul li {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}

.blog-card-items.style3 .blog-content ul li i {
  color: var(--theme);
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 5px;
}

.blog-card-items.style3 .blog-content h3 a {
  display: inline-block;
  position: relative;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: width 0.5s ease-in-out;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
}

.blog-card-items.style3 .blog-content h3 a:hover {
  text-decoration: underline;
  color: var(--theme);
}

.blog-card-items.style3 .blog-content .theme-btn-2 {
  position: relative;
  color: var(--theme);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 3.08px;
  text-transform: uppercase;
}

.blog-card-items.style3 .blog-content .theme-btn-2 i {
  margin-left: 5px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
}

.blog-card-items.style3 .blog-content .theme-btn-2:hover i {
  margin-left: 8px;
  color: var(--theme);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.blog-card-items.style3:hover .blog-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-card-items.style3:hover .blog-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

/* 32.Blog Extra */
/*----------------------------------------------
    # Blog Extra style here
----------------------------------------------*/
.blog-wrapper {
  padding: 0 75px;
}

@media (max-width: 1399px) {
  .blog-wrapper {
    padding: 0;
  }
}

.single-blog-items {
  margin-top: 30px;
  padding: 40px 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .single-blog-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .single-blog-items {
    flex-wrap: initial;
  }
}

@media (max-width: 767px) {
  .single-blog-items {
    flex-wrap: wrap;
  }
}

.single-blog-items .blog-image {
  height: 220px;
  width: 220px;
  flex-basis: 100%;
  position: relative;
}

.single-blog-items .blog-image .post-date {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--white);
  padding: 7px 10px;
}

.single-blog-items .blog-image .post-date span {
  color: var(--title);
  font-weight: 600;
}

.single-blog-items .blog-content h3 {
  margin-bottom: 10px;
}

.single-blog-items .blog-content h3 a:hover {
  color: var(--theme);
}

.single-blog-items .blog-content .theme-btn-2 {
  color: var(--theme);
}

.blog-section-3 {
  margin-bottom: -50px;
}

.blog-card-items {
  margin-top: 30px;
}

.blog-card-items .blog-image {
  position: relative;
}

.blog-card-items .blog-image .post-date {
  padding: 12px 24px;
  background-color: var(--theme);
  position: absolute;
  bottom: 40px;
  left: 0;
}

.blog-card-items .blog-image .post-date h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.blog-card-items .blog-image .post-date h3 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.blog-card-items .blog-content {
  padding: 30px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
  margin-top: -40px;
}

.blog-card-items .blog-content ul {
  display: flex;
  gap: 50px;
  margin-bottom: 15px;
}

@media (max-width: 1399px) {
  .blog-card-items .blog-content ul {
    gap: 20px;
  }
}

.blog-card-items .blog-content ul li {
  font-size: 14px;
  font-weight: 500;
}

.blog-card-items .blog-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}

.blog-card-items .blog-content h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.blog-card-items .blog-content h3 a:hover {
  color: var(--theme);
}

.blog-card-items.style-2 {
  padding-bottom: 50px;
}

.blog-card-items.style-2 .blog-image {
  position: relative;
}

.blog-card-items.style-2 .blog-image .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: initial;
}

.blog-card-items.style-2 .blog-content {
  margin: 0;
}

.blog-card-items.style-2 .blog-content ul li {
  font-size: 16px;
}

.blog-card-items.style-3 {
  padding-bottom: 0;
  background-color: var(--white);
  box-shadow: none;
}

.blog-card-items.style-3 .blog-image {
  padding: 15px 15px 0 15px;
}

.blog-card-items.style-3 .blog-image .post-date {
  left: 30px;
  top: 30px;
}

.blog-card-items.style-3 .content {
  box-shadow: none;
}

.blog-wrapper .blog-items:not(:last-child) {
  margin-bottom: 60px;
}

.blog-wrapper .blog-items .blog-thumb {
  position: relative;
}

.blog-wrapper .blog-items .blog-thumb img {
  width: 100%;
}

.blog-wrapper .blog-items .blog-thumb .post-date {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  width: 59px;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  background: var(--theme);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.blog-wrapper .blog-items .blog-thumb .post-date h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0;
}

.blog-wrapper .blog-items .blog-thumb .post-date h3 span {
  color: var(--white);
  font-family: "Marcellus", serif;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.blog-wrapper .blog-items .blog-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}

.blog-wrapper .blog-items .blog-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 17px;
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 1399px) {
  .blog-wrapper .blog-items .blog-content ul {
    gap: 20px;
  }
}

.blog-wrapper .blog-items .blog-content ul li {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.blog-wrapper .blog-items .blog-content ul li i {
  color: var(--title);
  margin-right: 5px;
}

.blog-wrapper .blog-items .blog-content h3 {
  margin-bottom: 15px;
}

.blog-wrapper .blog-items .blog-content h3 a {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.blog-wrapper .blog-items .blog-content h3 a:hover {
  color: var(--theme2);
}

.blog-wrapper .blog-items .blog-content a i {
  margin-left: 5px;
}

.blog-details-wrapper .blog-details-items .blog-details-thumb {
  position: relative;
}

.blog-details-wrapper .blog-details-items .blog-details-thumb img {
  width: 100%;
}

.blog-details-wrapper .blog-details-items .blog-details-thumb .post-date {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  width: 59px;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  background: var(--theme);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.blog-details-wrapper .blog-details-items .blog-details-thumb .post-date h3 {
  color: var(--white);
  font-family: "Marcellus", serif;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 0;
}

.blog-details-wrapper .blog-details-items .blog-details-thumb .post-date h3 span {
  color: var(--white);
  font-family: "Marcellus", serif;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.blog-details-wrapper .blog-details-items .blog-details-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}

.blog-details-wrapper .blog-details-items .blog-details-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 17px;
  list-style-type: none;
  padding-left: 0;
}

@media (max-width: 1399px) {
  .blog-details-wrapper .blog-details-items .blog-details-content .blog-meta {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details-items .blog-details-content .blog-meta {
    gap: 13px;
  }
}

.blog-details-wrapper .blog-details-items .blog-details-content .blog-meta li {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .blog-meta li i {
  color: var(--title);
  margin-right: 5px;
}

.blog-details-wrapper .blog-details-items .blog-details-content h3 {
  margin-bottom: 15px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .highlighted-text {
  padding: 30px 40px;
  background: var(--theme2);
  margin-bottom: 30px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .highlighted-text .title {
  margin-bottom: 30px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .blog-details-thumb2 img {
  width: 100%;
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 40px 30px;
  border: 1px solid var(--border);
  margin-bottom: 50px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-prev {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-prev a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border);
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-prev h6 {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-next {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-next a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--border);
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-next a:hover {
  color: var(--white) !important;
}

.blog-details-wrapper .blog-details-items .blog-details-content .arrow-btn-wrapper .btn-next h6 {
  color: var(--title);
  font-family: "Marcellus", serif;
  text-align: end;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .tagcloud h6 {
  margin-right: 20px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 10px;
  border: none;
  border: 1px solid #E6E5E5;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

@media (max-width: 767px) {
  .blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--title);
  font-weight: 600;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .social-share a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--theme2);
  font-size: 18px;
  color: var(--text);
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-details-wrapper .blog-details-items .blog-details-content .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}

/* 33.Sidebar */
/*----------------------------------------------
    # Widget Sidebar style here
----------------------------------------------*/
.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 5px;
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.widget-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}

.search-widget form {
  width: 100%;
  position: relative;
}

.search-widget form input {
  background: var(--bg2);
  font-size: 15px;
  padding: 12px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

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

.tagcloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.tagcloud h6 {
  font-size: 20px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
}

.tagcloud a.active {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.tagcloud li {
  margin-right: 5px;
}

.tagcloud li a {
  display: inline-flex;
  padding: 10px 16px;
  background: var(--bg2);
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.tagcloud li a:last-child {
  margin-right: 0;
}

.tagcloud li a:hover {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.range__barcustom .price-input {
  margin-top: 10px;
  position: relative;
}

@media (max-width: 1600px) {
  .range__barcustom .price-input {
    flex-wrap: wrap;
  }
}

.range__barcustom .price-input .field {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: 16%;
}

.range__barcustom .price-input .field span {
  font-size: 18px;
  font-weight: 500;
  color: var(--title);
}

.range__barcustom .separators {
  margin-left: -12px;
  padding-right: 12px;
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
}

.range__barcustom .field input {
  height: 100%;
  outline: none;
  background: transparent;
  border: unset;
  font-size: 16px;
  font-weight: 500;
  color: var(--title);
  padding: 0;
}

.range__barcustom .field input span {
  font-weight: 500;
  color: var(--title);
  font-size: 16px;
}

.range__barcustom input[type=number]::-webkit-outer-spin-button,
.range__barcustom input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.range__barcustom .price-input .separator {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.range__barcustom .slider {
  height: 6.75px;
  position: relative;
  background: var(--title);
  border-radius: 5px;
}

.range__barcustom .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--theme);
}

.range__barcustom .range-input {
  position: relative;
  display: flex;
  justify-content: center;
}

.range__barcustom .range-input input {
  position: absolute;
  width: 100%;
  height: 6.75px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  outline: none;
}

.range__barcustom input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 7px;
  border-radius: 5px;
  background: var(--theme);
  border: 1.125px solid var(--theme);
  pointer-events: auto;
  -webkit-appearance: none;
}

.range__barcustom .price-input .filter-btn {
  padding: 8px 30px;
  background-color: transparent;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.range__barcustom .price-input .filter-btn:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.filter-size .input-save:not(:last-child) {
  margin-bottom: 20px;
}

.filter-size .input-save input {
  width: 20px;
  height: 19px;
  background-color: var(--theme);
  outline: none;
  color: var(--theme);
  padding: 5px;
  border-radius: 4px;
}

.filter-size .input-save label {
  margin-left: 20px;
  color: var(--title);
  text-transform: capitalize;
  font-weight: 600;
  text-transform: capitalize;
}

.recent-box {
  padding: 20px 30px;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.recent-box .recent-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.recent-box .recent-content .star {
  margin-bottom: 10px;
  margin-top: 5px;
}

.recent-box .recent-content .price {
  display: flex;
  gap: 10px;
}

.recent-box .recent-content .price .regular-price {
  color: var(--theme);
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.recent-box .recent-content .price .offer-price {
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.recent-box a {
  color: var(--title);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

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

.recent-box:hover {
  border: 1px solid var(--theme);
}

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

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

.page-nav-wrap {
  margin-top: 50px;
}

@media (max-width: 575px) {
  .page-nav-wrap {
    margin-bottom: 30px;
  }
}

.page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .page-nav-wrap ul {
    flex-wrap: wrap;
  }
}

.page-nav-wrap ul li .previous {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  border: 1px solid transparent;
  color: var(--title);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .previous:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .previous {
    width: 35px;
  }
}

.page-nav-wrap ul li .next {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .next:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .next {
    width: 35px;
  }
}

.page-nav-wrap ul li .page-numbers {
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.page-nav-wrap ul li .page-numbers:hover,
.page-nav-wrap ul li .page-numbers.active {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}

@media (max-width: 575px) {
  .page-nav-wrap ul li .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
  }
}

.sort-bar {
  padding: 0;
  margin: 0 0 10px 0;
  border-radius: 5px;
}

.sort-bar .woocommerce-result-count {
  margin-bottom: 0;
}

.sort-bar .single-select {
  height: 46px;
  line-height: 46px;
  border: 1px solid #E8E8E8;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 209px;
  font-size: 16px;
  margin: 0;
  padding: 0 40px 0 20px;
}

.sort-bar .nav a {
  display: inline-block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 19px;
  text-transform: capitalize;
  color: var(--body-color);
  margin: 0 0 0 20px;
}

.sort-bar .nav a.active,
.sort-bar .nav a:hover {
  color: var(--theme) !important;
}

.categories-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}

.categories-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}

.categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid rgb(229, 229, 229);
  top: 5px;
}

.categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark {
  background-color: var(--theme);
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -5px;
  left: 5px;
  color: var(--theme);
  font-size: 11px;
}

.categories-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
  display: block;
  color: var(--white);
}

.categories-list .checkbox-single .text-color {
  font-weight: 600;
  color: var(--title);
}

.categories-list .checkbox-single .text-color .star {
  color: var(--theme);
  margin-right: 5px;
}

/*----------------------------------------------
    # Widget Sidebar style2 here
----------------------------------------------*/
.main-sidebar2 .single-sidebar-widget {
  padding: 40px;
  background-color: var(--theme2);
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .main-sidebar2 .single-sidebar-widget {
    padding: 18px;
  }
}

.main-sidebar2 .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}

.main-sidebar2 .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.main-sidebar2 .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}

.main-sidebar2 .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sidebar2 .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}

.main-sidebar2 .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}

.main-sidebar2 .single-sidebar-widget .search-widget form button:hover {
  background: var(--theme);
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul {
  padding-left: 0;
  list-style-type: none;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li {
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: var(--title);
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li a i {
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li a span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li:hover {
  background: #0dcaf0;
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li:hover a {
  color: var(--white) !important;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li:hover a i {
  opacity: 1;
  visibility: visible;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li:hover span {
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li.active {
  background: #004654;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li.active a {
  color: var(--white) !important;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li.active a i {
  opacity: 1;
  visibility: visible;
}

.main-sidebar2 .single-sidebar-widget .blog-widget-categories ul li.active span {
  color: var(--white);
}

.main-sidebar2 .single-sidebar-widget .contact-info-widget h3 {
  color: var(--title);
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-bottom: 5px;
}

.main-sidebar2 .single-sidebar-widget .contact-info-widget p {
  color: var(--text);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  margin-bottom: 30px;
}

.main-sidebar2 .single-sidebar-widget .contact-info-widget .icon {
  max-width: 96px;
  margin: 0 auto;
  height: 96px;
  line-height: 106px;
  text-align: center;
  background: #004654;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.main-sidebar2 .single-sidebar-widget .contact-info-widget .icon i {
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
}

.main-sidebar2 .single-sidebar-widget .contact-info-widget h5 {
  color: var(--title);
  text-align: center;
  font-family: "Marcellus", serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.2px;
  margin-top: 20px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area {
  width: 100%;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  width: 78px;
  height: 79px;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content {
  width: 100%;
  padding: 20px;
  background: var(--white);
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 8px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--title);
  margin-right: 5px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  margin-bottom: 0;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme2);
}

.main-sidebar2 .single-sidebar-widget .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.main-sidebar2 .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sidebar2 .single-sidebar-widget .tagcloud a.active,
.main-sidebar2 .single-sidebar-widget .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

@media (max-width: 1199px) {
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}

@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }

  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}

/*# sourceMappingURL=main.css.map */

.gallery-section {
  padding: 80px 0;
}



.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0dcaf0, rgb(0 70 84 / 33%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: white;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
  overflow: hidden;
  /* Prevent any scrolling */
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  position: relative;
  max-width: 90vw;
  /* Use viewport units */
  max-height: 90vh;
  /* Use viewport units */
  width: auto;
  height: auto;
  margin: auto;
  animation: zoomIn 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes zoomIn {
  from {
    transform: scale(0.3);
  }

  to {
    transform: scale(1);
  }
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Maintain aspect ratio while fitting */
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
  display: block;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.close:hover {
  color: #e74c3c;
  background: rgba(0, 0, 0, 0.8);
}

.modal-title {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 10001;
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10001;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #e74c3c;
}

.prev {
  left: -60px;
}

.next {
  right: -60px;
}

/* Responsive updates */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95vw;
    max-height: 85vh;
    padding: 20px;
    /* Add some padding on mobile */
  }

  .modal-image {
    max-width: calc(100% - 40px);
    /* Account for padding */
    max-height: calc(100% - 40px);
  }

  .close {
    top: -35px;
    font-size: 25px;
    width: 40px;
    height: 40px;
  }

  .nav-arrow {
    display: none;
    /* Hide arrows on mobile for better UX */
  }

  .modal-title {
    bottom: -40px;
    font-size: 1.2rem;
  }
  .submenu {
        display: grid;
        grid-template-columns: repeat(1, 1fr)!important; 
        gap: 10px; /* Adds space between columns */
    }
}
.submenu {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; /* Adds space between columns */
    }

    .submenu li {
        list-style: none; /* Removes default list styling */
    }

    .submenu a {
        text-decoration: none;
        color: #000; /* You can change this to the color of your choice */
    }

  
        .technique-info {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .technique-benefits {
            list-style: none;
            padding-left: 0;
        }

        .technique-benefits li {
            padding: 5px 0;
            color: #666;
        }

        .results-timeline {
            background: var(--theme2);
            color: black;
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .timeline-list {
            list-style: none;
            padding-left: 0;
        }

        .timeline-list li {
            padding: 8px 0;
            border-left: 3px solid #0dcaf0;
            padding-left: 20px;
            margin: 10px 0;
        }

        .prp-treatment-section {
            background: #f8f9fa;
        }

        .process-steps {
            margin-top: 20px;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            background: linear-gradient(135deg, #004654 20%, #0dcaf0 80%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .step-content h5 {
            margin-bottom: 5px;
            color: #333;
        }

        .step-content p {
            margin: 0;
            color: #666;
            font-size: 14px;
        }

        .prp-benefits ul {
            list-style: none;
            padding-left: 0;
        }

        .prp-benefits li {
            padding: 8px 0;
            color: #333;
        }

        .sub-title {
            color: #333;
            margin: 25px 0 15px 0;
            font-size: 20px;
        }

        .checklist {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        /* Smooth scroll styles */
        html {
            scroll-behavior: smooth;
        }

        .scroll-link {
            cursor: pointer;
            transition: color 0.3s ease;
            text-decoration: none !important;
        }

        .scroll-link:hover {
            color: #667eea !important;
        }

        /* Highlight target section temporarily */
        .highlight-section {
            background-color: rgba(102, 126, 234, 0.1);
            transition: background-color 0.3s ease;
            padding: 10px;
            border-radius: 5px;
        }

        /* Active sidebar styling */
        .blog-widget-categories ul li.active a {
            color: #667eea;
            font-weight: 600;
        }

        .blog-widget-categories ul li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .blog-widget-categories ul li a:hover {
            background-color: rgba(102, 126, 234, 0.05);
        }

        /* Responsive design for mobile */
        @media (max-width: 768px) {
            .step {
                flex-direction: column;
                text-align: center;
            }

            .step-number {
                margin-bottom: 10px;
                margin-right: 0;
            }

            .prp-benefits ul li {
                font-size: 14px;
            }
        }

        /* Additional enhancement for section titles */
        .title {
            scroll-margin-top: 120px; /* Accounts for fixed header */
        }

        /* Loading animation for smooth transitions */
        .scroll-loading {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }


         .philosophy-section {
            padding: 80px 0;
            background: #f8f9fc;
            position: relative;
        }

        .philosophy-content {
            position: relative;
            z-index: 2;
        }

        .philosophy-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .philosophy-subtitle {
            color: #004654;
            font-weight: 500;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .philosophy-subtitle img {
            width: 20px;
            height: auto;
        }

        .philosophy-title h2 {
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .philosophy-quote {
            color: #F29B7C;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .philosophy-description {
            color: #666;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        .philosophy-cards {
            margin-top: 50px;
        }

        .philosophy-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            height: 100%;
        }

        .philosophy-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .philosophy-card h3 {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-align: center;
        }

        .philosophy-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .philosophy-list li {
            position: relative;
            padding: 15px 0 15px 35px;
            line-height: 1.6;
            color: #555;
            border-bottom: 1px solid #f5f5f5;
        }

        .philosophy-list li:last-child {
            border-bottom: none;
        }

        .philosophy-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 22px;
            width: 8px;
            height: 8px;
            background: #0dcaf0;
            border-radius: 50%;
        }

        .philosophy-list li strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        .services-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .service-item {
            background: #fff;
            padding: 15px 20px;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #0dcaf0;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-item:hover::before {
            transform: scaleX(1);
        }

        .service-item:hover {
            background: #fef8f5;
            border-color: #0dcaf0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(242, 155, 124, 0.15);
        }

        .service-item span {
            font-size: 0.95rem;
            /* color: #555; */
            font-weight: 500;
        }
 /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .philosophy-section {
                padding: 50px 0;
            }

           
            

            .philosophy-card {
                padding: 20px;
                margin-bottom: 20px;
            }

            
             .services-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
          }
           @media (max-width: 480px) {
            .philosophy-section {
                padding: 40px 0;
            }

            .philosophy-title {
                margin-bottom: 40px;
            }

            

            .philosophy-card {
                padding: 15px;
            }


            .philosophy-list li {
                padding: 10px 0 10px 25px;
                font-size: 0.95rem;
            }

            .service-item {
                padding: 12px 15px;
            }
        }

        

        
     /* Why Choose Section Styles - Vertical Timeline Layout */
        .why-choose-section {
            padding: 80px 0;
            background: white;
            position: relative;
        }

        .why-choose-content {
            position: relative;
            z-index: 2;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .subtitle {
            font-size: 1rem;
            color: #0dcaf0;
            font-weight: 500;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .subtitle img {
            width: 20px;
            height: auto;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .timeline-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #004654, #0dcaf0);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        .timeline-item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 50%;
            padding-right: 50px;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            padding-left: 50px;
            text-align: left;
        }

        .timeline-content {
            background: #f0f9ff;
            padding: 35px;
            border-radius: 20px;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .timeline-content:hover {
            background: white;
            border-color: #004654;
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 70, 84, 0.2);
        }

        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-left-color: #f0f9ff;
            transition: border-left-color 0.4s ease;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border: 15px solid transparent;
            border-right-color: #f0f9ff;
            transition: border-right-color 0.4s ease;
        }

        .timeline-content:hover::after {
            border-left-color: white !important;
            border-right-color: white !important;
        }

        .timeline-icon {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #004654, #0dcaf0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 70, 84, 0.4);
            border: 4px solid white;
            z-index: 10;
            transition: all 0.4s ease;
        }

        .timeline-item:hover .timeline-icon {
            transform: translate(-50%, -50%) scale(1.2);
            box-shadow: 0 15px 35px rgba(0, 70, 84, 0.6);
        }

        .timeline-icon i {
            font-size: 1.7rem;
            color: white;
        }

        .timeline-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .timeline-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .timeline-number {
            position: absolute;
            top: -22px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #004654;
            background: white;
            padding: 5px 12px;
            border-radius: 20px;
            border: 2px solid #004654;
        }

        .timeline-item:nth-child(odd) .timeline-number {
            right: 20px;
        }

        .timeline-item:nth-child(even) .timeline-number {
            left: 20px;
        }

      

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
           

            .timeline-line {
                left: 30px;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin: 0;
                margin-left: 80px;
                padding: 25px 20px;
                text-align: left;
            }

            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -15px;
                right: auto;
                border: 15px solid transparent;
                border-right-color: #f0f9ff;
                border-left-color: transparent;
            }

            .timeline-icon {
                left: 30px;
                width: 60px;
                height: 60px;
            }

            .timeline-icon i {
                font-size: 1.4rem;
            }

            .timeline-number {
                left: 10px !important;
                right: auto !important;
                top: -27px;
            }

            .timeline-content h3 {
                font-size: 1.2rem;
            }

           
        }

        @media (max-width: 480px) {
            

            .timeline-item {
                margin-bottom: 40px;
            }

            .timeline-content {
                padding: 20px 15px;
            }

            .timeline-icon {
                width: 50px;
                height: 50px;
            }

            .timeline-icon i {
                font-size: 1.2rem;
            }

            .timeline-content h3 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }

            .timeline-content p {
                font-size: 0.95rem;
            }
        }

        .footer-content .header-button .theme-btn{
          padding: 15px;
        }

         /* Enquiry Section Styles */
        .yaazh-enquiry-floating-section {
            position: fixed;
            top: 50%;
            right: -150px;
            transform: translateY(-50%);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .yaazh-enquiry-floating-section:hover {
            right: 0;
        }

        .yaazh-enquiry-trigger-btn {
            background: linear-gradient(45deg, #004654, #006B7F);
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 50px 0 0 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: -5px 5px 20px rgba(0, 70, 84, 0.3);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            min-width: 200px;
            overflow: hidden;
            position: relative;
        }

        .yaazh-enquiry-trigger-btn:hover {
            transform: scale(1.05);
            box-shadow: -8px 8px 25px rgba(0, 70, 84, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .yaazh-enquiry-trigger-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .yaazh-enquiry-trigger-btn:hover::before {
            left: 100%;
        }

        .yaazh-enquiry-icon {
            font-size: 20px;
            animation: pulse 2s infinite;
        }

        .yaazh-enquiry-text {
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Popup Modal Styles */
        .yaazh-enquiry-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .yaazh-enquiry-modal-overlay.yaazh-modal-active {
            opacity: 1;
            visibility: visible;
        }

        .yaazh-enquiry-modal-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.7) translateY(50px);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .yaazh-enquiry-modal-overlay.yaazh-modal-active .yaazh-enquiry-modal-container {
            transform: scale(1) translateY(0);
        }

        .yaazh-enquiry-modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .yaazh-enquiry-modal-close:hover {
            background: #f5f5f5;
            color: #004654;
            transform: rotate(90deg);
        }

        .yaazh-enquiry-modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .yaazh-enquiry-modal-title {
            font-size: 28px;
            font-weight: 700;
            color: #004654;
            margin: 0 0 10px 0;
        }

        .yaazh-enquiry-modal-subtitle {
            color: #666;
            font-size: 16px;
            margin: 0;
        }

        .yaazh-enquiry-form {
            display: grid;
            gap: 20px;
        }

        .yaazh-enquiry-form-group {
            display: flex;
            flex-direction: column;
        }

        .yaazh-enquiry-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .yaazh-enquiry-form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .yaazh-enquiry-form-input,
        .yaazh-enquiry-form-select,
        .yaazh-enquiry-form-textarea {
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .yaazh-enquiry-form-input:focus,
        .yaazh-enquiry-form-select:focus,
        .yaazh-enquiry-form-textarea:focus {
            outline: none;
            border-color: #004654;
            box-shadow: 0 0 0 3px rgba(0, 70, 84, 0.1);
        }

        .yaazh-enquiry-form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .yaazh-enquiry-submit-btn {
            background: linear-gradient(45deg, #004654, #006B7F);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }

        .yaazh-enquiry-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 70, 84, 0.3);
        }

        .yaazh-enquiry-submit-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .yaazh-enquiry-floating-section {
                right: -120px;
            }

            .yaazh-enquiry-trigger-btn {
                min-width: 160px;
                padding: 12px 15px;
                font-size: 14px;
            }

            .yaazh-enquiry-modal-container {
                padding: 25px;
                margin: 20px;
            }

            .yaazh-enquiry-form-row {
                grid-template-columns: 1fr;
            }

            .yaazh-enquiry-modal-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .yaazh-enquiry-floating-section {
                right: -100px;
            }

            .yaazh-enquiry-trigger-btn {
                min-width: 140px;
                padding: 10px 12px;
                font-size: 13px;
            }

            .yaazh-enquiry-text {
                display: none;
            }

            .yaazh-enquiry-floating-section:hover .yaazh-enquiry-text {
                display: inline;
            }
        }

        /* Loading Animation */
        .yaazh-enquiry-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .yaazh-doctor-hero-section {
            padding: 20px 0px;
            background: var(--yaazh-light-blue);
            position: relative;
            overflow: hidden;
        }

        .yaazh-doctor-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            pointer-events: none;
        }

        .yaazh-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .yaazh-doctor-profile-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Left Side - Image */
        .yaazh-doctor-image-showcase {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .yaazh-professional-image-frame {
            position: relative;
            /* width: 400px; */
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(44, 90, 160, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.3s ease;
        }

        .yaazh-professional-image-frame:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
            box-shadow: 0 30px 80px rgba(44, 90, 160, 0.2);
        }

        .yaazh-professional-image-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--yaazh-gradient-bg);
            opacity: 0.1;
            z-index: 1;
        }

        .yaazh-doctor-portrait {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .yaazh-professional-image-frame:hover .yaazh-doctor-portrait {
            transform: scale(1.05);
        }

        /* Decorative elements around image */
        .yaazh-floating-badge {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid var(--yaazh-accent-gold);
            border-radius: 50%;
            background: var(--yaazh-white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .yaazh-badge-top-right {
            top: -30px;
            right: -30px;
            animation: yaazh-float-animation 3s ease-in-out infinite;
        }

        .yaazh-badge-bottom-left {
            bottom: -30px;
            left: -30px;
            animation: yaazh-float-animation 3s ease-in-out infinite 1.5s;
        }

        .yaazh-badge-center-left {
            top: 50%;
            left: -40px;
            transform: translateY(-50%);
            animation: yaazh-float-animation 3s ease-in-out infinite 0.5s;
        }

        @keyframes yaazh-float-animation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Right Side - Content */
        .yaazh-doctor-info-panel {
            padding-left: 20px;
        }

        .yaazh-doctor-header-content {
            margin-bottom: 40px;
        }

        .yaazh-professional-subtitle {
            color: var(--yaazh-accent-gold);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .yaazh-professional-subtitle::before,
        .yaazh-professional-subtitle::after {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--yaazh-accent-gold);
        }

        .yaazh-doctor-main-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            -webkit-background-clip: text;
            background-clip: text;
        }

        .yaazh-doctor-bio-text {
            font-size: 18px;
            color: var(--yaazh-medium-gray);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* Statistics */
        .yaazh-achievement-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .yaazh-stat-card-item {
            text-align: center;
            padding: 25px 15px;
            background: var(--yaazh-white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(44, 90, 160, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .yaazh-stat-card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--yaazh-gradient-bg);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .yaazh-stat-card-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(44, 90, 160, 0.12);
        }

        .yaazh-stat-card-item:hover::before {
            transform: scaleX(1);
        }

        .yaazh-stat-number-display {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--yaazh-primary-blue);
            margin-bottom: 10px;
            display: block;
        }

        .yaazh-stat-description-label {
            font-size: 14px;
            color: var(--yaazh-medium-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Specialties */
        .yaazh-expertise-showcase {
            margin-bottom: 40px;
        }

        .yaazh-specialties-display-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .yaazh-specialty-feature-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: var(--yaazh-white);
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(44, 90, 160, 0.06);
            transition: all 0.3s ease;
        }

        .yaazh-specialty-feature-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(44, 90, 160, 0.1);
        }

        .yaazh-specialty-icon-circle {
            width: 50px;
            height: 50px;
            background: var(--yaazh-gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yaazh-white);
            font-size: 20px;
        }

        .yaazh-specialty-title-text {
            font-size: 16px;
            font-weight: 600;
            color: var(--yaazh-dark-navy);
        }

        /* Social Media */
        .yaazh-social-connect-section {
            margin-top: 40px;
        }

        .yaazh-social-section-title {
            font-size: 18px;
            color: var(--yaazh-dark-navy);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .yaazh-social-links-container {
            display: flex;
            gap: 15px;
        }

        .yaazh-social-media-link {
            width: 50px;
            height: 50px;
            background: var(--yaazh-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--yaazh-primary-blue);
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .yaazh-social-media-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--yaazh-gradient-bg);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }

        .yaazh-social-media-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(44, 90, 160, 0.2);
        }

        .yaazh-social-media-link:hover::before {
            transform: scale(1);
        }

        .yaazh-social-media-link:hover i {
            color: var(--yaazh-white);
            position: relative;
            z-index: 1;
        }

        /* Contact Button */
        .yaazh-consultation-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: var(--yaazh-gradient-bg);
            color: var(--yaazh-white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
            margin-top: 30px;
        }

        .yaazh-consultation-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(44, 90, 160, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .yaazh-doctor-profile-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .yaazh-doctor-info-panel {
                padding-left: 0;
            }

            .yaazh-doctor-main-title {
                font-size: 2.5rem;
            }

            .yaazh-achievement-stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .yaazh-specialties-display-grid {
                grid-template-columns: 1fr;
            }

            .yaazh-professional-image-frame {
                width: 300px;
                height: 400px;
                transform: none;
            }

            .yaazh-floating-badge {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .yaazh-achievement-stats-grid {
                grid-template-columns: 1fr;
            }

            .yaazh-doctor-main-title {
                font-size: 2rem;
            }

            .yaazh-social-links-container {
                justify-content: center;
            }
        }

        /* WhatsApp Floating Button Styles */
        .yaazh-whatsapp-floating-section {
            position: fixed;
            top: 58%; /* Position below the enquiry button */
            right: -10px;
            z-index: 9999;
            font-family: 'Arial', sans-serif;
        }

        .yaazh-whatsapp-trigger-btn {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #004654, #006b7d);
            color: white;
            border: none;
            border-radius: 50px 0 0 50px;
            padding: 15px 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 70, 84, 0.4);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
            white-space: nowrap;
            min-width: 60px;
            max-width: 60px;
            height: 60px;
            position: relative;
            text-decoration: none;
        }

        .yaazh-whatsapp-trigger-btn:hover {
            max-width: 200px;
            padding: 15px 25px;
            box-shadow: 0 6px 30px rgba(0, 70, 84, 0.6);
            transform: translateY(-2px);
            background: linear-gradient(135deg, #006b7d, #004654);
            text-decoration: none;
            color: white;
        }

        .yaazh-whatsapp-trigger-btn:active {
            transform: translateY(0px);
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        }

        .yaazh-whatsapp-icon {
            font-size: 24px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .yaazh-whatsapp-text {
            margin-left: 12px;
            font-size: 16px;
            font-weight: 600;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.4s ease;
            transition-delay: 0.1s;
        }

        .yaazh-whatsapp-trigger-btn:hover .yaazh-whatsapp-text {
            opacity: 1;
            transform: translateX(0);
            color: white;
        }

        .yaazh-whatsapp-trigger-btn:hover .yaazh-whatsapp-icon {
            transform: scale(1.1);
        }

        /* Pulse animation for attention */
        @keyframes whatsapp-pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        .yaazh-whatsapp-trigger-btn:not(:hover) {
            animation: whatsapp-pulse 3s infinite;
        }
        .yaazh-enquiry-trigger-btn:not(:hover){
          animation: whatsapp-pulse 3s infinite;
        }

        /* Floating animation */
        @keyframes whatsapp-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

      

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .yaazh-whatsapp-floating-section {
                bottom: 120px;
                right: -10px;
            }
            
            .yaazh-whatsapp-trigger-btn {
                padding: 12px 16px;
                min-width: 50px;
                max-width: 50px;
                height: 50px;
            }
            
            .yaazh-whatsapp-trigger-btn:hover {
                max-width: 180px;
                padding: 12px 20px;
            }
            
            .yaazh-whatsapp-icon {
                font-size: 20px;
            }
            
            .yaazh-whatsapp-text {
                font-size: 14px;
                margin-left: 10px;
            }
        }

        @media (max-width: 480px) {
            .yaazh-whatsapp-floating-section {
                bottom: 100px;
                right: -10px;
            }
            
            .yaazh-whatsapp-trigger-btn:hover {
                max-width: 160px;
            }
        }

        /* Additional enhancement: Ripple effect on click */
        .yaazh-whatsapp-trigger-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .yaazh-whatsapp-trigger-btn:active::after {
            width: 300px;
            height: 300px;
        }

        /* Smooth entrance animation */
        @keyframes whatsapp-entrance {
            0% {
                opacity: 0;
                transform: scale(0) rotate(180deg);
            }
            50% {
                opacity: 1;
                transform: scale(1.2) rotate(90deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .yaazh-whatsapp-floating-section .yaazh-enquiry-floating-section {
            animation: whatsapp-entrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
