/*-----------------------------------------------------------------

-------------------------------------------------------------------
 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&amp;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&amp;display=swap");
:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #ed8650;
    --theme2: #ffede3;
    --theme3: #0f4b8d;
    --title: #0d0d0d;
    --orange: #f74f22;
    --text: #6e6e6e;
    --border: #cccccc;
    --border-2: #6e6e6e;
    --bg3: linear-gradient(#f1f5fb, #fff);
    --bg: linear-gradient(#ffc59f, #fbe9dd);
    --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: 18px;
    font-weight: normal;
    line-height: 28px;
    color: #000000;
    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: var(--title);
    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: 18px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: var(--theme3);
}

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: var(--title);
    transition: all 0.4s ease-in-out;
}
a:hover {
    color: var(--theme3) !important;
}

p {
    color: var(--black);
    /* 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: 15px 20px;
    gap: 10px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    border-radius: 10px;
    background: var(--theme);
    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%;
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1;
}
.theme-btn:hover {
    color: var(--white) !important;
    background-color: #195799 !important;
}
.theme-btn:hover:before {
    top: -96%;
}

.theme-btn-2 {
    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;
}
.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-theme3 {
    background: var(--bg3);
}

.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: var(--theme) !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(--black) !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(--black);
}

.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 rgba(0, 0, 0, 0.2);
    border-top-color: var(--theme);
    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: var(--theme);
    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 {
    animation: letters-loading 4s infinite;
    color: var(--title);
    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: var(--theme);
}
.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: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 99;
    right: 20px;
    bottom: 65px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top:hover {
    background-color: var(--title);
}
.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: var(--theme);
    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: var(--title);
    font-family: "Marcellus", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 57.6px;
}
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
        line-height: 35px;
    }
    .wcu-content.style1 .box {
        position: relative;
        padding: 20px 25px 20px 25px !important;
        background: var(--theme2);
        margin-bottom: 40px;
        border-left: 3px solid var(--theme);
        /* margin-left: 40px; */
        /* max-width: 482px; */
    }
    .wcu-thumb.style1 .thumb2 {
        position: absolute;
        bottom: -100px !important;
        right: 0px !important;
        width: 60% !important;
        z-index: 1;
    }
}
.section-title p {
    color: var(--black);
    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: start;
    gap: 19px;
    padding-bottom: 15px;
}
.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(--theme3);
    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(--black);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.08px;
    /* max-width: 240px; */
}
.fancy-box.style1 .fancy-item .icon {
    width: 60px;
    height: 60px;
    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: var(--theme);
    border: 1px solid var(--theme);
    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: var(--theme);
    border: 1px solid var(--theme);
    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: var(--theme);
    color: var(--white);
    border: 1px solid var(--theme);
}

.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(--border);
    opacity: 0.3;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    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: #f9f3f0;
    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 {
    position: absolute;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--theme);
    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; */
    /* position: absolute; */
    /* margin-left: 0px; */
    margin-left: 8px;
}
.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;
}
@media (max-width: 1400px) {
    .intro-wrapper.section-padding {
        padding: 30px 0;
    }
}
.section-padding {
    padding: 60px 0;
}
@media (max-width: 1199px) {
    .section-padding {
        padding: 60px 0;
    }
}
@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
    /* .intro-section {
        padding-top: 115px !important;
    } */
}
@media (max-width: 575px) {
    .section-padding {
        padding: 40px 0;
    }
}
/* .intro-section {
    padding-top: 130px !important;
} */

.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;
    }
    .wcu-content-top {
        margin-top: 0px;
    }
}

/* 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: 10px;
    }
    .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
        font-size: 17px;
    }
}
@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;
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 18px;
}
@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: #195597;
    }
}

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

.header-logo img {
    /* max-height: 85px; */
    max-height: 125px;
}
.footer-logo {
    max-height: 125px !important;
    padding-bottom: 15px;
}
.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;
    }
    .header-logo img {
        max-height: 115px;
    }
    /* .intro-section {
        padding-top: 125px !important;
    } */
}
@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-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px !important;
    }
}
.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: 5px 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 0;
    text-align: left;
    position: relative;
    color: var(--title);
    /* font-family: "DM Sans", sans-serif; */
    font-family: "Marcellus", serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: capitalize;
    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: 1px;
}
.header-main .main-menu ul li a:hover,
.header-main .main-menu ul li a.active {
    color: var(--title) !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: "Marcellus", serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    background-color: var(--theme2);
    padding: 0 25px;
    padding-bottom: 20px;
    padding-top: 20px;
    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;
    padding-bottom: 20px;
    padding-top: 20px;
}
.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: var(--theme2);
    color: var(--theme) !important;
    /* padding: 11px 35px; */
    padding: 20px 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);
    background: var(--bg);
    padding: 5px 8px;
    border-radius: 8px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.9s;
    /* background-color: var(--theme); */
    background: var(--bg);
    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(--black);
}
.sticky.header-1 .header-main .main-menu ul li a.active,
.sticky.header-1 .header-main .main-menu ul li a:hover {
    color: var(--black) !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: var(--title) none repeat scroll 0 0;
    border-left: 2px solid var(--theme);
    position: fixed;
    right: 0;
    top: 0;
    /* width: 400px; */
    width: 100%;
    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; */
    max-height: 120px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
    background: var(--bg);
}
.offcanvas__wrapper .offcanvas__content .text {
    color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 25px;
    height: 25px;
    line-height: 25px;
    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: var(--theme);
    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; */
        width: 100%;
    }
}
@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-color: #ffede3;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.breadcumb-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    /* background-image: url(../gallery/bread-bg.png); */
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.breadcumb-wrapper .breadcumb-content {
    padding: 70px 0;
    text-align: left;
    position: relative;
    z-index: 2;
}
.breadcumb-wrapper .breadcumb-content .breadcumb-title {
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100px;
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .breadcumb-wrapper .breadcumb-content .breadcumb-title {
        font-size: 20px;
        line-height: 45px;
    }
    .breadcumb-wrapper .breadcumb-content {
        padding: 30px 0;
        text-align: left;
        position: relative;
        z-index: 2;
    }
    .breadcumb-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px !important;
        height: 100%;
        /* background-image: url(../gallery/bread-bg.png); */
        background-position: center right;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }
}
.breadcumb-wrapper .breadcumb-content .breadcumb-menu {
    display: flex;
    justify-content: start;
    gap: 10px;
}
.breadcumb-wrapper .breadcumb-content .breadcumb-menu li a {
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 31.2px;
}
@media (max-width: 375px) {
    .breadcumb-wrapper .breadcumb-content .breadcumb-menu li a {
        font-size: 18px;
        line-height: 21.2px;
    }
}
.breadcumb-wrapper .breadcumb-content .breadcumb-menu li.active {
    color: var(--theme);
    font-family: "Marcellus", serif;
    font-size: 18px;
    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: 40px;
    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: var(--theme);
    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(--black);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    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 > .container > p {
    color: var(--black);
    /* padding-bottom: 15px; */
}
.footer-bottom.style3 .footer-wrapper {
    padding: 10px 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(--black);
}
.footer-bottom.style3 .footer-wrapper p a {
    color: var(--black) !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; */
    bottom: -6.2rem;
    left: -2rem;
    z-index: 2;
}
.services-wrapper.style2 .services-thumb .shape img {
    border: none;
    width: 90%;
}
.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: 20px;
    background: var(--bg);
    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: var(--title);
    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: var(--theme);
    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 var(--theme);
    color: var(--theme);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.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 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;
}
.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;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
@media (max-width: 767px) {
    .wcu-thumb.style1 .thumb1 {
        width: 100%;
    }
}
.wcu-thumb.style1 .thumb2 {
    position: absolute;
    bottom: -125px;
    right: 100px;
    z-index: 1;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top: 3px solid var(--theme);
    border-bottom: 3px solid var(--theme);
}
.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 40px;
    background: var(--theme2);
    margin-bottom: 40px;
    border-left: 3px solid var(--theme);
    /* 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(../gallery/main-bg.png); */
    background: var(--bg);
}
@media (max-width: 1199px) {
    .intro-wrapper.style1 {
        /* background-image: none; */
        background-position: center;
        background-size: cover;
        /* background: var(--bg); */
    }
}
.intro-wrapper.style2 {
    background: var(--title);
}

.intro-content-wrapper.style1 {
    /* padding: 117px 0 190px 80px; */
    padding: 100px 0px 40px 80px;
    position: relative;
    /* background: var(--white); */
}
@media (max-width: 1199px) {
    .intro-content-wrapper.style1 {
        padding: 50px 30px 30px 30px;
        margin-top: 0px;
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .intro-content-wrapper.style1 {
        padding: 30px 15px 20px 15px;
    }
}
@media (max-width: 767px) {
    .intro-content-wrapper.style1 {
        padding: 0px 15px 15px 15px;
        margin-top: 0px;
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
}
.intro-content-wrapper.style1:before {
    position: absolute;
    top: 0;
    left: 130px;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    /* background: linear-gradient(
        116deg,
        #fff 35.36%,
        rgba(255, 255, 255, 0.68) 50.95%,
        rgba(255, 255, 255, 0) 66.17%
    ); */
}
@media (max-width: 1200px) {
    .intro-content-wrapper.style1:before {
        position: absolute;
        top: 0;
        left: 0px;
        bottom: 0;
        content: "";
        width: 100%;
        height: 100%;
        z-index: 2;
        /* background: linear-gradient(
            125deg,
            #fff 35.36%,
            rgba(255, 255, 255, 0.68) 50.95%,
            rgba(255, 255, 255, 0) 66.17%
        ); */
    }
}
.intro-content-wrapper.style1 .intro-content {
    position: relative;
    z-index: 5;
}
.intro-content-wrapper.style1 .banner-text-obesity {
    position: relative;
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 70px;
    text-transform: capitalize;
    z-index: 5;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.intro-content-wrapper.style1 .banner-text-condition {
    position: relative;
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    text-transform: capitalize;
    z-index: 5;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.intro-content-wrapper.style1 .banner-text-choice {
    position: relative;
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 85px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
    text-transform: capitalize;
    z-index: 5;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.intro-content-wrapper.style1 .banner-text-charge {
    position: relative;
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    text-transform: capitalize;
    z-index: 5;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .intro-content-wrapper.style1 .banner-text-obesity {
        font-size: 105px;
        padding-bottom: 20px;
        line-height: 60px;
    }
    .intro-content-wrapper.style1 .banner-text-condition {
        font-size: 30px;
        line-height: 36px;
        padding-bottom: 10px;
    }
    .intro-content-wrapper.style1 .banner-text-choice {
        font-size: 70px;
        line-height: 48px;
        padding-bottom: 15px;
    }
    .intro-content-wrapper.style1 .banner-text-charge {
        font-size: 30px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {
    .intro-content-wrapper.style1 .banner-text-obesity {
        font-size: 75px;
        line-height: 50px;
        padding-bottom: 10px;
    }
    .intro-content-wrapper.style1 .banner-text-condition {
        font-size: 22px;
        line-height: 32px;
    }
    .intro-content-wrapper.style1 .banner-text-choice {
        font-size: 46px;
        line-height: 40px;
    }
    .intro-content-wrapper.style1 .banner-text-charge {
        font-size: 18px;
        line-height: 28px;
    }
}
.intro-content-wrapper.style1 p {
    color: var(--title);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    margin-bottom: 18px;
}
@media (max-width: 767px) {
    /* .intro-content-wrapper.style1 h1 {
        font-size: 25px;
        line-height: 35px;
    }
    .intro-content-wrapper.style1 h2 {
        font-size: 20px;
        line-height: 35px;
    } */
}
.intro-content-wrapper.style1 p {
    color: var(--title);
    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: -50px;
    bottom: 0;
    right: 0;
    z-index: 1;
    max-width: 650px;
}
@media (max-width: 1699px) {
    .intro-content-wrapper.style1 .intro-thumb {
        max-width: 500px;
        top: 0;
    }
}
@media (max-width: 1399px) {
    .intro-content-wrapper.style1 .intro-thumb {
        max-width: 450px;
        top: 40px;
    }
}
@media (max-width: 1199px) {
    .intro-content-wrapper.style1 .intro-thumb {
        position: relative;
        max-width: 100%;
        margin-top: 0px;
        top: 0;
    }
}
.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: 260px;
    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(../gallery/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(../gallery/chevron-up.svg);
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    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: 13px 15px; */
    padding: 5px 15px;
    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(--title);
    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: 18px;
    font-style: normal;
    font-weight: 500;
    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: 20px;
    padding-right: 20px;
    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: 20px 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: 20px 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: var(--theme);
    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: var(--theme);
    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: var(--theme);
}
.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: var(--theme);
    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: 18px;
        line-height: 24px;
    }
    .recent-post .recent-post-meta a {
        font-size: 12px;
    }
} /*# sourceMappingURL=main.css.map */

/* =============== new css ========= */
.icon2 img {
    width: 40px;
    height: 40px;
}

.care-card {
    background-color: var(--body);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.care-card h5 {
    color: var(--theme3);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.care-card p {
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0;
}

.care-card-icon {
    font-size: 2rem;
    color: var(--theme);
    margin-bottom: 15px;
}

/* --------last section ------------ */
/* New Section Styles */
.path-to-change {
    /* background-color: var(--theme2); */
    padding: 50px 0;
    border-radius: 8px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

/* Animation for Fade-In */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.path-to-change p {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.5s forwards;
    animation-delay: 0.2s;
}

.path-to-change .btn-start {
    color: var(--theme3);
    border: none;
    font-size: 1.2rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1.5s forwards;
    animation-delay: 0.4s;
}

.path-to-change .btn-start:hover {
    /* background-color: darken(var(--theme), 10%); */
    transform: scale(1.1);
}

.illustration img {
    max-width: 100%;
    height: auto;
}

.illustration {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.5s forwards;
    animation-delay: 0.6s;
}

.path-to-change .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.path-to-change .col-md-6 {
    padding: 20px;
}

.text-bolds {
    font-weight: bolder;
    color: var(--theme3);
}

/* ============== */
/* .mean-nav > ul > li > a i.far {
    transition: transform 0.3s ease;
}

.mean-nav > ul > li.dropdown-open > a i.far {
    transform: rotate(45deg);
} */

/* =============================== */
.checklist-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.checklist-new li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--theme); /* change as per theme */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 4px; /* aligns with first text line */
}

.checklist-new li span {
    display: block;
    color: #333;
    font-size: 18px;
}

/* Mobile fine-tuning */
@media (max-width: 576px) {
    .checklist-new li {
        gap: 10px;
    }

    .checklist-new li span {
        font-size: 18px;
    }
}

/* ======new sec ========= */
.care-team-section {
    padding: 80px 20px;
    /* background: linear-gradient(181deg, #fff, #faeee7); */
}

.care-team-section .container {
    max-width: 1200px;
    margin: auto;
}

.care-team-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.care-team-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: var(--title);
    margin-bottom: 8px;
}

.care-team-header h3 {
    font-size: 22px;
    color: var(--theme3);
    margin-bottom: 12px;
}
.team-header {
    font-size: 22px;
    color: var(--theme3);
}
.care-team-header p {
    font-size: 18px;
    color: var(--title);
    line-height: 1.7;
}

.care-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.care-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.care-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.08));
    opacity: 0;
    transition: 0.3s ease;
}

.care-card:hover::before {
    opacity: 1;
}

.care-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 18px;
}

.care-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0b2c5d;
    margin-bottom: 10px;
}

.care-card p {
    font-size: 14.8px;
    color: #555;
    line-height: 1.7;
}

.care-team-footer {
    margin-top: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.care-team-footer p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .care-team-header h2 {
        font-size: 28px;
    }

    .care-team-header h3 {
        font-size: 18px;
    }

    .care-card {
        padding: 24px 20px;
    }
}

.three-img {
    border-bottom: 2px solid var(--theme);
    margin-bottom: 10px;
}
.header-section-1 {
    background-color: var(--white);
    position: relative;
    z-index: 999;
}

/* =========================================
   Our Approach Page Styles
   ========================================= */

/* Science Section */
.approach-subtitle {
    font-weight: 400;
    color: var(--theme);
    letter-spacing: 1px;
}
.science-desc {
    line-height: 1.9;
    font-size: 1.1rem;
}
.medication-check {
    color: var(--theme);
}
.medication-list .small {
    font-size: 0.875em;
}
.science-visual-wrapper {
    min-height: 500px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border-radius: 30px;
    border: 1px solid rgba(237, 134, 80, 0.1);
    overflow: hidden;
    width: 100%;
}
.visual-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
}
.visual-icon {
    font-size: 40px;
    color: var(--theme);
}
.visual-text {
    color: #ccc;
    letter-spacing: 2px;
}
.visual-shape-1 {
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    opacity: 0.5;
}
.visual-shape-2 {
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    width: 120px;
    height: 120px;
    bottom: 40px;
    left: -30px;
    opacity: 0.6;
}
.visual-shape-3 {
    position: absolute;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
    border: 40px solid rgba(237, 134, 80, 0.03);
}

/* Mechanism Section */
.mechanism-subtitle {
    color: var(--theme);
}
.mechanism-desc {
    max-width: 700px;
    line-height: 1.8;
}
.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--theme2);
    color: var(--theme);
}
.feature-desc {
    line-height: 1.7;
}
.shadow-hover {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Journey Section */
.journey-subtitle {
    color: var(--theme);
}
.journey-line {
    /* top: 35%;
    height: 2px;
    background: repeating-linear-gradient(90deg,var(--theme2),var(--theme2) 10px,#fff 10px,#fff 20px);
    z-index: 0; */
}
.journey-step-number {
    width: 60px;
    height: 60px;
    background: var(--theme);
    border-radius: 50%;
    font-size: 24px;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

/* Commitment Section */
.commitment-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #fff, #fdfbf9);
}
.commitment-box {
    border-radius: 30px;
    background: var(--theme2);
    position: relative;
    overflow: hidden;
}
.commitment-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}
.commitment-icon {
    color: var(--theme);
    opacity: 0.8;
}
.commitment-desc {
    max-width: 700px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    .science-visual-wrapper {
        min-height: 300px !important;
        margin-top: 30px;
    }
    .journey-section .col-lg-4 {
        margin-bottom: 30px;
    }
    .journey-section .col-lg-4:last-child {
        margin-bottom: 0;
    }
}

/* =========================================
   Our Team Page Styles
   ========================================= */

.team-bg-light {
    background-color: #fdfbf9;
    background-image: radial-gradient(#ededed 1px, transparent 1px);
    background-size: 20px 20px; /* Subtle pattern */
}

/* Header Area */
.team-header-title {
    font-family: "Marcellus", serif;
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    color: var(--title);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.team-header-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--theme);
    margin: 15px auto 0;
    border-radius: 2px;
}
.team-header-subtitle {
    font-weight: 600;
    color: var(--theme);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
}
.team-header-desc {
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #666;
    font-family: "DM Sans", sans-serif;
    margin-top: 20px;
}

/* Premium Card Design */
.team-card-modern {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(237, 134, 80, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%; /* Equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Bottom active strip */
.team-card-modern::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--theme);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}
.team-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(237, 134, 80, 0.15);
    border-color: rgba(237, 134, 80, 0.2);
}
.team-card-modern:hover::before {
    transform: scaleX(1);
}

.team-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 25px !important;
}
.team-card-modern:hover .team-icon-circle {
    background: var(--theme);
    border-color: var(--theme);
    transform: rotateY(180deg); /* 3D Flip effect */
    box-shadow: 0 10px 30px rgba(237, 134, 80, 0.4);
}

.team-card-icon {
    font-size: 36px;
    color: var(--theme);
    transition: all 0.1s ease; /* Quick fade for flip */
}
.team-card-modern:hover .team-card-icon {
    color: #fff;
    transform: rotateY(-180deg); /* Keep icon facing forward */
}

.team-card-title {
    font-family: "Marcellus", serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--title);
    transition: color 0.3s ease;
}
.team-card-subtitle {
    color: var(--theme);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px !important;
    min-height: 20px; /* Alignment fix */
}
.team-card-modern:hover .team-card-title {
    color: var(--theme2); /* Subtle darkness change */
}
.team-card-desc {
    color: #777;
    font-size: 18px;
    line-height: 1.7;
    padding: 0 15px;
}

/* Quote Section */
.team-quote-box {
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(circle at top right, #fff5f0 0%, #fff 100%);
    box-shadow: 0 20px 60px rgba(237, 134, 80, 0.08);
    border: 1px solid rgba(237, 134, 80, 0.1);
    position: relative;
}
/* Fancy blob decoration */
.team-quote-box::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--theme);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
}
.team-quote-icon {
    font-size: 40px;
    color: var(--theme);
    opacity: 1;
    margin-bottom: 25px;
    display: block;
}
.team-quote-text {
    font-family: "Marcellus", serif;
    line-height: 1.6;
    font-size: 1.6rem;
    color: var(--title);
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .team-header-title {
        font-size: 2.5rem;
    }
    .team-quote-text {
        font-size: 1.3rem;
    }
}
@media (max-width: 767px) {
    .team-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .team-header-title {
        font-size: 2rem;
    }
    .team-card-modern {
        padding: 30px !important; /* Smaller padding on mobile */
    }
    .row.gx-5 {
        --bs-gutter-x: 0; /* Reset excessive gutter on mobile */
    }
    .team-card-modern {
        margin-bottom: 30px; /* Space between stacked cards */
    }
}

/* =========================================
   Our Team Page - New Modern Design
   ========================================= */

/* Hero Section */
.team-hero-section {
    background: linear-gradient(135deg, #fff 0%, #fdf8f5 100%);
    position: relative;
    overflow: hidden;
}
.team-hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(237, 134, 80, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}
.team-hero-title {
    font-family: "Marcellus", serif;
    font-size: 40px;
    color: var(--title);
    line-height: 145%;
    font-weight: 700;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .team-hero-title {
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    .team-hero-title {
        font-size: 28px;
    }
}
.team-hero-subtitle {
    font-size: 1.3rem;
    color: var(--theme);
    font-weight: 500;
    letter-spacing: 1px;
}
.team-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme), var(--theme2));
    border-radius: 2px;
}
.team-hero-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #000000;
    max-width: 850px;
}
.team-hero-desc-highlight {
    font-size: 18px;
    color: var(--theme);
    font-weight: 600;
    background: rgba(237, 134, 80, 0.08);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
}
.team-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Team Support Section */
.team-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--theme) 0%, #e07a3a 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.team-section-title {
    font-family: "Marcellus", serif;
    font-size: 2.8rem;
    color: var(--title);
    line-height: 1.3;
}
.team-section-desc {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}
.team-section-subdesc {
    font-size: 1.1rem;
    color: var(--theme);
    font-weight: 500;
    font-style: italic;
}

/* Team Members Section */
.team-members-section {
    background: #fff;
}
.team-member-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 60px;
}
.team-member-row:last-child {
    border-bottom: none;
}

/* Team Member Image Wrapper */
.team-member-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.team-member-img-bg {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(
        135deg,
        rgba(237, 134, 80, 0.1) 0%,
        rgba(237, 134, 80, 0.05) 100%
    );
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}
.team-member-img-bg.bg-nutrition,
.team-member-img-bg.bg-fitness,
.team-member-img-bg.bg-mental,
.team-member-img-bg.bg-aesthetic {
    background: linear-gradient(
        135deg,
        rgba(237, 134, 80, 0.1) 0%,
        rgba(237, 134, 80, 0.05) 100%
    );
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.team-member-icon-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.team-member-icon-large i {
    font-size: 60px;
    color: var(--theme);
    transition: all 0.4s ease;
}
.team-member-icon-large.icon-nutrition i,
.team-member-icon-large.icon-fitness i,
.team-member-icon-large.icon-mental i,
.team-member-icon-large.icon-aesthetic i {
    color: var(--theme);
}

.team-member-row:hover .team-member-icon-large {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.team-member-row:hover .team-member-icon-large i {
    transform: scale(1.1);
}

/* Team Member Content */
.team-member-content {
    padding-left: 20px;
}
.flex-lg-row-reverse .team-member-content {
    padding-left: 0;
    padding-right: 20px;
}
.team-member-badge {
    display: inline-block;
    background: rgba(237, 134, 80, 0.1);
    color: var(--theme);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.team-member-badge.badge-nutrition,
.team-member-badge.badge-fitness,
.team-member-badge.badge-mental,
.team-member-badge.badge-aesthetic {
    background: rgba(237, 134, 80, 0.1);
    color: var(--theme);
}
.team-member-title {
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 57.6px;
}
@media (max-width: 767px) {
    .team-member-title {
        font-size: 34px;
    }
}
@media (max-width: 575px) {
    .team-member-title {
        font-size: 28px;
    }
}
.team-member-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

/* Focus Areas */
.team-member-focus {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 20px;
    border-left: 4px solid var(--theme);
}
.focus-title {
    font-size: 18px;
    color: var(--title);
    margin-bottom: 15px;
    font-weight: 700;
}
.focus-title i {
    color: var(--theme);
}
.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.focus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #000000;
}
.focus-list li i {
    color: var(--theme);
    font-size: 18px;
}

/* Why Team Approach Section */
.team-approach-section {
    position: relative;
    overflow: hidden;
}
.team-approach-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.team-approach-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}
.approach-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.approach-title {
    font-family: "Marcellus", serif;
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.3;
}
.approach-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.approach-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Benefits List */
.approach-benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.approach-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 60px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.approach-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}
.approach-benefit-item i {
    font-size: 1.4rem;
    color: #fff;
}
.approach-benefit-item span {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.approach-conclusion {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 500;
}

/* CTA Section */
.team-cta-section {
    background: linear-gradient(135deg, #fdf8f5 0%, #fff 100%);
}
.team-cta-box {
    background: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 134, 80, 0.1);
    position: relative;
    overflow: hidden;
}
.team-cta-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(237, 134, 80, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}
.team-cta-icon {
    font-size: 70px;
    color: var(--theme);
    opacity: 0.9;
}
.team-cta-title {
    color: var(--title);
    font-family: "Marcellus", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 57.6px;
}
.team-cta-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}
.team-cta-highlight {
    font-size: 1.1rem;
    color: var(--title);
}

/* Mobile Responsiveness for New Team Page */
@media (max-width: 991px) {
    .team-hero-title {
        font-size: 2.5rem;
    }
    .team-section-title {
        font-size: 2.2rem;
    }
    .team-member-title {
        font-size: 1.6rem;
    }
    .team-member-content {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .flex-lg-row-reverse .team-member-content {
        padding-left: 0;
        padding-right: 0;
    }
    .team-member-focus {
        border-left: none;
        border-top: 4px solid var(--theme);
    }
    .focus-list {
        grid-template-columns: 1fr;
    }
    .approach-title {
        font-size: 2.2rem;
    }
    .team-cta-title {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .team-hero-title {
        font-size: 2rem;
    }
    .team-hero-desc-highlight {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    .team-section-title {
        font-size: 1.8rem;
    }
    .team-member-img-wrapper {
        min-height: 250px;
    }
    .team-member-img-bg {
        width: 200px;
        height: 200px;
    }
    .team-member-icon-large {
        width: 120px;
        height: 120px;
    }
    .team-member-icon-large i {
        font-size: 45px;
    }
    .team-member-title {
        font-size: 1.4rem;
    }
    .team-member-focus {
        padding: 20px;
    }
    .approach-benefits-list {
        flex-direction: column;
        align-items: center;
    }
    .approach-benefit-item {
        width: 100%;
        justify-content: center;
    }
    .team-cta-box {
        padding: 40px 25px;
    }
    .team-cta-title {
        font-size: 1.6rem;
    }
    .team-cta-icon {
        font-size: 50px;
    }
}

/* =========================================
   Our Approach Page - New Design
   ========================================= */

/* Hero Section */
.approach-hero-section {
    background: linear-gradient(135deg, #fff 0%, #fdf8f5 100%);
    position: relative;
    overflow: hidden;
}
.approach-hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(237, 134, 80, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
}
.approach-hero-subtitle {
    font-size: 1.3rem;
    color: var(--theme);
    font-weight: 500;
    letter-spacing: 1px;
}
.approach-hero-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #000000;
}
.approach-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Approach Sections */
.approach-section {
    position: relative;
}
.approach-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}
.approach-icon-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(237, 134, 80, 0.1) 0%,
        rgba(237, 134, 80, 0.05) 100%
    );
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}
.approach-section-img {
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    transition: transform 0.4s ease;
}
.approach-section:hover .approach-section-img {
    transform: translateY(-10px);
}
.approach-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #000000;
}

/* Approach Checklist */
.approach-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.approach-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.approach-checklist li:last-child {
    border-bottom: none;
}
.approach-checklist li i {
    color: var(--theme);
    font-size: 20px;
}

/* CTA Section */
.approach-cta-section {
    position: relative;
    overflow: hidden;
}
.approach-cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.approach-cta-section .section-title h2 {
    color: #fff;
}
.approach-cta-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}
.approach-cta-highlight {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    font-style: italic;
}

/* Mobile Responsiveness for Approach Page */
@media (max-width: 991px) {
    .approach-icon-wrapper {
        min-height: 280px;
        margin-bottom: 30px;
    }
    .approach-section-img {
        max-width: 220px;
    }
    .approach-icon-bg {
        width: 240px;
        height: 240px;
    }
}
@media (max-width: 767px) {
    .approach-hero-subtitle {
        font-size: 1.1rem;
    }
    .approach-icon-wrapper {
        min-height: 220px;
    }
    .approach-section-img {
        max-width: 180px;
    }
    .approach-icon-bg {
        width: 200px;
        height: 200px;
    }
    .approach-checklist li {
        font-size: 16px;
    }
    .approach-cta-desc {
        font-size: 16px;
    }
    .approach-cta-highlight {
        font-size: 18px;
    }
}

/* =========================================
   Our Approach Page - Creative Design V2
   ========================================= */

/* Approach Label Badge */
.approach-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--theme) 0%, #e07a3a 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Hero Decorative Shapes */
.approach-hero-shape1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(237, 134, 80, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.approach-hero-shape2 {
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background: rgba(237, 134, 80, 0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Info Box */
.approach-info-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 134, 80, 0.1);
    position: relative;
    overflow: hidden;
}
.approach-info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--theme), #e07a3a);
}
.approach-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme) 0%, #e07a3a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.approach-info-icon i {
    font-size: 35px;
    color: #fff;
}
.approach-info-text {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 20px;
}

/* Section Description */
.approach-section-desc {
    font-size: 18px;
    color: #000;
    line-height: 1.8;
}

/* Evaluation Grid */
.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.evaluation-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.evaluation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(237, 134, 80, 0.15);
    border-color: var(--theme);
}
.evaluation-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 134, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}
.evaluation-item:hover .evaluation-icon {
    background: var(--theme);
}
.evaluation-icon i {
    font-size: 28px;
    color: var(--theme);
    transition: all 0.4s ease;
}
.evaluation-item:hover .evaluation-icon i {
    color: #fff;
}
.evaluation-item h5 {
    font-size: 16px;
    color: var(--title);
    margin: 0;
    font-weight: 600;
}
.evaluation-conclusion {
    font-size: 18px;
    color: var(--theme);
    font-weight: 500;
    font-style: italic;
}

/* Pillar Cards */
.pillar-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.pillar-header {
    background: linear-gradient(
        135deg,
        rgba(237, 134, 80, 0.1) 0%,
        rgba(237, 134, 80, 0.05) 100%
    );
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--theme);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-icon i {
    font-size: 26px;
    color: #fff;
}
.pillar-icon.icon-green {
    background: #4caf50;
}
.pillar-icon.icon-blue {
    background: #2196f3;
}
.pillar-icon.icon-purple {
    background: #9c27b0;
}
.pillar-title {
    font-family: "Marcellus", serif;
    font-size: 22px;
    color: var(--title);
    margin: 0;
    line-height: 1.3;
}
.pillar-body {
    padding: 30px;
}
.pillar-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 15px;
}
.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.pillar-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}
.pillar-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--theme);
    border-radius: 50%;
}
.pillar-highlight {
    background: rgba(237, 134, 80, 0.08);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    color: var(--theme);
    font-weight: 500;
    margin: 0;
}
.pillar-highlight i {
    color: var(--theme);
}

/* Maintenance Visual */
.maintenance-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.maintenance-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--theme) 0%, #e07a3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 50px rgba(237, 134, 80, 0.3);
}
.maintenance-circle i {
    font-size: 45px;
    color: #fff;
}
.maintenance-ring {
    position: absolute;
    border: 2px dashed rgba(237, 134, 80, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}
.maintenance-ring.ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 25s;
}
.maintenance-ring.ring-2 {
    width: 280px;
    height: 280px;
    animation-duration: 35s;
    animation-direction: reverse;
}
.maintenance-ring.ring-3 {
    width: 350px;
    height: 350px;
    animation-duration: 45s;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Maintenance Features */
.maintenance-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.maintenance-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(237, 134, 80, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.maintenance-feature-item:hover {
    background: rgba(237, 134, 80, 0.1);
    transform: translateX(10px);
}
.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--theme);
    border-radius: 50%;
    flex-shrink: 0;
}
.maintenance-feature-item span {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
.maintenance-goal {
    color: var(--theme);
    font-size: 18px;
}

/* CTA Icon Circle */
.cta-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-icon-circle i {
    font-size: 40px;
    color: #fff;
}

/* Mobile Responsiveness - Creative Design */
@media (max-width: 991px) {
    .evaluation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .maintenance-visual {
        height: 280px;
    }
    .maintenance-ring.ring-3 {
        display: none;
    }
    .pillar-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
@media (max-width: 767px) {
    .approach-hero-shape1,
    .approach-hero-shape2 {
        display: none;
    }
    .approach-info-box {
        padding: 30px;
    }
    .evaluation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .evaluation-item {
        padding: 20px 15px;
    }
    .evaluation-icon {
        width: 50px;
        height: 50px;
    }
    .evaluation-icon i {
        font-size: 22px;
    }
    .evaluation-item h5 {
        font-size: 14px;
    }
    .pillar-title {
        font-size: 18px;
    }
    .maintenance-visual {
        height: 220px;
    }
    .maintenance-circle {
        width: 80px;
        height: 80px;
    }
    .maintenance-circle i {
        font-size: 30px;
    }
    .maintenance-ring.ring-2 {
        display: none;
    }
    .maintenance-ring.ring-1 {
        width: 150px;
        height: 150px;
    }
    .cta-icon-circle {
        width: 80px;
        height: 80px;
    }
    .cta-icon-circle i {
        font-size: 30px;
    }
}

/* =========== whatsapp btn call btn ============= */

.floating-action-buttons {
    position: fixed;
    bottom: 125px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.fab-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-item a {
    text-decoration: none;
    color: inherit;
}

.fab-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.fab-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.fab-item:hover .fab-ripple {
    transform: scale(1);
}

.fab-item:hover .fab-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Button */

.whatsapp-fab .fab-icon {
    background: linear-gradient(135deg, #38d97d, #0ecb5a);
}

.whatsapp-fab:hover .fab-icon {
    background: linear-gradientlinear-gradient(135deg, #66f3a3, #2ceb78);
}

/* Call Button */

.call-fab .fab-icon {
    background: linear-gradient(135deg, #66e4ed, #114d7d);
}

.call-fab:hover .fab-icon {
    background: linear-gradient(135deg, #8be9f0, #2979bb);
}

/* ================== new page css ============================= */

/*----------------------------------------------
    # Weight Loss Injections Page Styles
----------------------------------------------*/
.wli-hero-section {
    position: relative;
    padding: 40px 0 40px;
    background: var(--bg3);
    overflow: hidden;
    z-index: 1;
}

.wli-hero-content .theme-btn {
    margin-top: 30px;
}

.wli-section-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--title) 0%, var(--theme) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.wli-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.wli-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.wli-card-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--theme2);
    border-radius: 50%;
    font-size: 28px;
    color: var(--theme);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.wli-card:hover .wli-card-icon {
    background: var(--theme);
    color: var(--white);
    transform: rotateY(360deg);
}

.wli-card h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.wli-injection-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
}

.wli-injection-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme);
}

.wli-injection-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme3);
    margin-bottom: 10px;
}

.wli-injection-subtitle {
    font-size: 18px;
    color: var(--theme);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.wli-feature-list {
    margin-top: 30px;
    text-align: left;
}

.wli-feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #000;
    font-size: 18px;
}

.wli-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme);
    font-weight: 700;
}

.wli-journey-step {
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-left: 4px solid var(--theme);
    transition: all 0.3s ease;
}

.wli-journey-step:hover {
    transform: translateX(10px);
    background: var(--theme2);
}

.wli-journey-step .step-number {
    font-size: 50px;
    font-weight: 700;
    color: rgba(237, 134, 80, 0.15);
    position: absolute;
    right: 20px;
    top: 10px;
    line-height: 1;
}

.wli-stat-box {
    padding: 30px;
    background: linear-gradient(135deg, var(--theme) 0%, #f74f22 100%);
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wli-stat-box h3 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 5px;
}

.wli-stat-box p {
    color: rgba(255, 255, 255, 0.9);
}

.wli-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.wli-faq-accordion .accordion-button {
    font-family: "Marcellus", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--title);
    background: var(--white);
    padding: 5px 25px;
    box-shadow: none;
}

.wli-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--theme);
    background: var(--theme2);
}

.wli-faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.wli-faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #000;
    line-height: 1.6;
}

.wli-team-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.wli-team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--theme2), var(--white));
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.wli-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(237, 134, 80, 0.15);
    border-bottom-color: var(--theme);
}

.wli-team-card:hover::before {
    height: 100%;
}

.wli-team-card .team-icon-wrapper {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--bg3);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--theme);
    font-size: 32px;
    transition: all 0.4s ease;
}

.wli-team-card:hover .team-icon-wrapper {
    background: var(--theme);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.wli-team-card h5 {
    color: var(--title);
    font-size: 20px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.wli-team-card:hover h5 {
    color: var(--theme);
}

.wli-team-card p {
    color: var(--text);
    font-size: 18px;
}

/* Elegant Team Redesign */
.wli-team-elegant {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px; /* Slightly sharper for elegance or 100px for pill? Let's stick to soft rect */
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wli-team-elegant:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(237, 134, 80, 0.2);
}

.wli-team-elegant .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    color: var(--theme);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(237, 134, 80, 0.1);
}

.wli-team-elegant:hover .icon-box {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
    transform: rotateY(180deg);
}

.wli-team-elegant h5 {
    font-family: "Marcellus", serif;
    font-size: 24px; /* Larger, more prominent */
    margin-bottom: 12px;
    color: var(--title);
    background: linear-gradient(90deg, var(--title) 0%, var(--title) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--title);
    transition: all 0.4s ease;
}

.wli-team-elegant:hover h5 {
    background: linear-gradient(90deg, var(--theme) 0%, #f74f22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wli-team-elegant p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}

/* General Alias for Elegant Card */
.wli-elegant-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wli-elegant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(237, 134, 80, 0.2);
}

.wli-elegant-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    color: var(--theme);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(237, 134, 80, 0.1);
}

.wli-elegant-card:hover .icon-box {
    background: var(--theme);
    color: var(--white);
    border-color: var(--theme);
    transform: rotateY(180deg);
}

.wli-elegant-card h4,
.wli-elegant-card h5 {
    font-family: "Marcellus", serif;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--title);
    background: linear-gradient(90deg, var(--title) 0%, var(--title) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--title);
    transition: all 0.4s ease;
}

.wli-elegant-card:hover h4,
.wli-elegant-card:hover h5 {
    background: linear-gradient(90deg, var(--theme) 0%, #f74f22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wli-elegant-card p {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #6e6e6e;
    line-height: 1.7;
    font-weight: 400;
}

.location-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--theme);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(237, 134, 80, 0.2);
    font-size: 18px;
}

/* Ozempic Page Specialized Styles */
.oz-hero {
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.oz-hero h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--title);
    line-height: 1.3;
}

.oz-section-title {
    margin-bottom: 25px;
}

.oz-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--title);
    position: relative;
    display: inline-block;
}

.oz-section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.oz-feature-box {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.oz-feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme);
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
}

.oz-feature-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.oz-feature-box .icon {
    font-size: 40px;
    color: var(--theme);
    margin-bottom: 20px;
}

.oz-feature-box h4,
.oz-feature-box h5 {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--title);
}

.oz-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}
.oz-checklist-item i {
    color: var(--theme);
    font-size: 18px;
    margin-top: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.oz-timeline-step {
    text-align: center;
    position: relative;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ddd;
    transition: 0.3s;
    height: 100%;
}
.oz-timeline-step:hover {
    border-color: var(--theme);
    background: #fffbf9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.oz-timeline-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--theme);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.oz-faq-accordion .accordion-item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 6px !important;
    background: #fff;
    overflow: hidden;
}
.oz-faq-accordion .accordion-button {
    background: #fff;
    color: var(--title);
    font-weight: 600;
    font-size: 18px;
    padding: 5px 25px;
    box-shadow: none;
}
.oz-faq-accordion .accordion-button:not(.collapsed) {
    background: #fffbf9;
    color: var(--theme);
    border-bottom: 1px solid #eee;
}
.oz-faq-accordion .accordion-body {
    padding: 20px 25px;
    color: #000000;
    line-height: 1.6;
}

.wli-cta-soft {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
}
.wli-cta-soft .cta-icon-circle {
    background: #fff;
    color: var(--theme);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(237, 134, 80, 0.1);
}
.wli-cta-soft h2 {
    color: var(--title);
}
.wli-cta-soft .approach-cta-desc {
    color: #555;
}
.wli-cta-soft .approach-cta-highlight {
    color: var(--theme);
    font-weight: 600;
}

.oz-overlay-badge {
    position: absolute;
    bottom: -50px;
    left: 0;
    margin: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    max-width: 300px;
    border-left: 4px solid var(--theme);
    display: none;
}
@media (min-width: 768px) {
    .oz-overlay-badge {
        display: block;
    }
}
.oz-overlay-badge h6 {
    font-size: 18px;
    margin-bottom: 0.25rem;
    color: var(--title);
    font-weight: 700;
}
.oz-overlay-badge p {
    font-size: 18px;
    line-height: 1;
    color: #000000;
    margin-bottom: 0;
}

/* Refactored WLI Inline Styles */
.wli-text-content {
    color: #000;
}
.wli-rounded-img {
    border-radius: 20px;
}
.wli-highlight-title {
    color: var(--title);
}
.wli-bg-light-alt {
    background-color: #f9f9f9;
}
.wli-injection-card.featured {
    border-color: var(--theme);
    transform: scale(1.05);
}
.wli-eligibility-note {
    background-color: var(--theme2);
    border-left: 4px solid var(--theme);
}
.wli-eligibility-note p {
    font-size: 18px;
    font-weight: 600;
}
.wli-safety-section {
    background: linear-gradient(to right, #fff5f0, #fff);
}
.wli-safety-emphasis {
    color: var(--theme);
    font-weight: 700;
    font-size: 20px;
}
.wli-team-section {
    background-color: var(--theme2);
}

/* Ozempic Care Section Refactor */
.oz-care-section {
    background-color: var(--theme2);
}
.oz-care-section h2 {
    color: var(--title);
}
.oz-care-section p.text-muted-custom {
    color: #666;
}
.oz-care-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    border: 1px solid rgba(237, 134, 80, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.oz-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}
.oz-care-card i {
    font-size: 2.5rem;
    color: var(--theme);
    margin-bottom: 1rem;
    display: inline-block;
}
.oz-care-card h5 {
    color: var(--title);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.oz-care-card p {
    font-size: 18px;
    margin-bottom: 0;
    color: #000000;
}

/* ==========================================================================
   Mounjaro Page Styles (.mj-)
   ========================================================================== */
.themes-list i {
    color: var(--theme);
}
.themes-list {
    color: var(--theme);
}
.mj-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
}
.mj-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--title);
}
.mj-feature-box {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}
.mj-feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme);
    border-radius: 4px 0 0 4px;
    transition: all 0.3s ease;
}
.mj-feature-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}
.mj-feature-box .icon {
    font-size: 40px;
    color: var(--theme);
    margin-bottom: 20px;
    width: auto;
    height: auto;
    line-height: normal;
    background: transparent;
    border-radius: 0;
    display: block;
}
.mj-checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--theme);
    border: 1px solid #f0f0f0;
    border-left: 4px solid var(--theme);
}
.mj-checklist-item i {
    color: var(--theme);
    font-size: 20px;
    margin-top: 4px;
    margin-right: 15px;
}
.mj-timeline-step {
    text-align: center;
    position: relative;
    padding: 25px 15px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ddd;
    transition: all 0.3s ease;
    height: 100%;
}
.mj-timeline-step:hover {
    border-color: var(--theme);
    background: #fffbf9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.mj-timeline-num {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--theme);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}
.mj-care-section {
    background-color: var(--theme2);
}
.mj-care-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    border: 1px solid rgba(237, 134, 80, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.mj-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme);
}
.mj-care-card i {
    font-size: 2.5rem;
    color: var(--theme);
    margin-bottom: 1rem;
    display: inline-block;
}
.mj-care-card h5 {
    color: var(--title);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.mj-overlay-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 1.5rem auto;
    width: max-content;
    padding: 1rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    max-width: 280px;
    border-bottom: 4px solid var(--theme);
    display: none;
}
@media (min-width: 768px) {
    .mj-overlay-badge {
        display: block;
    }
}
.mj-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--theme);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(237, 134, 80, 0.2);
}

/* ============================ */
.inter-linking {
    font-size: 19px;
    color: var(--theme);
    font-weight: 500;
}

/* Approach Page Styles */
.approach-understanding-section {
    background: linear-gradient(135deg, #fdf8f5 0%, #fff 100%);
}

.approach-cta-section {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
}

.approach-cta-section .section-title h2 {
    color: var(--title);
}

/* =========================================
   Language Selector Inline Style
   ========================================= */
.language-selector-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
}

.lang-link {
    color: var(--title);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.lang-link:hover {
    color: var(--theme) !important;
    opacity: 1;
}

.lang-link.active {
    color: var(--theme) !important;
    opacity: 1;
    font-weight: 500;
}

.lang-separator {
    color: var(--title);
    opacity: 0.5;
    font-size: 14px;
}

/* Wegovy vs Injectable Blog Page Styles */
:root {
    --soft-blue: #f4f9fd;
    --soft-orange: #fff8f5;
    --soft-green: #f0fdf4;
    --card-hover-shadow: 0 15px 35px rgba(0,0,0,0.08);
    --theme-color: #ed8650;
    --theme-blue: #0f4b8d;
    --text-slate: #4a5568;
}

.section-colored-1 {
    background-color: var(--soft-blue);
}

.section-colored-2 {
    background-color: var(--soft-orange);
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03) !important;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow) !important;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
     transform: scaleX(1);
     transform-origin: left;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
    border-radius: 2px;
}

.premium-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
}

.premium-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.styled-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-blue));
    border-radius: 50%;
}

.accordion-item {
    border: 1px solid rgba(15, 75, 141, 0.1) !important;
    margin-bottom: 0.75rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--theme-blue);
    background: rgba(248, 250, 255, 0.8);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(237, 134, 80, 0.1), rgba(15, 75, 141, 0.1));
    color: var(--theme-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(237, 134, 80, 0.3);
}

.comparison-card {
    height: 100%;
    border: 1px solid rgba(15, 75, 141, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--theme-color);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 75, 141, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.content-text {
    color: #000000;
    line-height: 1.8;
}

.content-text-lg {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.7;
}

/* Additional element styles for Wegovy comparison */
.comparison-card h3 { color: var(--theme-blue); }
.comparison-card h5 { color: var(--theme-color); }
.feature-card h5 { color: var(--theme-blue); }
.feature-card hr { opacity: 0.1; margin: 1rem 0; }
.feature-card p {
    color: #000000;
    font-size: 1.3rem;
}

.accordion-button {
    font-size: 1.15rem !important;
    padding: 1.25rem !important;
}

.accordion-body {
    color:#000000;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Wegovy vs Injectable Wegovy Page Styles */
:root {
    --soft-blue: #f4f9fd;
    --soft-orange: #fff8f5;
    --soft-green: #f0fdf4;
    --card-hover-shadow: 0 15px 35px rgba(0,0,0,0.08);
    --theme-color: #ed8650;
    --theme-blue: #0f4b8d;
}
.section-colored-1 {
    background-color: var(--soft-blue);
}
.section-colored-2 {
    background-color: var(--soft-orange);
}
.section-colored-3 {
    background-color: var(--soft-green);
}
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03) !important;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow) !important;
}
.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
    border-radius: 2px;
}

.intro-gradient-section {
    background: linear-gradient(135deg, #f8faff 0%, #e8f4f8 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.premium-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(237, 134, 80, 0.2);
}

.styled-list {
    list-style: none;
    padding-left: 0;
}
.styled-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}
.styled-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-blue));
    border-radius: 50%;
}

.accordion-item {
    border: 1px solid rgba(15, 75, 141, 0.1) !important;
    margin-bottom: 0.75rem;
    border-radius: 12px !important;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    color: var(--theme-blue);
    background: rgba(248, 250, 255, 0.8);
    padding: 1.25rem;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(237, 134, 80, 0.1), rgba(15, 75, 141, 0.1));
    color: var(--theme-blue);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(237, 134, 80, 0.3);
}

.cta-card-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f4f9fd 100%);
    border: 1px solid rgba(15, 75, 141, 0.05) !important;
}

/* Dynamic Comparison Cards */
.comp-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(15, 75, 141, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.comp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.comp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 75, 141, 0.15);
}
.comp-card:hover::before {
    opacity: 1;
}
.comp-icon {
    width: 70px;
    height: 70px;
    background: #f8fbff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--theme-blue);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(15, 75, 141, 0.05);
}
.comp-card:hover .comp-icon {
    background: var(--theme-blue);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(15, 75, 141, 0.2);
}
.comp-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2b3c;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.comp-card:hover .comp-title {
    color: var(--theme-blue);
}
.comp-divider {
    width: 50px;
    height: 3px;
    background: #eee;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.comp-card:hover .comp-divider {
    width: 100%;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-blue));
}
.comp-text {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.comp-text strong {
    color: #010101;
    font-weight: 700;
}

/* Replacements for Inline Styles */
.text-theme-blue {
    color: var(--theme-blue) !important;
}
.text-theme-color {
    color: var(--theme-color) !important;
}
.icon-box-50 {
    width: 50px !important;
    height: 50px !important;
}
.bg-gradient-blue-orange {
    background: linear-gradient(135deg, var(--theme-blue), var(--theme-color)) !important;
}