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

    Template Name: Psycoin - Psychology and Counseling HTML5 Template
    Author: Bytezdevs
    Description: Psycoin - Psychology and Counseling HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&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;family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap");
:root {
    --rr-ff-body: "DM Sans", sans-serif;
    --rr-ff-heading: "Lora", serif;
    --rr-ff-p: "DM Sans", sans-serif;
    --rr-fw-normal: normal;
    --rr-fw-thin: 100;
    --rr-fw-elight: 200;
    --rr-fw-light: 300;
    --rr-fw-regular: 400;
    --rr-fw-medium: 500;
    --rr-fw-sbold: 600;
    --rr-fw-bold: 700;
    --rr-fw-ebold: 800;
    --rr-fw-black: 900;
    --rr-fs-body: 16px;
    --rr-fs-p: 16px;
    --rr-fs-h1: 100px;
    --rr-fs-h2: 55px;
    --rr-fs-h3: 24px;
    --rr-fs-h4: 18px;
    --rr-fs-h5: 16px;
    --rr-fs-h6: 14px;
    --rr-color-common-white: #ffffff;
    --rr-color-common-black: #000000;
    --rr-color-heading-primary: #1a1414;
    --rr-color-text-body: #8b827d;
    --rr-color-theme-primary: #9a8478;
    --rr-color-bg-1: #11151c;
    --rr-color-bg-2: #1e130c;
    --rr-color-grey-1: #f4f4f2;
    --rr-color-grey-2: #f6f2ef;
    --rr-color-border-1: #d6d4d3;
}

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

/**
	Typography CSS
*/
body {
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-size: 16px;
    line-height: 1.625;
    font-weight: normal;
    color: var(--rr-color-text-body);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #1a365d;
}

a,
a:hover {
    -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;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--rr-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

h1 {
    font-size: var(--rr-fs-h1);
}

h2 {
    font-size: var(--rr-fs-h2);
}

h3 {
    font-size: var(--rr-fs-h3);
}

h4 {
    font-size: var(--rr-fs-h4);
}

h5 {
    font-size: var(--rr-fs-h5);
}

h6 {
    font-size: var(--rr-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--rr-ff-p);
    font-size: 16px;
    font-weight: 400;
    color: var(--rr-color-text-body);
    margin-bottom: 15px;
    line-height: 30px;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--rr-color-theme-primary);
}

/* .slick-list.draggable {
  cursor: grab;
} */

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type="color"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

ul {
    display: block;
    padding: 0;
    margin: 0;
}

*::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

/* ::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
} */

*::-moz-placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

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

.b-radius {
    border-radius: 6px;
}

.white-bg {
    background-color: var(--rr-color-common-white);
}

.bg-grey {
    background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
    background-color: var(--rr-color-heading-primary);
}

.container {
    max-width: 1340px;
}

.bd-bottom {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.overflow-h {
    overflow: hidden;
}

.section-heading {
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 50px;
    }
    .media_ .row > .col-md-4:first-child::after {
        display: none;
    }
    .media_ .row > .col-md-4:nth-child(2)::after {
        display: none;
    }
}
.section-heading .sub-heading {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-theme-primary);
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    padding-right: 105px;
}
.section-heading .sub-heading:before {
    background-image: url(../img/shapes/sub-heading-shape.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    content: "";
    width: 88px;
    height: 11px;
    position: absolute;
    top: 65%;
    right: 0;
    transform: translateY(-50%);
}

@media only screen and (max-width: 992px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .section-heading .sub-heading {
        font-size: 12px;
    }
}
.section-heading .section-title {
    background: rgb(154, 132, 120);
    background: radial-gradient(
        circle,
        rgb(20 91 123) 10%,
        rgb(30, 19, 12) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    line-height: 1.3;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
    text-transform: initial;
    position: relative;
}
@media (max-width: 1170px) {
    .section-heading .section-title {
        font-size: 40px;
        width: 100%;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 24px;
    }
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
    background: inherit;
    color: var(--rr-color-common-white);
    -webkit-text-fill-color: var(--rr-color-common-white);
}

.heading-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
    margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
    .heading-space {
        margin-bottom: 40px;
    }
}

.t-up {
    text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
    color: var(--rr-color-common-white);
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 80%;
    height: 80%;
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.img-reveal {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
}
.img-reveal .img-overlay {
    background-color: var(--rr-color-theme-primary);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.img-reveal img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.anim-text {
    overflow: hidden;
}

.running-text-wrap {
    padding-bottom: 51px;
}
@media (max-width: 1170px) {
    .running-text-wrap {
        padding-bottom: 0;
    }
}

.running-text {
    overflow: hidden;
}
.running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 70px;
}
.running-text ul li {
    background: #9a8478;
    background: -webkit-radial-gradient(circle, #9a8478 0%, #1e130c 100%);
    background: radial-gradient(circle, #9a8478 0%, #1e130c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--rr-ff-heading);
    display: inline-block;
    white-space: nowrap;
    font-size: 120px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1;
    position: relative;
    padding-bottom: 20px;
}
.running-text ul li:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 50px;
    font-weight: 700;
    content: "\f078";
    color: var(--rr-color-heading-primary);
    position: absolute;
    top: 46%;
    right: -50px;
    transform: translateY(-50%);
}

/* Site Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #02050a;
    z-index: 999;
}

.loading {
    left: 50%;
    top: 50%;
    font-size: 100px;
    font-family: var(--rr-ff-heading);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .loading {
        font-size: 50px;
    }
}
.loading:before {
    color: #333;
    content: attr(data-loading-text);
}
.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: var(--rr-color-theme-primary);
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loading 6s infinite;
}
@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/*  Custom Cursor */
@media (min-width: 992px) {
    .mt-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 10px;
        top: 10px;
        user-select: none;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .mt-cursor:before {
        background: var(--rr-color-theme-primary);
        opacity: 1;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }
    .mt-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }
    .mt-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }
    .mt-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }
}
.sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 170px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}
/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Modern Hospital Attachments Section */
.hospital-attachments-modern {
    background: #f8f9fa;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hospital-attachments-modern__heading {
    margin-bottom: 2.5rem;
}
.hospital-attachments-modern__title {
    font-size: 2.5rem;
    font-family: var(--rr-ff-heading);
    font-weight: 700;
    color: #1a1414;
    position: relative;
    display: inline-block;
}
.hospital-attachments-modern__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--rr-color-theme-primary, #9a8478);
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
}
.hospital-attachments-modern__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 0;
}
.hospital-attachments-modern__item {
    display: block;
    justify-content: center;
    /* align-items: stretch; */
}
.hospital-attachments-modern__card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s;
    /* min-height: 320px; */
    position: relative;
    overflow: hidden;
}
.hospital-attachments-modern__card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(154, 132, 120, 0.18);
}
.hospital-attachments-modern__logo-wrapper {
    /* width: 110px; */
    /* height: 110px; */
    /* background: #f4f4f2; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    /* box-shadow: 0 2px 8px rgba(154, 132, 120, 0.08); */
    transition: box-shadow 0.25s;
}
.hospital-attachments-modern__card:hover
    .hospital-attachments-modern__logo-wrapper {
    box-shadow: 0 4px 16px rgba(154, 132, 120, 0.18);
}
.hospital-attachments-modern__logo-img {
    filter: grayscale(0.1) contrast(1.1);
    transition: filter 0.25s;
}
.hospital-attachments-modern__card:hover
    .hospital-attachments-modern__logo-img {
    filter: grayscale(0) contrast(1.2);
}
.hospital-attachments-modern__content {
    margin-top: 0.5rem;
}
.hospital-attachments-modern__hospital {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}
@media (max-width: 991.98px) {
    .hospital-attachments-modern__grid {
        gap: 1.5rem 0;
    }
    .hospital-attachments-modern__card {
        min-height: 260px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .hospital-attachments-modern__logo-wrapper {
        width: 90px;
        height: 90px;
    }
    .hospital-attachments-modern__logo-img {
        max-width: 100%;
        /* max-height: 65px; */
    }
}
@media (max-width: 767.98px) {
    .hospital-attachments-modern__title {
        font-size: 2rem;
    }
    .hospital-attachments-modern__card {
        min-height: 200px;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .hospital-attachments-modern__logo-wrapper {
        width: 100%;
        /* height: 70px; */
    }
    .hospital-attachments-modern__logo-img {
        max-width: 100%;
        /* max-height: 45px; */
    }
}

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

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

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 992px) {
    .md-mt-40 {
        margin-top: 40px;
    }
}

.pt-180 {
    padding-top: 180px;
}
@media only screen and (max-width: 992px) {
    .pt-180 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-180 {
        padding-top: 50px;
    }
}

.pt-140 {
    padding-top: 140px;
}
@media only screen and (max-width: 992px) {
    .pt-140 {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-140 {
        padding-top: 60px;
    }
}

.pt-130 {
    padding-top: 130px;
}
@media only screen and (max-width: 992px) {
    .pt-130 {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}
@media only screen and (max-width: 992px) {
    .pt-120 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pt-90 {
    padding-top: 90px;
}
@media only screen and (max-width: 992px) {
    .pt-90 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pt-80 {
    padding-top: 80px;
}
@media only screen and (max-width: 992px) {
    .pt-80 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-80 {
        padding-top: 60px;
    }
}

.pt-70 {
    padding-top: 70px;
}
@media only screen and (max-width: 992px) {
    .pt-70 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-70 {
        padding-top: 60px;
    }
}

.pb-180 {
    padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
    .pb-180 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-180 {
        padding-bottom: 60px;
    }
}

.pb-140 {
    padding-bottom: 140px;
}
@media only screen and (max-width: 992px) {
    .pb-140 {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-140 {
        padding-bottom: 60px;
    }
}

.pb-130 {
    padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
    .pb-80 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-70 {
    padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
    .pb-70 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-30 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-40 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-50 {
        padding-bottom: 50px;
    }
}

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

.ripple {
    z-index: -1;
}

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

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

@-webkit-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);
    }
}
@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);
    }
}
/* Scroll To Top */
#scroll-percentage {
    position: absolute;
}

#scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--rr-color-common-white);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}
@media only screen and (max-width: 992px) {
    #scroll-percentage {
        right: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #scroll-percentage {
        bottom: 20px;
        right: 20px;
    }
}

#scroll-percentage.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media only screen and (max-width: 992px) {
    #scroll-percentage.active {
        bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #scroll-percentage.active {
        bottom: 20px;
    }
}

#scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

#scroll-percentage-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}
.light-img {
    display: none;
}

.switcher-button {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 50;
    transform: translateY(-50%) rotate(90deg);
}

.switcher-button-inner-left:before,
.switcher-button-inner-left:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    outline: none;
}

.switcher-button .switcher-button-inner,
.switcher-button .switcher-button-inner-left {
    position: relative;
    cursor: pointer;
}

.switcher-button .switcher-button-inner-left:before {
    content: "\f186";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    display: block;
    color: #fff;
    position: absolute;
    z-index: 1;
    margin: 0;
    right: 26px;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.switcher-button .switcher-button-inner-left:after {
    content: "";
    display: inline-block;
    color: #fff;
    background: var(--rr-color-bg-1);
    border: 1px solid rgba(235, 235, 235, 0.2);
    width: 3.5em;
    height: 1.8em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    vertical-align: middle;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
}

.switcher-button .switcher-button-inner-left {
    color: rgba(250, 250, 250, 0.51);
}

[data-theme="light"] .switcher-button .switcher-button-inner-left:before {
    right: 10px;
    content: "\f185";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    color: var(--rr-color-heading-primary);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
[data-theme="light"] .switcher-button .switcher-button-inner-left:after {
    background: #fff;
    border: 1px solid rgba(235, 235, 235, 0.2);
}
[data-theme="light"] .switcher-button .switcher-button-inner-left {
    color: rgba(149, 149, 149, 0.51);
}
[data-theme="light"]
    .switcher-button
    .switcher-button-inner-left
    + .switcher-button-inner {
    color: rgba(250, 250, 250, 0.51);
}

/** Buttons CSS */
.rr-primary-btn {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    background: #003b5c;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 35px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.rr-primary-btn:before {
    background: #ffb81c;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.rr-primary-btn:hover {
    color: var(--rr-color-common-white);
}
.rr-primary-btn:hover:before {
    visibility: visible;
    opacity: 1;
}
.rr-primary-btn:focus {
    color: var(--rr-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
    width: 100%;
    position: fixed;
    /* top: 35px; */
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .header {
        position: relative;
        top: 0;
        height: auto !important;
    }
}
.header .header-container {
    max-width: 1605px;
    width: 100%;
    margin: 0 auto;
}

.header .top-bar {
    border-bottom: 1px dashed rgb(241 194 161);
}
@media only screen and (max-width: 767px) {
    .header .top-bar {
        display: none;
    }
}
.header .top-bar .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 15px 50px;
}
@media (max-width: 1399px) {
    .header .top-bar .top-bar-inner {
        column-gap: 10px;
    }
}
@media only screen and (max-width: 992px) {
    .header .top-bar .top-bar-inner {
        justify-content: center;
    }
}
.header .top-bar .top-bar-inner .top-bar-left {
    display: flex;
    align-items: center;
    background: aliceblue;
    padding: 3px 10px;
    border-radius: 53px;
    column-gap: 5px;
    /* border-bottom: 1px dashed rgb(241 194 161); */
}
@media only screen and (max-width: 992px) {
    .header .top-bar .top-bar-inner .top-bar-left {
        display: none;
    }
}
.header .top-bar .top-bar-inner .top-bar-left span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li {
    display: inline-flex;
    position: relative;
}
.header
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 15px;
}
.header
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type):before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    height: 4px;
    width: 4px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li a {
    background-image: linear-gradient(0deg, #3582da 0%, #3a74ca 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 35px;
}
@media (max-width: 1399px) {
    .header .top-bar .top-bar-inner .top-mid-content {
        display: none;
    }
}
.header .top-bar .top-bar-inner .top-mid-content p {
    color: #827e7d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.header .top-bar .top-bar-inner .top-mid-content p span {
    color: #1e130c;
    font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li {
    color: #242221;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li span {
    color: #913f59;
    font-size: 20px;
}
.header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner {
        padding: 15px;
    }
}
.header .primary-header-inner .header-left {
    display: flex;
    align-items: center;
}
.header .primary-header-inner .header-left .header-logo {
    margin-right: 40px;
    padding-right: 40px;
}
@media (max-width: 1600px) {
    .header .primary-header-inner .header-left .header-logo {
        margin-right: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-left .header-logo {
        margin-right: 0px;
        padding-right: 0px;
        border: none;
    }
}
.header .primary-header-inner .header-left .header-logo img {
    max-width: 300px;
}
.header .primary-header-inner .header-left .header-logo .logo-light {
    display: none;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 280px;
    }
}
.header .primary-header-inner .header-left .search-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-left .search-icon {
        display: none;
    }
}
.header .primary-header-inner .header-left .search-icon i {
    font-size: 24px;
    color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-left .search-icon span {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
}
.header .primary-header-inner .header-menu-wrap {
    display: flex !important;
    align-items: center;

    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 1600px) {
    .header .primary-header-inner .header-menu-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}
.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
@media (max-width: 1700px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
    margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
    margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: var(--rr-ff-heading);
    color: #003b5c;
    display: block;
    font-size: 18px;
    padding: 30.5px 0;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
    font-family: var(--bs-body-font-family);
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 14px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li a:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 30px;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li a:hover:before {
    width: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--rr-color-common-white);
    display: block;
    width: 220px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
        0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
        0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 90px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.6s ease;

    /*  */
    position: absolute;
    top: 100%; /* Position it below the parent menu item */
    left: 50%;
    transform: translateX(-50%); /* Center it under the parent */
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* display: none; */
    width: 600px; /* Adjust width as needed */
    padding: 15px;
    z-index: 1000;
    border-radius: 5px;
}
.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
    visibility: visible;
    transition: all 0.6s ease;
    opacity: 1;
    /* transform: none; */
}
.header .primary-header-inner .header-menu-wrap ul li li {
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
    background-color: #003b5c;
}
.header .primary-header-inner .header-menu-wrap ul.mega-menu li a:hover {
    color: #fff;
}
/* .header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: #fff;

} */
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: #fff;
}
.header .primary-header-inner .header-menu-wrap ul.treat_items li:hover a {
    color: #fff;
}
.header .primary-header-inner .header-menu-wrap ul li li a {
    /* background-color: var(--rr-color-common-white); */
    display: block;
    height: auto;
    line-height: inherit;
    color: #080808;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li li a {
        font-size: 13px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
    display: none;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover {
    color: var(--rr-color-heading-primary);
    letter-spacing: 0.4px;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-right-wrap {
    display: flex;
    align-items: center;
    column-gap: 120px;
    flex-wrap: wrap;
    row-gap: 20px;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 50px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 20px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right {
    display: flex;
    align-items: center;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item {
    display: flex;
    align-items: center;
    column-gap: 17px;
    margin-right: 30px;
}
@media (max-width: 1399px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-icon-item {
        display: none;
    }
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item
    .icon-item
    a {
    color: var(--rr-color-theme-primary);
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-theme-primary);
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item
    .icon-item
    a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-logo
        img {
        width: 90px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-btn {
        display: none;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
    border: 2px solid var(--rr-color-heading-primary);
    height: 58px;
    width: 58px;
    margin-left: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger {
    -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;
    transition: all 0.3s ease-in-out;
    text-align: left;
    height: 58px;
    max-width: 58px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span {
    background-color: var(--rr-color-heading-primary);
    display: block;
    width: 18px;
    height: 3px;
    text-align: left;
    -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;
    transition: all 0.3s ease-in-out;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span:not(:last-of-type) {
    margin-bottom: 4px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span:nth-child(2) {
    width: 10px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger:hover
    span:nth-child(2) {
    width: 15px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger:hover
    span:nth-child(3) {
    width: 12px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-right-item {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 992px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-right-item {
        line-height: 1;
        margin-left: 20px;
    }
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-right-item
    .mobile-side-menu-toggle {
    color: var(--rr-color-heading-primary);
    font-size: 30px;
    opacity: 0.9;
}
@media (min-width: 993px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-right-item
        .mobile-side-menu-toggle {
        display: none;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}
.header.fixed {
    top: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.header.fixed .primary-header {
    /* border-bottom: 1px solid rgba(30, 19, 12, 0.302); */
}

.header-2 {
    top: 0;
}
.header-2:before {
    background-image: url(../img/shapes/header-shape-1.png);
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 84%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.header-2 .primary-header {
    background-color: transparent;
}
.header-2 .header-container {
    max-width: 1320px;
}
.header-2 .top-bar {
    background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 992px) {
    .header-2 .top-bar {
        display: none;
    }
}
.header-2 .top-bar .top-bar-inner {
    padding: 15px 0;
}
.header-2 .top-bar .top-bar-inner .top-mid-content p {
    color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-mid-content p span {
    color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left span {
    color: var(--rr-color-common-white);
}
.header-2
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type):before {
    background-color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left .top-social li a {
    background-image: inherit;
    color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li {
    display: inline-flex;
}
.header-2
    .top-bar
    .top-bar-inner
    .top-bar-right
    .top-right-list
    li:not(:last-of-type) {
    margin-right: 15px;
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a {
    color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a:hover {
    color: var(--rr-color-heading-primary);
}
.header-2 .header-mid-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 25px 0;
}
@media only screen and (max-width: 992px) {
    .header-2 .header-mid-inner {
        display: none;
    }
}
.header-2 .header-mid-inner .header-mid-contact {
    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
}
.header-2 .header-mid-inner .header-mid-contact .icon {
    background-color: var(--rr-color-common-white);
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-2 .header-mid-inner .header-mid-contact .content span {
    color: var(--rr-color-theme-primary);
    display: block;
    font-weight: 500;
}
.header-2 .header-mid-inner .header-mid-contact .content a,
.header-2 .header-mid-inner .header-mid-contact .content p {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-size: 22px;
    font-weight: 500;
}
.header-2 .primary-header-inner {
    background-color: var(--rr-color-common-white);
    border: 1px solid #9e9c9b;
}
@media only screen and (max-width: 992px) {
    .header-2 .primary-header-inner {
        border: none;
    }
}
.header-2 .primary-header-inner .header-menu-wrap {
    padding-left: 0;
    border-left: none;
}
.header-2.fixed {
    top: -180px;
    transition: all 0.3s ease-in-out;
}
.header-2.fixed:before {
    visibility: hidden;
    opacity: 0;
}
.header-2.fixed .primary-header {
    border: none;
}

.header-4 {
    top: 0;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}
.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
}
@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}

.side-menu-wrapper {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 850px;
    -webkit-transform: translateX(850px);
    -ms-transform: translateX(850px);
    transform: translateX(850px);
    height: 100%;
    display: block;
    background-color: var(--rr-color-theme-bg-dark-deep);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
    background-color: var(--rr-color-theme-primary);
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}
.side-menu-wrapper.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
@media only screen and (max-width: 992px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu-content .side-menu-header {
    font-family: var(--rr-ff-body);
    font-size: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}
.side-menu-content
    .side-menu-item
    .side-menu-thumb-box
    .side-menu-info
    .side-menu-title {
    font-family: var(--rr-ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--rr-color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}
.side-menu-content
    .side-menu-item
    .side-menu-thumb-box
    .side-menu-info
    p:last-child {
    margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--rr-color-theme-primary);
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--rr-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
    transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}

.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}
.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}

.primary-header {
    width: 100%;
}
.primary-header.fixed {
    background-color: var(--rr-color-bg-1);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}
.primary-header.fixed .primary-header-inner {
    padding: 20px 60px;
}
@media (max-width: 1170px) {
    .primary-header.fixed .primary-header-inner {
        padding: 20px;
    }
}

@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu {
        background-color: var(--rr-color-common-white);
        position: fixed;
        overflow-y: auto;
        top: 0;
        right: 0;
        width: 400px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        height: 100%;
        display: block;
        z-index: 100;
        padding: 40px 40px 40px 40px;
        -webkit-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        backface-visibility: hidden;
    }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu {
        padding: 40px 20px;
        width: 100%;
        max-width: 320px;
    }
}
@media only screen and (max-width: 992px) {
    .mobile-side-menu.is-open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .mobile-side-menu .side-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-head a img {
        max-width: 225px;
    }
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        position: fixed;
        top: 48px;
        right: 40px;
        color: var(--rr-color-heading-primary);
        font-size: 17px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--rr-color-border-1);
    }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        right: 16px;
    }
}
@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
        background-color: var(--rr-color-theme-primary);
        color: var(--rr-color-common-white);
    }
    .mobile-side-menu .side-menu-wrap {
        overflow: hidden;
        margin-bottom: 50px;
    }
    .mobile-side-menu p {
        color: var(--rr-color-common-white);
        margin-bottom: 50px;
    }
    .mobile-side-menu .list-header {
        color: var(--rr-color-common-white);
        font-family: var(--rr-ff-body);
        font-weight: 400;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-list {
        list-style: none;
    }
    .mobile-side-menu .side-menu-list li {
        font-family: var(--rr-ff-body);
        font-size: 16px;
        font-weight: 500;
        color: var(--rr-color-heading-primary);
    }
    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        color: var(--rr-color-heading-primary);
        margin-left: 10px;
        font-size: 16px;
    }
    .mobile-side-menu .side-menu-list li i {
        margin-right: 10px;
    }
    .mobile-side-menu-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        height: 100%;
        width: 0%;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
        display: block;
    }
    .mobile-side-menu-overlay.is-open {
        width: 100%;
        opacity: 0.5;
        visibility: visible;
        cursor: url(../img/cancel.png), auto;
    }
}
.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}
.mean-bar .meanmenu-reveal {
    display: none !important;
}
.mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--rr-color-heading-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border-top: none;
    padding: 0;
    float: none;
}
@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li a {
        font-size: 14px;
    }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: #003b5c;
    color: var(--rr-color-common-white);
    position: absolute;
    padding: 0;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before,
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--rr-ff-p);
}
@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li ul li a {
        font-size: 13px;
    }
}

#popup-search-box {
    background-color: var(--rr-color-common-white);
    position: fixed;
    width: 100%;
    height: 20%;
    top: -100%;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
    width: 100%;
    padding: 20px 15px;
    padding-right: 80px;
    background: transparent;
    border: none;
    color: #ddd;
    border: 1px solid var(--rr-color-border-1);
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
    outline: none;
}
#popup-search-box .box-inner-wrap:hover {
    cursor: url(../img/cross.html), auto;
}
#popup-search-box .box-inner-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--rr-color-heading-primary);
    border: 1px solid var(--rr-color-border-1);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    -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;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    #popup-search-box .box-inner-wrap .search-close {
        height: 35px;
        width: 35px;
        top: 10px;
        right: 10px;
    }
}
#popup-search-box .box-inner-wrap .search-close:hover {
    background-color: var(--rr-color-theme-primary);
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
#popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.popup-tags {
    position: relative;
    margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section {
    position: relative;
    z-index: 1;
}
.blog-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-left-content {
    position: relative;
    z-index: 5;
}
.blog-left-content p {
    max-width: 520px;
    width: 100%;
}

.blog-carousel-wrap {
    max-width: 655px;
    width: 100%;
    height: 540px;
    overflow: hidden;
    position: relative;
}
@media only screen and (max-width: 992px) {
    .blog-carousel-wrap {
        margin: 0 auto;
        margin-top: 50px;
    }
}
.blog-carousel-wrap .blog-carousel {
    height: 540px;
}
@media only screen and (max-width: 767px) {
    .blog-carousel-wrap .swiper-pagination {
        display: none;
    }
}
.blog-carousel-wrap .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    height: 24px;
    width: 24px;
    border-radius: 0;
    border: 2px solid #ddd;
    opacity: 1;
    margin: 20px 0;
}
.blog-carousel-wrap
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid var(--rr-color-theme-primary);
}

.post-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 570px;
    width: 100%;
    height: 256px;
}
.post-card .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.post-card .post-thumb {
    height: 256px;
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .post-card .post-thumb {
        height: 300px;
    }
}
.post-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}
.post-card .post-thumb .overlay {
    background-image: linear-gradient(
        363deg,
        rgb(0, 0, 0) 0%,
        rgb(0, 0, 0) 0%,
        rgb(30, 19, 12) 0%,
        rgba(30, 19, 12, 0) 65%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.post-card .post-meta {
    background-color: var(--rr-color-common-white);
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0;
}
.post-card .post-meta li {
    font-family: var(--rr-ff-p);
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 13px 20px;
    text-transform: capitalize;
}
.post-card .post-content {
    position: absolute;
    left: 90px;
    bottom: 20px;
    right: 40px;
    z-index: 5;
}
@media only screen and (max-width: 767px) {
    .post-card .post-content {
        left: 80px;
        right: 20px;
    }
}
.post-card .post-content .title {
    color: var(--rr-color-common-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
    .post-card .post-content .title {
        font-size: 22px;
    }
    .post-card .post-content .title br {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .post-card .post-content .title {
        font-size: 18px;
    }
}
.post-card .post-content .title a {
    background: linear-gradient(
        var(--rr-color-common-white) 0%,
        var(--rr-color-common-white) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card .post-content .title a:hover {
    color: var(--rr-color-common-white);
    background-size: 100% 2px;
}
.post-card .post-content span {
    font-family: var(--rr-ff-p);
    color: var(--rr-color-common-white);
    font-weight: 500;
    display: inline-block;
    margin-left: 25px;
    padding-left: 45px;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.post-card .post-content span:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.post-card-2 {
    position: relative;
}
.post-card-2 .date {
    background-color: #f6f2ef;
    color: var(--rr-color-theme-primary);
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 0 100px 100px 0;
    display: inline-block;
    width: 155px;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .post-card-2 .date {
        display: none;
    }
}
@media (max-width: 1399px) {
    .post-card-2 .post-thumb {
        height: 100%;
    }
    .post-card-2 .post-thumb img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
.post-card-2 .post-content {
    border: 1px solid #bbb8b6;
    padding: 35px 50px;
}
@media only screen and (max-width: 767px) {
    .post-card-2 .post-content {
        padding: 30px 20px;
    }
}
.post-card-2 .post-content .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.post-card-2 .post-content .title a {
    background: linear-gradient(
        var(--rr-color-theme-primary) 0%,
        var(--rr-color-theme-primary) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
    color: var(--rr-color-theme-primary);
    background-size: 100% 2px;
}
.post-card-2 .post-content .category {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-left: 40px;
}
.post-card-2 .post-content .category:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.post-card-2 .post-content p {
    margin-bottom: 30px;
}
.post-card-2 .post-content .post-icon {
    display: flex;
    align-items: center;
}
.post-card-2 .post-content .post-icon .line {
    background-color: var(--rr-color-heading-primary);
    width: 260px;
    height: 2px;
    margin-top: 10px;
}
.post-card-2.card-2 {
    margin-top: 24px;
}
.post-card-2.card-2 .date {
    border-radius: 100px 0 0 100px;
}
.post-card-2.card-2 .post-content {
    text-align: right;
}
.post-card-2.card-2 .post-content .post-icon {
    justify-content: end;
}
.post-card-2.card-2 .post-content .post-icon img {
    transform: rotate(360deg);
}

.post-meta {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}
.post-meta li {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.post-meta li i {
    font-size: 14px;
}
.post-meta li:not(:last-of-type) {
    margin-right: 20px;
}
.post-meta li a:hover {
    color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
    .post-meta li {
        font-size: 12px;
    }
}

.pagination-wrap {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 10px;
}
.pagination-wrap li a {
    background-color: transparent;
    color: var(--rr-color-heading-primary);
    font-weight: 700;
    height: 60px;
    width: 60px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--rr-color-border-1);
    border-radius: 10px;
}
.pagination-wrap li a:hover {
    background-color: var(--rr-color-theme-primary);
}
.pagination-wrap li .active {
    background-color: var(--rr-color-theme-primary);
}

.blog-section-4 {
    padding-top: 220px;
}
@media (max-width: 1170px) {
    .blog-section-4 {
        padding-top: 140px;
    }
}
@media only screen and (max-width: 992px) {
    .blog-section-4 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .blog-section-4 {
        padding-top: 50px;
    }
}

.post-thumb-carousel .swiper-arrow .swiper-nav {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rr-color-heading-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 2;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-thumb-carousel .swiper-arrow .swiper-nav:hover {
    background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
    .post-thumb-carousel .swiper-arrow .swiper-nav {
        left: 10px;
    }
}
.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
    left: auto;
    right: 40px;
}
@media only screen and (max-width: 767px) {
    .post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
        right: 10px;
    }
}

.post-card-3 {
    padding: 40px 0 0 30px;
    border: 1px solid #bbb8b6;
}
@media only screen and (max-width: 767px) {
    .post-card-3 .post-content {
        padding-right: 20px;
    }
}
.post-card-3 .post-content .post-date-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.post-card-3 .post-content .post-date-wrap .date {
    color: var(--rr-color-common-white);
    position: relative;
    z-index: 1;
    padding: 5px 20px;
    border-radius: 0 100px 100px 0;
    overflow: hidden;
    margin-left: -30px;
}
@media only screen and (max-width: 767px) {
    .post-card-3 .post-content .post-date-wrap .date {
        font-size: 13px;
    }
}
.post-card-3 .post-content .post-date-wrap .date:before {
    background-image: linear-gradient(
        180deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.post-card-3 .post-content .post-date-wrap .category {
    margin-left: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--rr-color-theme-primary);
    font-weight: 500;
}
.post-card-3 .post-content .post-date-wrap .category:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.post-card-3 .post-content .title {
    margin-bottom: 30px;
}
.post-card-3 .post-content .title a {
    background: linear-gradient(
        var(--rr-color-theme-primary) 0%,
        var(--rr-color-theme-primary) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card-3 .post-content .title a:hover {
    color: var(--rr-color-theme-primary);
    background-size: 100% 2px;
}
.post-card-3 .post-thumb {
    height: 400px;
    overflow: hidden;
}
.post-card-3 .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card-3 .post-thumb .img-overlay {
    background-color: var(--rr-color-common-white);
}

.blog-inner-card:not(:last-of-type) {
    margin-bottom: 50px;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.hero-section {
    position: relative;
}
.hero-section .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 1600px) {
    .hero-section .shape {
        right: -10%;
    }
}
@media (max-width: 1399px) {
    .hero-section .shape {
        right: -20%;
    }
}
@media only screen and (max-width: 992px) {
    .hero-section .shape {
        display: none;
    }
}
.hero-section .shape-2 {
    position: absolute;
    top: 0;
    right: -68px;
}
@media (max-width: 1170px) {
    .hero-section .shape-2 {
        display: none;
    }
}
.hero-section .hero-imgs .hero-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.hero-section .hero-imgs .hero-img-1 img {
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
.hero-section .hero-imgs .hero-img-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    height: 963px;
}
@media (max-width: 1600px) {
    .hero-section .hero-imgs .hero-img-2 {
        right: -10%;
    }
}
@media (max-width: 1399px) {
    .hero-section .hero-imgs .hero-img-2 {
        right: -20%;
    }
}
@media only screen and (max-width: 992px) {
    .hero-section .hero-imgs .hero-img-2 {
        display: none;
    }
}
.hero-section .hero-imgs .hero-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    padding: 330px 0 294px 100px;
    position: relative;
    transform: translateY(-20px);
}
@media (max-width: 1170px) {
    .hero-content {
        padding-left: 70px;
    }
}
@media only screen and (max-width: 992px) {
    .hero-content {
        padding: 100px 0;
        padding-left: 70px;
        transform: translateY(0);
    }
}
@media only screen and (max-width: 767px) {
    .hero-content {
        padding-left: 40px;
    }
}
.hero-content .hero-text {
    color: #1e130c;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    writing-mode: vertical-lr;
    padding-left: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 767px) {
    .hero-content .hero-text {
        font-size: 12px;
        left: -10px;
    }
}
.hero-content .hero-text:before {
    background-image: url(../img/shapes/hero-text-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    width: 12px;
    height: 227px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(50%) rotate(180deg);
}
.hero-content .hero-title {
    background: rgb(154, 132, 120);
    background: radial-gradient(
        circle,
        rgb(154, 132, 120) 10%,
        rgb(30, 19, 12) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width: 1399px) {
    .hero-content .hero-title {
        font-size: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-content .hero-title {
        font-size: 36px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-2 {
        padding-top: 0;
    }
}

.hero-img-wrap {
    margin-top: 107px;
    max-width: 1760px;
    width: 100%;
    height: 800px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .hero-img-wrap {
        margin-top: 0;
    }
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap {
        height: 450px;
    }
}
.hero-img-wrap .hero-img {
    width: 100%;
    height: 100%;
}
.hero-img-wrap .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-wrap .hero-content-2 {
    background-image: -webkit-linear-gradient(
        180deg,
        rgb(30, 19, 12) 0%,
        rgb(154, 132, 120) 100%
    );
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 80px 150px 90px 300px;
    clip-path: polygon(37% 0, 90% 0, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 {
        padding: 50px 50px;
        padding-left: 100px;
    }
}
.hero-img-wrap .hero-content-2 .title {
    color: var(--rr-color-common-white);
    font-size: 100px;
    font-weight: 500;
    line-height: 1.2;
    text-align: right;
}
@media only screen and (max-width: 992px) {
    .hero-img-wrap .hero-content-2 .title {
        font-size: 55px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 .title {
        font-size: 40px;
    }
}
.hero-img-wrap .hero-content-2 .hero-btn {
    margin-top: 40px;
    text-align: right;
}
.hero-img-wrap .hero-content-2 .hero-text {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 140px;
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 .hero-text {
        display: none;
    }
}
.hero-img-wrap .hero-content-2 .hero-text h5 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
}
.hero-img-wrap .hero-content-2 .hero-text h5 span {
    color: var(--rr-color-theme-primary);
    font-size: 40px;
    font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Therapy CSS
----------------------------------------*/
.therapy-section {
    position: relative;
    z-index: 5;
    overflow-x: clip;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.theory-wrap {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 1325px;
    width: 100%;
    margin: 0 auto;
    margin-top: -200px;
    padding-bottom: 0;
}
@media only screen and (max-width: 992px) {
    .theory-wrap {
        margin-top: 0;
        padding: 40px 0;
        padding-bottom: 0;
    }
}
.theory-wrap:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 3000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.therapy-item {
    background-color: rgb(246, 242, 239);
    padding: 30px;
    position: relative;
    z-index: 1;
}
.therapy-item:before {
    background-image: linear-gradient(
        0deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 82%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .icon {
    background-color: var(--rr-color-common-white);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.therapy-item .icon:before {
    background-color: var(--rr-color-common-white);
    height: 30px;
    width: 30px;
    content: "";
    position: absolute;
    top: 25px;
    right: -10px;
    transform: rotate(-45deg);
    z-index: -1;
}
.therapy-item .therapy-content {
    padding-left: 100px;
}
.therapy-item .therapy-content .title {
    font-size: 24px;
    font-weight: 500;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content p {
    line-height: 1.5;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content .therapy-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.therapy-item .therapy-content .therapy-number a {
    color: #7b6f67;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5d1ce;
    border-radius: 50%;
}
.therapy-item .therapy-content .therapy-number a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.therapy-item .therapy-content .therapy-number .number {
    font-family: var(--rr-ff-heading);
    color: #e3dfdc;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.therapy-item.active:before,
.therapy-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.therapy-item.active .therapy-content .title,
.therapy-item:hover .therapy-content .title {
    color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-content p,
.therapy-item:hover .therapy-content p {
    color: #bbadad;
}
.therapy-item.active .therapy-number a,
.therapy-item:hover .therapy-number a {
    border: 1px solid rgba(213, 209, 206, 0.5);
    color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-number .number,
.therapy-item:hover .therapy-number .number {
    color: rgba(255, 255, 255, 0.12);
}

.therapy-bottom {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #d7cec9;
    position: relative;
}
.therapy-bottom .map-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}
.therapy-bottom ul {
    display: flex;
    align-items: center;
}
.therapy-bottom ul li {
    margin-right: -30px;
}
.therapy-bottom ul li.plus {
    color: var(--rr-color-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: var(--rr-color-theme-primary);
    transform: rotate(-45deg);
}
.therapy-bottom ul li.plus i {
    transform: rotate(45deg);
}
.therapy-bottom p {
    margin-left: 50px;
    margin-bottom: 0;
    font-weight: 500;
}
.therapy-bottom p a {
    color: var(--rr-color-heading-primary);
    font-weight: 600;
    text-decoration: underline;
}

.therapy-container {
    max-width: 1325px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1399px) {
    .therapy-container {
        padding: 0 15px;
    }
}

.therapy-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 80px 0;
}
.therapy-cta .title {
    color: var(--rr-color-common-white);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.therapy-2 {
    position: relative;
    z-index: 1;
}
.therapy-2:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 100%;
    height: 120px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
}
.therapy-2 .theory-wrap {
    box-shadow: 0px 0px 70px 0px rgba(34, 34, 34, 0.07);
}

/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.page-header .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100px;
    left: 0;
}
.page-header .overlay {
    background-image: -webkit-linear-gradient(
        180deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 72%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.page-header .bg-color-wrap {
    mask-image: url(../img/bg-img/page-header-bg.png);
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-header-content {
    padding: 60px 0 90px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: start;
}
@media only screen and (max-width: 992px) {
    .page-header-content {
        padding: 300px 0 90px 0;
    }
}
@media only screen and (max-width: 992px) {
    .page-header-content {
        padding: 200px 0 100px 0;
    }
}
.page-header-content .title {
    color: var(--rr-color-common-white);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .page-header-content .title {
        line-height: 1.3em;
    }
}
@media only screen and (max-width: 992px) {
    .page-header-content .title {
        font-size: 48px;
    }
}
@media only screen and (max-width: 767px) {
    .page-header-content .title {
        font-size: 46px;
        margin-bottom: 10px;
    }
}
.page-header-content .sub-title {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-style: italic;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .page-header-content .sub-title {
        font-size: 13px;
    }
}
.page-header-content .sub-title:before {
    background-image: url(../img/shapes/line.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 11px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.page-header-content .sub-title .home {
    color: var(--rr-color-common-white);
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    font-style: italic;
}
.page-header-content .sub-title .home:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 700;
    content: "-";
    color: var(--rr-color-common-white);
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.page-header-content .sub-title a {
    color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
    .page-header-content .sub-title a {
        line-height: 2;
    }
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-content {
    background-color: var(--rr-color-bg-1);
    padding: 40px 50px;
    border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
    .contact-content {
        padding: 30px 20px;
    }
}
.contact-content .section-heading {
    margin-bottom: 30px;
}
.contact-content .section-heading .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
    .contact-content .section-heading .section-title {
        font-size: 32px;
    }
}
.contact-content .contact-list .list-item {
    display: grid;
    align-items: center;
    grid-template-columns: 75px 1fr;
    grid-gap: 20px;
}
.contact-content .contact-list .list-item:not(:last-of-type) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
    .contact-content .contact-list .list-item {
        grid-template-columns: 1fr;
    }
}
.contact-content .contact-list .list-item .icon {
    background-color: var(--rr-color-border-1);
    color: var(--rr-color-theme-primary);
    font-size: 30px;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
    transition: all 0.3s ease-in-out;
}
.contact-content .contact-list .list-item .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
    margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
    display: block;
}
.contact-content .contact-list .list-item .content span {
    display: block;
}
.contact-content .contact-list .list-item:hover .icon {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

.contact-wrap {
    background-color: var(--rr-color-grey-1);
    padding: 60px;
    align-items: end;
}
@media only screen and (max-width: 767px) {
    .contact-wrap {
        padding: 40px 20px;
    }
}
.contact-wrap .section-heading .section-title {
    margin: 0;
}

.blog-contact-form.form-2 {
    border: 1px solid var(--rr-color-border-1);
}

.map-wrapper {
    margin-bottom: -10px;
}

.contact-section-2 {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}
@media only screen and (max-width: 992px) {
    .contact-section-2 {
        margin-top: 0px;
    }
}
.contact-section-2 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    z-index: -1;
}
@media only screen and (max-width: 992px) {
    .contact-section-2 .bg-img {
        display: none;
    }
}
.contact-section-2 .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.about-section {
    position: relative;
}
.about-section .shapes .shape.shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.about-section .shapes .shape.shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.about-container {
    max-width: 1570px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.about-img-wrap {
    max-width: 740px;
    width: 100%;
    /* height: 705px; */
    position: relative;
}
.about-img-wrap .about-mask-1 {
    max-width: 450px;
    width: 100%;
    height: 740px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-1.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -170px 0;
}
.about-img-wrap .about-mask-2 {
    max-width: 262px;
    width: 100%;
    height: 452px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-2.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -240px 0;
}
.about-img-wrap .about-mask-3 {
    max-width: 262px;
    width: 100%;
    height: 440px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-3.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -140px 0;
}
.about-img-wrap .about-text-box {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 296px;
    height: 144px;
    display: grid;
    align-items: center;
    grid-template-columns: 65px 1fr;
    grid-gap: 20px;
    position: absolute;
    left: 70%;
    bottom: 40px;
    transform: translateX(-50%);
    padding: 20px 30px;
}
.about-img-wrap .about-text-box .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .about-img-wrap .about-text-box {
        left: 0;
        transform: translateX(0);
    }
}

.about-content {
    max-width: 590px;
    width: 100%;
}
@media only screen and (max-width: 992px) {
    .about-content {
        margin-top: 40px;
    }
}
.about-content .bottom-title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 40px;
}
.about-content .about-items {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
    row-gap: 15px;
    max-width: 527px;
    width: 100%;
}
.about-content .about-items .about-item {
    display: grid;
    align-items: center;
    grid-template-columns: 45px 1fr;
    grid-gap: 15px;
    padding: 15px 40px 15px 20px;
    border: 2px solid #e8e7e6;
    border-radius: 0 100px 100px 0;
    position: relative;
}
.about-content .about-items .about-item:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    height: 105%;
    width: 3px;
    position: absolute;
    top: -2px;
    left: -2px;
}
.about-content .about-items .about-item .icon {
    height: 50px;
}
.about-content .about-items .about-item .icon img {
    height: 100%;
}
.about-content .about-items .about-item .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-skills-items .skills-item {
    overflow: hidden;
    padding-top: 10px;
    max-width: 590px;
    width: 100%;
}
.about-skills-items .skills-item:not(:last-of-type) {
    margin-bottom: -15px;
    padding-bottom: 40px;
}
.about-skills-items .skills-item .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
    .about-skills-items .skills-item .title {
        font-size: 18px;
    }
}
.about-skills-items .skills-item .progress {
    height: 2px;
    overflow: visible;
    border-radius: 0;
}
.about-skills-items .skills-item .progress .progress-bar {
    position: relative;
    background-color: var(--rr-color-theme-primary);
    overflow: visible;
}
.about-skills-items .skills-item .progress .progress-bar span {
    font-family: var(--rr-ff-heading);
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
    display: block;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    background-repeat: no-repeat;
    padding: 10px 15px;
    position: absolute;
    top: -45px;
    right: 0;
}
@media only screen and (max-width: 767px) {
    .about-skills-items .skills-item .progress .progress-bar span {
        padding: 5px 15px;
        top: -40px;
    }
}

.about-content-2 .about-list {
    max-width: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 40px;
}
.about-content-2 .about-list li {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 500;
}
.about-content-2 .about-list li .icon {
    background-color: rgb(246, 242, 239);
    color: var(--rr-color-theme-primary);
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}
.about-content-2 .about-btn-wrap {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
}
.about-content-2 .about-btn-wrap .about-author {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.about-img-wrap-2 {
    max-width: 670px;
    width: 100%;
    height: 655px;
    position: relative;
}
.about-img-wrap-2 .bg-color {
    background-color: #f6f2ef;
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    width: 80%;
}
.about-img-wrap-2 .about-img-1 {
    position: absolute;
    top: -13px;
    left: -22px;
    z-index: 2;
}
.about-img-wrap-2 .about-img-2 {
    height: 352px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-img-wrap-2 .about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-wrap-2 .about-counter {
    position: absolute;
    top: 35px;
    right: 35px;
}
.about-img-wrap-2 .about-counter .play-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 30px;
}
.about-img-wrap-2 .about-counter .play-btn a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    font-size: 20px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple {
    height: 80px;
    width: 80px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple:before,
.about-img-wrap-2 .about-counter .play-btn a .ripple:after {
    height: 80px;
    width: 80px;
}
.about-img-wrap-2 .about-counter .title {
    color: var(--rr-color-theme-primary);
    display: flex;
    align-items: center;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1;
    margin-top: 30px;
}
.about-img-wrap-2 .about-counter .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}
.about-img-wrap-2 .about-counter p {
    font-family: var(--rr-ff-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
}

.about-section-4 {
    position: relative;
    z-index: 1;
}
.about-section-4 .about-bg-mask {
    max-width: 708px;
    width: 100%;
    height: 566px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-5.png);
    mask-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
    .about-section-4 .about-bg-mask {
        display: none;
    }
}
.about-section-4 .about-bg-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-4 .about-bg-mask:before {
    background-color: rgba(255, 255, 255, 0.9);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-wrap-4 {
    height: 640px;
    max-width: 650px;
    width: 100%;
    position: relative;
}
@media (max-width: 1170px) {
    .about-img-wrap-4 {
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px) {
    .about-img-wrap-4 {
        display: none;
    }
}
.about-img-wrap-4 .about-img-mask {
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-4.png);
    mask-repeat: no-repeat;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 482px;
    max-width: 620px;
    width: 100%;
}
.about-img-wrap-4 .about-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-wrap-4 .about-shape {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.about-img-wrap-4 .about-shape-2 {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.about-content-4 {
    position: relative;
    z-index: 5;
    margin-left: 40px;
}
@media only screen and (max-width: 992px) {
    .about-content-4 {
        margin-top: 40px;
        margin-left: 0px;
    }
}
@media (max-width: 1170px) {
    .about-content-4 p br {
        display: none;
    }
}
.about-content-4 .about-item-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.about-content-4 .about-item-wrap .about-item {
    background-color: var(--rr-color-grey-2);
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 15px 30px;
}
.about-content-4 .about-item-wrap .about-item .icon i {
    font-size: 30px;
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.about-content-4 .about-item-wrap .about-item .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.about-content-4 .about-list {
    margin-top: 30px;
}
.about-content-4 .about-list li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
}
.about-content-4 .about-list li:not(:last-of-type) {
    margin-bottom: 10px;
}
.about-content-4 .about-list li i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.about-content-4 .about-contact-wrap {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
}
.about-content-4 .about-contact-wrap .about-contact {
    display: grid;
    align-items: center;
    grid-gap: 10px;
    grid-template-columns: 35px 1fr;
}
.about-content-4 .about-contact-wrap .about-contact .icon {
    background-color: #1f140c;
    color: var(--rr-color-common-white);
    height: 35px;
    width: 35px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-content-4 .about-contact-wrap .about-contact .content span {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.about-content-4 .about-contact-wrap .about-contact .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.service-section {
    background-color: #f6f2ef;
    position: relative;
    z-index: 1;
}
.service-section .bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.service-wrap > div {
    padding: 0;
}

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

    Template Name: Psycoin - Psychology and Counseling HTML5 Template
    Author: Bytezdevs
    Description: Psycoin - Psychology and Counseling HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ TABLE OF CONTENTS ***************

	01. Template Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Template Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&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;family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap");
:root {
    --rr-ff-body: "DM Sans", sans-serif;
    --rr-ff-heading: "Lora", serif;
    --rr-ff-p: "DM Sans", sans-serif;
    --rr-fw-normal: normal;
    --rr-fw-thin: 100;
    --rr-fw-elight: 200;
    --rr-fw-light: 300;
    --rr-fw-regular: 400;
    --rr-fw-medium: 500;
    --rr-fw-sbold: 600;
    --rr-fw-bold: 700;
    --rr-fw-ebold: 800;
    --rr-fw-black: 900;
    --rr-fs-body: 16px;
    --rr-fs-p: 16px;
    --rr-fs-h1: 100px;
    --rr-fs-h2: 55px;
    --rr-fs-h3: 24px;
    --rr-fs-h4: 18px;
    --rr-fs-h5: 16px;
    --rr-fs-h6: 14px;
    --rr-color-common-white: #ffffff;
    --rr-color-common-black: #000000;
    --rr-color-heading-primary: #1a1414;
    --rr-color-text-body: #8b827d;
    --rr-color-theme-primary: #9a8478;
    --rr-color-bg-1: #11151c;
    --rr-color-bg-2: #1e130c;
    --rr-color-grey-1: #f4f4f2;
    --rr-color-grey-2: #f6f2ef;
    --rr-color-border-1: #d6d4d3;
}

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

/**
	Typography CSS
*/
body {
    background-color: var(--rr-color-common-white);
    font-family: var(--rr-ff-body);
    font-size: 16px;
    line-height: 1.625;
    font-weight: normal;
    color: var(--rr-color-text-body);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a,
a:hover {
    -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;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--rr-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    font-family: var(--rr-ff-p);
}

h1 {
    font-size: var(--rr-fs-h1);
}

h2 {
    font-size: var(--rr-fs-h2);
}

h3 {
    font-size: var(--rr-fs-h3);
}

h4 {
    font-size: var(--rr-fs-h4);
}

h5 {
    font-size: var(--rr-fs-h5);
}

h6 {
    font-size: var(--rr-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    /* font-family: var(--rr-ff-p); */
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    line-height: 30px;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--rr-color-theme-primary);
}

/* .slick-list.draggable {
  cursor: grab;
} */

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
    border: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    outline: none;
}

input[type="color"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

ul {
    display: block;
    padding: 0;
    margin: 0;
}

*::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--rr-color-common-black);
    color: var(--rr-color-common-white);
    text-shadow: none;
}

/* ::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
} */

*::-moz-placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

*::placeholder {
    color: var(--rr-color-common-black);
    font-size: var(--rr-fs-body);
    opacity: 1;
}

/**
    Common Classes CSS
*/
.w-img img {
    width: 100%;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

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

.b-radius {
    border-radius: 6px;
}

.white-bg {
    background-color: var(--rr-color-common-white);
}

.bg-grey {
    background-color: var(--rr-color-grey-1);
}

.bg-dark-1 {
    background-color: var(--rr-color-heading-primary);
}

.container {
    max-width: 1340px;
}

.bd-bottom {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.overflow-h {
    overflow: hidden;
}

.section-heading {
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
    font-family: var(--rr-ff-body);
}
@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 50px;
    }
    .media_ .row > .col-md-4:first-child::after {
        display: none;
    }
    .media_ .row > .col-md-4:nth-child(2)::after {
        display: none;
    }
}
.section-heading .sub-heading {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-theme-primary);
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    padding-right: 105px;
}
.section-heading .sub-heading:before {
    background-image: url(../img/shapes/sub-heading-shape.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    content: "";
    width: 88px;
    height: 11px;
    position: absolute;
    top: 65%;
    right: 0;
    transform: translateY(-50%);
}

@media only screen and (max-width: 992px) {
    .section-heading .sub-heading {
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .section-heading .sub-heading {
        font-size: 12px;
    }
}
.section-heading .section-title {
    background: rgb(154, 132, 120);
    background: radial-gradient(
        circle,
        rgb(20 91 123) 10%,
        rgb(30, 19, 12) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 44px;
    line-height: 1.3;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
    text-transform: initial;
    position: relative;
    font-family: var(--rr-ff-p);
}
@media (max-width: 1170px) {
    .section-heading .section-title {
        font-size: 40px;
        width: 100%;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 992px) {
    .section-heading .section-title {
        font-size: 32px;
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 24px;
    }
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
    background: inherit;
    color: var(--rr-color-common-white);
    -webkit-text-fill-color: var(--rr-color-common-white);
}

.heading-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 25px;
    margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
    .heading-space {
        margin-bottom: 40px;
    }
}

.t-up {
    text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
    color: var(--rr-color-common-white);
}

.reveal {
    visibility: hidden;
    position: relative;
    width: 80%;
    height: 80%;
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.img-reveal {
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 1;
}
.img-reveal .img-overlay {
    background-color: var(--rr-color-theme-primary);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.img-reveal img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.anim-text {
    overflow: hidden;
}

.running-text-wrap {
    padding-bottom: 51px;
}
@media (max-width: 1170px) {
    .running-text-wrap {
        padding-bottom: 0;
    }
}

.running-text {
    overflow: hidden;
}
.running-text ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 70px;
}
.running-text ul li {
    background: #9a8478;
    background: -webkit-radial-gradient(circle, #9a8478 0%, #1e130c 100%);
    background: radial-gradient(circle, #9a8478 0%, #1e130c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--rr-ff-heading);
    display: inline-block;
    white-space: nowrap;
    font-size: 120px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1;
    position: relative;
    padding-bottom: 20px;
}
.running-text ul li:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 50px;
    font-weight: 700;
    content: "\f078";
    color: var(--rr-color-heading-primary);
    position: absolute;
    top: 46%;
    right: -50px;
    transform: translateY(-50%);
}

/* Site Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #02050a;
    z-index: 999;
}

.loading {
    left: 50%;
    top: 50%;
    font-size: 100px;
    font-family: var(--rr-ff-heading);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .loading {
        font-size: 50px;
    }
}
.loading:before {
    color: #333;
    content: attr(data-loading-text);
}
.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: var(--rr-color-theme-primary);
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loading 6s infinite;
}
@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/*  Custom Cursor */
@media (min-width: 992px) {
    .mt-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 10px;
        top: 10px;
        user-select: none;
        pointer-events: none;
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .mt-cursor:before {
        background: var(--rr-color-theme-primary);
        opacity: 1;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }
    .mt-cursor.cursor-grow:before {
        opacity: 0.7;
        transform: scale(1.5);
        transition: all 0.3s ease;
    }
    .mt-cursor.hide {
        opacity: 0;
        transition: opacity 0.3s ease;
        transition-delay: 0.4s;
    }
    .mt-cursor.hide .inner {
        transform: scale(0.1);
        transition: transform 0.3s ease;
    }
}
.sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 170px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}
/*-- Margin Top --*/
.mt-5 {
    margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Left --*/
.ml-5 {
    margin-left: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Right --*/
.mr-5 {
    margin-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Top --*/
.pt-5 {
    padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
    padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}

.pl-105 {
    padding-left: 105px;
}

.pl-110 {
    padding-left: 110px;
}

.pl-115 {
    padding-left: 115px;
}

.pl-120 {
    padding-left: 120px;
}

.pl-125 {
    padding-left: 125px;
}

.pl-130 {
    padding-left: 130px;
}

.pl-135 {
    padding-left: 135px;
}

.pl-140 {
    padding-left: 140px;
}

.pl-145 {
    padding-left: 145px;
}

.pl-150 {
    padding-left: 150px;
}

.pl-155 {
    padding-left: 155px;
}

.pl-160 {
    padding-left: 160px;
}

.pl-165 {
    padding-left: 165px;
}

.pl-170 {
    padding-left: 170px;
}

.pl-175 {
    padding-left: 175px;
}

.pl-180 {
    padding-left: 180px;
}

.pl-185 {
    padding-left: 185px;
}

.pl-190 {
    padding-left: 190px;
}

.pl-195 {
    padding-left: 195px;
}

.pl-200 {
    padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pr-105 {
    padding-right: 105px;
}

.pr-110 {
    padding-right: 110px;
}

.pr-115 {
    padding-right: 115px;
}

.pr-120 {
    padding-right: 120px;
}

.pr-125 {
    padding-right: 125px;
}

.pr-130 {
    padding-right: 130px;
}

.pr-135 {
    padding-right: 135px;
}

.pr-140 {
    padding-right: 140px;
}

.pr-145 {
    padding-right: 145px;
}

.pr-150 {
    padding-right: 150px;
}

.pr-155 {
    padding-right: 155px;
}

.pr-160 {
    padding-right: 160px;
}

.pr-165 {
    padding-right: 165px;
}

.pr-170 {
    padding-right: 170px;
}

.pr-175 {
    padding-right: 175px;
}

.pr-180 {
    padding-right: 180px;
}

.pr-185 {
    padding-right: 185px;
}

.pr-190 {
    padding-right: 190px;
}

.pr-195 {
    padding-right: 195px;
}

.pr-200 {
    padding-right: 200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 992px) {
    .md-mt-40 {
        margin-top: 40px;
    }
}

.pt-180 {
    padding-top: 180px;
}
@media only screen and (max-width: 992px) {
    .pt-180 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-180 {
        padding-top: 50px;
    }
}

.pt-140 {
    padding-top: 140px;
}
@media only screen and (max-width: 992px) {
    .pt-140 {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-140 {
        padding-top: 60px;
    }
}

.pt-130 {
    padding-top: 130px;
}
@media only screen and (max-width: 992px) {
    .pt-130 {
        padding-top: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-130 {
        padding-top: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}
@media only screen and (max-width: 992px) {
    .pt-120 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pt-90 {
    padding-top: 90px;
}
@media only screen and (max-width: 992px) {
    .pt-90 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-90 {
        padding-top: 60px;
    }
}

.pt-80 {
    padding-top: 80px;
}
@media only screen and (max-width: 992px) {
    .pt-80 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-80 {
        padding-top: 60px;
    }
}

.pt-70 {
    padding-top: 70px;
}
@media only screen and (max-width: 992px) {
    .pt-70 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pt-70 {
        padding-top: 60px;
    }
}

.pb-180 {
    padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
    .pb-180 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-180 {
        padding-bottom: 60px;
    }
}

.pb-140 {
    padding-bottom: 140px;
}
@media only screen and (max-width: 992px) {
    .pb-140 {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-140 {
        padding-bottom: 60px;
    }
}

.pb-130 {
    padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
    .pb-130 {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-130 {
        padding-bottom: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
    .pb-120 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.pb-90 {
    padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
    .pb-90 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-90 {
        padding-bottom: 60px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
    .pb-80 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-80 {
        padding-bottom: 60px;
    }
}

.pb-70 {
    padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
    .pb-70 {
        padding-bottom: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-30 {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-40 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 992px) {
    .md-pb-50 {
        padding-bottom: 50px;
    }
}

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

.ripple {
    z-index: -1;
}

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

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

@-webkit-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);
    }
}
@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);
    }
}
/* Scroll To Top */
#scroll-percentage {
    position: absolute;
}

#scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--rr-color-common-white);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}
@media only screen and (max-width: 992px) {
    #scroll-percentage {
        right: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #scroll-percentage {
        bottom: 20px;
        right: 20px;
    }
}

#scroll-percentage.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media only screen and (max-width: 992px) {
    #scroll-percentage.active {
        bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #scroll-percentage.active {
        bottom: 20px;
    }
}

#scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
}

#scroll-percentage-value i {
    font-size: 20px;
}

@-webkit-keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes scrollToTop {
    0% {
        -webkit-transform: translate3d(0, 80%, 0);
        transform: translate3d(0, 80%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes wobble-vertical {
    16.65% {
        transform: translateY(8px);
    }
    33.3% {
        transform: translateY(-6px);
    }
    49.95% {
        transform: translateY(4px);
    }
    66.6% {
        transform: translateY(-2px);
    }
    83.25% {
        transform: translateY(1px);
    }
    100% {
        transform: translateY(0);
    }
}
.light-img {
    display: none;
}

.switcher-button {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 50;
    transform: translateY(-50%) rotate(90deg);
}

.switcher-button-inner-left:before,
.switcher-button-inner-left:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    outline: none;
}

.switcher-button .switcher-button-inner,
.switcher-button .switcher-button-inner-left {
    position: relative;
    cursor: pointer;
}

.switcher-button .switcher-button-inner-left:before {
    content: "\f186";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    display: block;
    color: #fff;
    position: absolute;
    z-index: 1;
    margin: 0;
    right: 26px;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.switcher-button .switcher-button-inner-left:after {
    content: "";
    display: inline-block;
    color: #fff;
    background: var(--rr-color-bg-1);
    border: 1px solid rgba(235, 235, 235, 0.2);
    width: 3.5em;
    height: 1.8em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    vertical-align: middle;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
}

.switcher-button .switcher-button-inner-left {
    color: rgba(250, 250, 250, 0.51);
}

[data-theme="light"] .switcher-button .switcher-button-inner-left:before {
    right: 10px;
    content: "\f185";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    color: var(--rr-color-heading-primary);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
[data-theme="light"] .switcher-button .switcher-button-inner-left:after {
    background: #fff;
    border: 1px solid rgba(235, 235, 235, 0.2);
}
[data-theme="light"] .switcher-button .switcher-button-inner-left {
    color: rgba(149, 149, 149, 0.51);
}
[data-theme="light"]
    .switcher-button
    .switcher-button-inner-left
    + .switcher-button-inner {
    color: rgba(250, 250, 250, 0.51);
}

/** Buttons CSS */
.rr-primary-btn {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    background: #003b5c;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 35px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.rr-primary-btn:before {
    background: #ffb81c;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.rr-primary-btn:hover {
    color: var(--rr-color-common-white);
}
.rr-primary-btn:hover:before {
    visibility: visible;
    opacity: 1;
}
.rr-primary-btn:focus {
    color: var(--rr-color-common-white);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
    width: 100%;
    position: fixed;
    /* top: 35px; */
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .header {
        position: relative;
        top: 0;
        height: auto !important;
    }
}
.header .header-container {
    max-width: 1605px;
    width: 100%;
    margin: 0 auto;
}

.header .top-bar {
    border-bottom: 1px dashed rgb(255 255 255);
}
@media only screen and (max-width: 767px) {
    .header .top-bar {
        display: none;
    }
}
.header .top-bar .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 15px 50px;
    background: #0e557c;
}
@media (max-width: 1399px) {
    .header .top-bar .top-bar-inner {
        column-gap: 10px;
    }
}
@media only screen and (max-width: 992px) {
    .header .top-bar .top-bar-inner {
        justify-content: center;
    }
}
.header .top-bar .top-bar-inner .top-bar-left {
    display: flex;
    align-items: center;
    background: aliceblue;
    padding: 3px 10px;
    border-radius: 53px;
    column-gap: 5px;
    /* border-bottom: 1px dashed rgb(241 194 161); */
}
@media only screen and (max-width: 992px) {
    .header .top-bar .top-bar-inner .top-bar-left {
        display: none;
    }
}
.header .top-bar .top-bar-inner .top-bar-left span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li {
    display: inline-flex;
    position: relative;
}
.header
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 15px;
}
.header
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type):before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    height: 4px;
    width: 4px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}
.header .top-bar .top-bar-inner .top-bar-left .top-social li a {
    background-image: linear-gradient(0deg, #3582da 0%, #3a74ca 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 35px;
}
@media (max-width: 1399px) {
    .header .top-bar .top-bar-inner .top-mid-content {
        display: none;
    }
}
.header .top-bar .top-bar-inner .top-mid-content p {
    color: #827e7d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.header .top-bar .top-bar-inner .top-mid-content p span {
    color: #1e130c;
    font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li {
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 500;
}
.header .top-bar .top-bar-inner .top-bar-right .top-contact-list li span {
    color: #fff;
    font-size: 20px;
    padding-right: 13px;
}
.header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
    background: #fff;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner {
        padding: 10px 20px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner {
        padding: 15px;
    }
}
.header .primary-header-inner .header-left {
    display: flex;
    align-items: center;
}
.header .primary-header-inner .header-left .header-logo {
    margin-right: 40px;
    padding-right: 40px;
}
@media (max-width: 1600px) {
    .header .primary-header-inner .header-left .header-logo {
        margin-right: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-left .header-logo {
        margin-right: 0px;
        padding-right: 0px;
        border: none;
    }
}
.header .primary-header-inner .header-left .header-logo img {
    max-width: 300px;
}
.header .primary-header-inner .header-left .header-logo .logo-light {
    display: none;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 150px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-left .header-logo img {
        max-width: 330px;
    }
}
.header .primary-header-inner .header-left .search-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
    cursor: pointer;
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-left .search-icon {
        display: none;
    }
}
.header .primary-header-inner .header-left .search-icon i {
    font-size: 24px;
    color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-left .search-icon span {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
}
.header .primary-header-inner .header-menu-wrap {
    display: flex !important;
    align-items: center;

    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 1600px) {
    .header .primary-header-inner .header-menu-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.header .primary-header-inner .header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .header-menu-wrap ul {
        display: none;
    }
}
.header .primary-header-inner .header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
@media (max-width: 1700px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 15px;
    }
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li {
        margin: 0 10px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
    margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
    margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
    font-family: var(--rr-ff-heading);
    color: #003b5c;
    display: block;
    font-size: 18px;
    padding: 30.5px 0;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease-in-out;
    font-family: var(--bs-body-font-family);
    font-family: var(--rr-ff-p);
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li a {
        font-size: 14px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li a:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 30px;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li a:hover:before {
    width: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li ul {
    background-color: var(--rr-color-common-white);
    display: block;
    width: 220px;
    padding: 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
        0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1),
        0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: 0;
    top: 90px;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.6s ease;

    /*  */
    position: absolute;
    top: 100%; /* Position it below the parent menu item */
    left: 50%;
    transform: translateX(-50%); /* Center it under the parent */
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* display: none; */
    width: 600px; /* Adjust width as needed */
    padding: 15px;
    z-index: 1000;
    border-radius: 5px;
}
.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
    visibility: visible;
    transition: all 0.6s ease;
    opacity: 1;
    /* transform: none; */
}
.header .primary-header-inner .header-menu-wrap ul li li {
    display: flex;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
    margin: 0;
    border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
    background-color: #003b5c;
}
.header .primary-header-inner .header-menu-wrap ul.mega-menu li a:hover {
    color: #fff;
}
/* .header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: #fff;

} */
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: #fff;
}
.header .primary-header-inner .header-menu-wrap ul.treat_items li:hover a {
    color: #fff;
}
.header .primary-header-inner .header-menu-wrap ul li li a {
    /* background-color: var(--rr-color-common-white); */
    display: block;
    height: auto;
    line-height: inherit;
    color: #080808;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    position: relative;
    font-family: var(--rr-ff-p);
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-menu-wrap ul li li a {
        font-size: 13px;
    }
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
    display: none;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover {
    color: var(--rr-color-heading-primary);
    letter-spacing: 0.4px;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
    top: 0;
    left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
    color: var(--rr-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
    color: var(--rr-color-heading-primary);
}
.header .primary-header-inner .header-right-wrap {
    display: flex;
    align-items: center;
    column-gap: 120px;
    flex-wrap: wrap;
    row-gap: 20px;
}
@media (max-width: 1399px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 50px;
    }
}
@media (max-width: 1170px) {
    .header .primary-header-inner .header-right-wrap {
        column-gap: 20px;
    }
}
.header .primary-header-inner .header-right-wrap .header-right {
    display: flex;
    align-items: center;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item {
    display: flex;
    align-items: center;
    column-gap: 17px;
    margin-right: 30px;
}
@media (max-width: 1399px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-icon-item {
        display: none;
    }
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item
    .icon-item
    a {
    color: var(--rr-color-theme-primary);
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-theme-primary);
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-icon-item
    .icon-item
    a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-logo
        img {
        width: 90px;
    }
}
@media only screen and (max-width: 767px) {
    .header .primary-header-inner .header-right-wrap .header-right .header-btn {
        display: none;
    }
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-icon {
    border: 2px solid var(--rr-color-heading-primary);
    height: 58px;
    width: 58px;
    margin-left: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger {
    -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;
    transition: all 0.3s ease-in-out;
    text-align: left;
    height: 58px;
    max-width: 58px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span {
    background-color: var(--rr-color-heading-primary);
    display: block;
    width: 18px;
    height: 3px;
    text-align: left;
    -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;
    transition: all 0.3s ease-in-out;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span:not(:last-of-type) {
    margin-bottom: 4px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger
    span:nth-child(2) {
    width: 10px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger:hover
    span:nth-child(2) {
    width: 15px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .sidebar-icon
    .sidebar-trigger:hover
    span:nth-child(3) {
    width: 12px;
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-right-item {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 992px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-right-item {
        line-height: 1;
        margin-left: 20px;
    }
}
.header
    .primary-header-inner
    .header-right-wrap
    .header-right
    .header-right-item
    .mobile-side-menu-toggle {
    color: var(--rr-color-heading-primary);
    font-size: 30px;
    opacity: 0.9;
}
@media (min-width: 993px) {
    .header
        .primary-header-inner
        .header-right-wrap
        .header-right
        .header-right-item
        .mobile-side-menu-toggle {
        display: none;
    }
}
@media only screen and (max-width: 992px) {
    .header .primary-header-inner .mean-push {
        display: none;
    }
}
.header.fixed {
    top: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.header.fixed .primary-header {
    /* border-bottom: 1px solid rgba(30, 19, 12, 0.302); */
}

.header-2 {
    top: 0;
}
.header-2:before {
    background-image: url(../img/shapes/header-shape-1.png);
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 84%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}
.header-2 .primary-header {
    background-color: transparent;
}
.header-2 .header-container {
    max-width: 1320px;
}
.header-2 .top-bar {
    background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 992px) {
    .header-2 .top-bar {
        display: none;
    }
}
.header-2 .top-bar .top-bar-inner {
    padding: 15px 0;
}
.header-2 .top-bar .top-bar-inner .top-mid-content p {
    color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-mid-content p span {
    color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left span {
    color: var(--rr-color-common-white);
}
.header-2
    .top-bar
    .top-bar-inner
    .top-bar-left
    .top-social
    li:not(:last-of-type):before {
    background-color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-left .top-social li a {
    background-image: inherit;
    color: var(--rr-color-heading-primary);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li {
    display: inline-flex;
}
.header-2
    .top-bar
    .top-bar-inner
    .top-bar-right
    .top-right-list
    li:not(:last-of-type) {
    margin-right: 15px;
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a {
    color: var(--rr-color-common-white);
}
.header-2 .top-bar .top-bar-inner .top-bar-right .top-right-list li a:hover {
    color: var(--rr-color-heading-primary);
}
.header-2 .header-mid-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 25px 0;
}
@media only screen and (max-width: 992px) {
    .header-2 .header-mid-inner {
        display: none;
    }
}
.header-2 .header-mid-inner .header-mid-contact {
    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
}
.header-2 .header-mid-inner .header-mid-contact .icon {
    background-color: var(--rr-color-common-white);
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-2 .header-mid-inner .header-mid-contact .content span {
    color: var(--rr-color-theme-primary);
    display: block;
    font-weight: 500;
}
.header-2 .header-mid-inner .header-mid-contact .content a,
.header-2 .header-mid-inner .header-mid-contact .content p {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-size: 22px;
    font-weight: 500;
}
.header-2 .primary-header-inner {
    background-color: var(--rr-color-common-white);
    border: 1px solid #9e9c9b;
}
@media only screen and (max-width: 992px) {
    .header-2 .primary-header-inner {
        border: none;
    }
}
.header-2 .primary-header-inner .header-menu-wrap {
    padding-left: 0;
    border-left: none;
}
.header-2.fixed {
    top: -180px;
    transition: all 0.3s ease-in-out;
}
.header-2.fixed:before {
    visibility: hidden;
    opacity: 0;
}
.header-2.fixed .primary-header {
    border: none;
}

.header-4 {
    top: 0;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu .header-right {
        display: none !important;
    }
}
.side-menu-icon {
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 100;
    display: block;
}
@media only screen and (max-width: 992px) {
    .side-menu-icon {
        display: none;
    }
}

.side-menu-wrapper {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 850px;
    -webkit-transform: translateX(850px);
    -ms-transform: translateX(850px);
    transform: translateX(850px);
    height: 100%;
    display: block;
    background-color: var(--rr-color-theme-bg-dark-deep);
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
    background-color: var(--rr-color-theme-primary);
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
}
.side-menu-wrapper.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
@media only screen and (max-width: 992px) {
    .side-menu-wrapper {
        display: none;
    }
}

.side-menu-content .side-menu-header {
    font-family: var(--rr-ff-body);
    font-size: 30px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
    max-width: 150px;
}
.side-menu-content
    .side-menu-item
    .side-menu-thumb-box
    .side-menu-info
    .side-menu-title {
    font-family: var(--rr-ff-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--rr-color-theme-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
    max-width: 400px;
    width: 100%;
}
.side-menu-content
    .side-menu-item
    .side-menu-thumb-box
    .side-menu-info
    p:last-child {
    margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
    font-size: 45px;
    color: var(--rr-color-theme-primary);
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
    border: 1px solid var(--rr-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
    transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
    margin-bottom: 0;
}

.side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}
.side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
    .side-menu-overlay {
        display: none;
    }
}

.primary-header {
    width: 100%;
}
.primary-header.fixed {
    background-color: var(--rr-color-bg-1);
    position: fixed;
    left: 0;
    top: 0;
    animation-name: menuSticky;
    -webkit-animation-name: menuSticky;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
    z-index: 99;
}
.primary-header.fixed .primary-header-inner {
    padding: 20px 60px;
}
@media (max-width: 1170px) {
    .primary-header.fixed .primary-header-inner {
        padding: 20px;
    }
}

@-webkit-keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
@keyframes menuSticky {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
    display: none;
}

@media only screen and (max-width: 992px) {
    .mobile-side-menu {
        background-color: var(--rr-color-common-white);
        position: fixed;
        overflow-y: auto;
        top: 0;
        right: 0;
        width: 400px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        height: 100%;
        display: block;
        z-index: 100;
        padding: 40px 40px 40px 40px;
        -webkit-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        backface-visibility: hidden;
    }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu {
        padding: 40px 20px;
        width: 100%;
        max-width: 320px;
    }
}
@media only screen and (max-width: 992px) {
    .mobile-side-menu.is-open {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .mobile-side-menu .side-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-head a img {
        max-width: 225px;
    }
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        position: fixed;
        top: 48px;
        right: 40px;
        color: var(--rr-color-heading-primary);
        font-size: 17px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--rr-color-border-1);
    }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close {
        right: 16px;
    }
}
@media only screen and (max-width: 992px) {
    .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
        background-color: var(--rr-color-theme-primary);
        color: var(--rr-color-common-white);
    }
    .mobile-side-menu .side-menu-wrap {
        overflow: hidden;
        margin-bottom: 50px;
    }
    .mobile-side-menu p {
        color: var(--rr-color-common-white);
        margin-bottom: 50px;
    }
    .mobile-side-menu .list-header {
        color: var(--rr-color-common-white);
        font-family: var(--rr-ff-body);
        font-weight: 400;
        margin-bottom: 30px;
    }
    .mobile-side-menu .side-menu-list {
        list-style: none;
    }
    .mobile-side-menu .side-menu-list li {
        font-family: var(--rr-ff-body);
        font-size: 16px;
        font-weight: 500;
        color: var(--rr-color-heading-primary);
    }
    .mobile-side-menu .side-menu-list li span,
    .mobile-side-menu .side-menu-list li a {
        color: var(--rr-color-heading-primary);
        margin-left: 10px;
        font-size: 16px;
    }
    .mobile-side-menu .side-menu-list li i {
        margin-right: 10px;
    }
    .mobile-side-menu-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        height: 100%;
        width: 0%;
        position: fixed;
        top: 0;
        z-index: 9;
        right: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        z-index: 10;
        display: block;
    }
    .mobile-side-menu-overlay.is-open {
        width: 100%;
        opacity: 0.5;
        visibility: visible;
        cursor: url(../img/cancel.png), auto;
    }
}
.mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}
.mean-bar .meanmenu-reveal {
    display: none !important;
}
.mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--rr-color-heading-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border-top: none;
    padding: 0;
    float: none;
    font-family: var(--rr-ff-p);
}
@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li a {
        font-size: 14px;
    }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: #003b5c;
    color: var(--rr-color-common-white);
    position: absolute;
    padding: 0;
    top: 3px;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before,
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 12px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
    .mean-bar .mean-nav.mean-nav > ul li ul li a {
        font-size: 13px;
    }
}

#popup-search-box {
    background-color: var(--rr-color-common-white);
    position: fixed;
    width: 100%;
    height: 20%;
    top: -100%;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
    width: 100%;
    padding: 20px 15px;
    padding-right: 80px;
    background: transparent;
    border: none;
    color: #ddd;
    border: 1px solid var(--rr-color-border-1);
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
    color: #666;
    font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
    outline: none;
}
#popup-search-box .box-inner-wrap:hover {
    cursor: url(../img/cross.html), auto;
}
#popup-search-box .box-inner-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--rr-color-heading-primary);
    border: 1px solid var(--rr-color-border-1);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    -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;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    #popup-search-box .box-inner-wrap .search-close {
        height: 35px;
        width: 35px;
        top: 10px;
        right: 10px;
    }
}
#popup-search-box .box-inner-wrap .search-close:hover {
    background-color: var(--rr-color-theme-primary);
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
#popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.popup-tags {
    position: relative;
    margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-section {
    position: relative;
    z-index: 1;
}
.blog-section .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-left-content {
    position: relative;
    z-index: 5;
}
.blog-left-content p {
    max-width: 520px;
    width: 100%;
}

.blog-carousel-wrap {
    max-width: 655px;
    width: 100%;
    height: 540px;
    overflow: hidden;
    position: relative;
}
@media only screen and (max-width: 992px) {
    .blog-carousel-wrap {
        margin: 0 auto;
        margin-top: 50px;
    }
}
.blog-carousel-wrap .blog-carousel {
    height: 540px;
}
@media only screen and (max-width: 767px) {
    .blog-carousel-wrap .swiper-pagination {
        display: none;
    }
}
.blog-carousel-wrap .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    height: 24px;
    width: 24px;
    border-radius: 0;
    border: 2px solid #ddd;
    opacity: 1;
    margin: 20px 0;
}
.blog-carousel-wrap
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid var(--rr-color-theme-primary);
}

.post-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 570px;
    width: 100%;
    height: 256px;
}
.post-card .shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.post-card .post-thumb {
    height: 256px;
    position: relative;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .post-card .post-thumb {
        height: 300px;
    }
}
.post-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}
.post-card .post-thumb .overlay {
    background-image: linear-gradient(
        363deg,
        rgb(0, 0, 0) 0%,
        rgb(0, 0, 0) 0%,
        rgb(30, 19, 12) 0%,
        rgba(30, 19, 12, 0) 65%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.post-card .post-meta {
    background-color: var(--rr-color-common-white);
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0;
}
.post-card .post-meta li {
    font-family: var(--rr-ff-p);
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 13px 20px;
    text-transform: capitalize;
}
.post-card .post-content {
    position: absolute;
    left: 90px;
    bottom: 20px;
    right: 40px;
    z-index: 5;
}
@media only screen and (max-width: 767px) {
    .post-card .post-content {
        left: 80px;
        right: 20px;
    }
}
.post-card .post-content .title {
    color: var(--rr-color-common-white);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
    .post-card .post-content .title {
        font-size: 22px;
    }
    .post-card .post-content .title br {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .post-card .post-content .title {
        font-size: 18px;
    }
}
.post-card .post-content .title a {
    background: linear-gradient(
        var(--rr-color-common-white) 0%,
        var(--rr-color-common-white) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card .post-content .title a:hover {
    color: var(--rr-color-common-white);
    background-size: 100% 2px;
}
.post-card .post-content span {
    font-family: var(--rr-ff-p);
    color: var(--rr-color-common-white);
    font-weight: 500;
    display: inline-block;
    margin-left: 25px;
    padding-left: 45px;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.post-card .post-content span:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.post-card-2 {
    position: relative;
}
.post-card-2 .date {
    background-color: #f6f2ef;
    color: var(--rr-color-theme-primary);
    font-weight: 500;
    padding: 8px 25px;
    border-radius: 0 100px 100px 0;
    display: inline-block;
    width: 155px;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
    .post-card-2 .date {
        display: none;
    }
}
@media (max-width: 1399px) {
    .post-card-2 .post-thumb {
        height: 100%;
    }
    .post-card-2 .post-thumb img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
.post-card-2 .post-content {
    border: 1px solid #bbb8b6;
    padding: 35px 50px;
}
@media only screen and (max-width: 767px) {
    .post-card-2 .post-content {
        padding: 30px 20px;
    }
}
.post-card-2 .post-content .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
.post-card-2 .post-content .title a {
    background: linear-gradient(
        var(--rr-color-theme-primary) 0%,
        var(--rr-color-theme-primary) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
    color: var(--rr-color-theme-primary);
    background-size: 100% 2px;
}
.post-card-2 .post-content .category {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-left: 40px;
}
.post-card-2 .post-content .category:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.post-card-2 .post-content p {
    margin-bottom: 30px;
}
.post-card-2 .post-content .post-icon {
    display: flex;
    align-items: center;
}
.post-card-2 .post-content .post-icon .line {
    background-color: var(--rr-color-heading-primary);
    width: 260px;
    height: 2px;
    margin-top: 10px;
}
.post-card-2.card-2 {
    margin-top: 24px;
}
.post-card-2.card-2 .date {
    border-radius: 100px 0 0 100px;
}
.post-card-2.card-2 .post-content {
    text-align: right;
}
.post-card-2.card-2 .post-content .post-icon {
    justify-content: end;
}
.post-card-2.card-2 .post-content .post-icon img {
    transform: rotate(360deg);
}

.post-meta {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}
.post-meta li {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.post-meta li i {
    font-size: 14px;
}
.post-meta li:not(:last-of-type) {
    margin-right: 20px;
}
.post-meta li a:hover {
    color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
    .post-meta li {
        font-size: 12px;
    }
}

.pagination-wrap {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 10px;
}
.pagination-wrap li a {
    background-color: transparent;
    color: var(--rr-color-heading-primary);
    font-weight: 700;
    height: 60px;
    width: 60px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--rr-color-border-1);
    border-radius: 10px;
}
.pagination-wrap li a:hover {
    background-color: var(--rr-color-theme-primary);
}
.pagination-wrap li .active {
    background-color: var(--rr-color-theme-primary);
}

.blog-section-4 {
    padding-top: 220px;
}
@media (max-width: 1170px) {
    .blog-section-4 {
        padding-top: 140px;
    }
}
@media only screen and (max-width: 992px) {
    .blog-section-4 {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .blog-section-4 {
        padding-top: 50px;
    }
}

.post-thumb-carousel .swiper-arrow .swiper-nav {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rr-color-heading-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 2;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-thumb-carousel .swiper-arrow .swiper-nav:hover {
    background-color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
    .post-thumb-carousel .swiper-arrow .swiper-nav {
        left: 10px;
    }
}
.post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
    left: auto;
    right: 40px;
}
@media only screen and (max-width: 767px) {
    .post-thumb-carousel .swiper-arrow .swiper-nav.swiper-next {
        right: 10px;
    }
}

.post-card-3 {
    padding: 40px 0 0 30px;
    border: 1px solid #bbb8b6;
}
@media only screen and (max-width: 767px) {
    .post-card-3 .post-content {
        padding-right: 20px;
    }
}
.post-card-3 .post-content .post-date-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.post-card-3 .post-content .post-date-wrap .date {
    color: var(--rr-color-common-white);
    position: relative;
    z-index: 1;
    padding: 5px 20px;
    border-radius: 0 100px 100px 0;
    overflow: hidden;
    margin-left: -30px;
}
@media only screen and (max-width: 767px) {
    .post-card-3 .post-content .post-date-wrap .date {
        font-size: 13px;
    }
}
.post-card-3 .post-content .post-date-wrap .date:before {
    background-image: linear-gradient(
        180deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.post-card-3 .post-content .post-date-wrap .category {
    margin-left: 20px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--rr-color-theme-primary);
    font-weight: 500;
}
.post-card-3 .post-content .post-date-wrap .category:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.post-card-3 .post-content .title {
    margin-bottom: 30px;
}
.post-card-3 .post-content .title a {
    background: linear-gradient(
        var(--rr-color-theme-primary) 0%,
        var(--rr-color-theme-primary) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.post-card-3 .post-content .title a:hover {
    color: var(--rr-color-theme-primary);
    background-size: 100% 2px;
}
.post-card-3 .post-thumb {
    height: 400px;
    overflow: hidden;
}
.post-card-3 .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card-3 .post-thumb .img-overlay {
    background-color: var(--rr-color-common-white);
}

.blog-inner-card:not(:last-of-type) {
    margin-bottom: 50px;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.hero-section {
    position: relative;
}
.hero-section .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
@media (max-width: 1600px) {
    .hero-section .shape {
        right: -10%;
    }
}
@media (max-width: 1399px) {
    .hero-section .shape {
        right: -20%;
    }
}
@media only screen and (max-width: 992px) {
    .hero-section .shape {
        display: none;
    }
}
.hero-section .shape-2 {
    position: absolute;
    top: 0;
    right: -68px;
}
@media (max-width: 1170px) {
    .hero-section .shape-2 {
        display: none;
    }
}
.hero-section .hero-imgs .hero-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.hero-section .hero-imgs .hero-img-1 img {
    height: 100%;
    object-fit: cover;
    object-position: center left;
}
.hero-section .hero-imgs .hero-img-2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    height: 963px;
}
@media (max-width: 1600px) {
    .hero-section .hero-imgs .hero-img-2 {
        right: -10%;
    }
}
@media (max-width: 1399px) {
    .hero-section .hero-imgs .hero-img-2 {
        right: -20%;
    }
}
@media only screen and (max-width: 992px) {
    .hero-section .hero-imgs .hero-img-2 {
        display: none;
    }
}
.hero-section .hero-imgs .hero-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    padding: 330px 0 294px 100px;
    position: relative;
    transform: translateY(-20px);
}
@media (max-width: 1170px) {
    .hero-content {
        padding-left: 70px;
    }
}
@media only screen and (max-width: 992px) {
    .hero-content {
        padding: 100px 0;
        padding-left: 70px;
        transform: translateY(0);
    }
}
@media only screen and (max-width: 767px) {
    .hero-content {
        padding-left: 40px;
    }
}
.hero-content .hero-text {
    color: #1e130c;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    writing-mode: vertical-lr;
    padding-left: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 767px) {
    .hero-content .hero-text {
        font-size: 12px;
        left: -10px;
    }
}
.hero-content .hero-text:before {
    background-image: url(../img/shapes/hero-text-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    width: 12px;
    height: 227px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(50%) rotate(180deg);
}
.hero-content .hero-title {
    background: rgb(154, 132, 120);
    background: radial-gradient(
        circle,
        rgb(154, 132, 120) 10%,
        rgb(30, 19, 12) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 40px;
}
@media (max-width: 1399px) {
    .hero-content .hero-title {
        font-size: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-content .hero-title {
        font-size: 36px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 992px) {
    .hero-section-2 {
        padding-top: 0;
    }
}

.hero-img-wrap {
    margin-top: 107px;
    max-width: 1760px;
    width: 100%;
    height: 800px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .hero-img-wrap {
        margin-top: 0;
    }
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap {
        height: 450px;
    }
}
.hero-img-wrap .hero-img {
    width: 100%;
    height: 100%;
}
.hero-img-wrap .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-img-wrap .hero-content-2 {
    background-image: -webkit-linear-gradient(
        180deg,
        rgb(30, 19, 12) 0%,
        rgb(154, 132, 120) 100%
    );
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 80px 150px 90px 300px;
    clip-path: polygon(37% 0, 90% 0, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 {
        padding: 50px 50px;
        padding-left: 100px;
    }
}
.hero-img-wrap .hero-content-2 .title {
    color: var(--rr-color-common-white);
    font-size: 100px;
    font-weight: 500;
    line-height: 1.2;
    text-align: right;
}
@media only screen and (max-width: 992px) {
    .hero-img-wrap .hero-content-2 .title {
        font-size: 55px;
    }
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 .title {
        font-size: 40px;
    }
}
.hero-img-wrap .hero-content-2 .hero-btn {
    margin-top: 40px;
    text-align: right;
}
.hero-img-wrap .hero-content-2 .hero-text {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 240px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 140px;
}
@media only screen and (max-width: 767px) {
    .hero-img-wrap .hero-content-2 .hero-text {
        display: none;
    }
}
.hero-img-wrap .hero-content-2 .hero-text h5 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 500;
}
.hero-img-wrap .hero-content-2 .hero-text h5 span {
    color: var(--rr-color-theme-primary);
    font-size: 40px;
    font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Therapy CSS
----------------------------------------*/
.therapy-section {
    position: relative;
    z-index: 5;
    overflow-x: clip;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.theory-wrap {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 1325px;
    width: 100%;
    margin: 0 auto;
    margin-top: -200px;
    padding-bottom: 0;
}
@media only screen and (max-width: 992px) {
    .theory-wrap {
        margin-top: 0;
        padding: 40px 0;
        padding-bottom: 0;
    }
}
.theory-wrap:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 3000px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.therapy-item {
    background-color: rgb(246, 242, 239);
    padding: 30px;
    position: relative;
    z-index: 1;
}
.therapy-item:before {
    background-image: linear-gradient(
        0deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 82%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .icon {
    background-color: var(--rr-color-common-white);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    height: 140px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.therapy-item .icon:before {
    background-color: var(--rr-color-common-white);
    height: 30px;
    width: 30px;
    content: "";
    position: absolute;
    top: 25px;
    right: -10px;
    transform: rotate(-45deg);
    z-index: -1;
}
.therapy-item .therapy-content {
    padding-left: 100px;
}
.therapy-item .therapy-content .title {
    font-size: 24px;
    font-weight: 500;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content p {
    line-height: 1.5;
    -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;
    transition: all 0.3s ease-in-out;
}
.therapy-item .therapy-content .therapy-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.therapy-item .therapy-content .therapy-number a {
    color: #7b6f67;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5d1ce;
    border-radius: 50%;
}
.therapy-item .therapy-content .therapy-number a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.therapy-item .therapy-content .therapy-number .number {
    font-family: var(--rr-ff-heading);
    color: #e3dfdc;
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.therapy-item.active:before,
.therapy-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.therapy-item.active .therapy-content .title,
.therapy-item:hover .therapy-content .title {
    color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-content p,
.therapy-item:hover .therapy-content p {
    color: #bbadad;
}
.therapy-item.active .therapy-number a,
.therapy-item:hover .therapy-number a {
    border: 1px solid rgba(213, 209, 206, 0.5);
    color: var(--rr-color-common-white);
}
.therapy-item.active .therapy-number .number,
.therapy-item:hover .therapy-number .number {
    color: rgba(255, 255, 255, 0.12);
}

.therapy-bottom {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #d7cec9;
    position: relative;
}
.therapy-bottom .map-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}
.therapy-bottom ul {
    display: flex;
    align-items: center;
}
.therapy-bottom ul li {
    margin-right: -30px;
}
.therapy-bottom ul li.plus {
    color: var(--rr-color-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    background-color: var(--rr-color-theme-primary);
    transform: rotate(-45deg);
}
.therapy-bottom ul li.plus i {
    transform: rotate(45deg);
}
.therapy-bottom p {
    margin-left: 50px;
    margin-bottom: 0;
    font-weight: 500;
}
.therapy-bottom p a {
    color: var(--rr-color-heading-primary);
    font-weight: 600;
    text-decoration: underline;
}

.therapy-container {
    max-width: 1325px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 1399px) {
    .therapy-container {
        padding: 0 15px;
    }
}

.therapy-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 80px 0;
}
.therapy-cta .title {
    color: var(--rr-color-common-white);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.therapy-2 {
    position: relative;
    z-index: 1;
}
.therapy-2:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 100%;
    height: 120px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
}
.therapy-2 .theory-wrap {
    box-shadow: 0px 0px 70px 0px rgba(34, 34, 34, 0.07);
}

/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.page-header .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100px;
    left: 0;
}
.page-header .overlay {
    background-image: -webkit-linear-gradient(
        180deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 72%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.page-header .bg-color-wrap {
    mask-image: url(../img/bg-img/page-header-bg.png);
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-header-content {
    padding: 60px 0 90px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: start;
}
@media only screen and (max-width: 992px) {
    .page-header-content {
        padding: 300px 0 90px 0;
    }
}
@media only screen and (max-width: 992px) {
    .page-header-content {
        padding: 200px 0 100px 0;
    }
}
.page-header-content .title {
    color: var(--rr-color-common-white);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .page-header-content .title {
        line-height: 1.3em;
    }
}
@media only screen and (max-width: 992px) {
    .page-header-content .title {
        font-size: 48px;
    }
}
@media only screen and (max-width: 767px) {
    .page-header-content .title {
        font-size: 46px;
        margin-bottom: 10px;
    }
}
.page-header-content .sub-title {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-style: italic;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .page-header-content .sub-title {
        font-size: 13px;
    }
}
.page-header-content .sub-title:before {
    background-image: url(../img/shapes/line.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 11px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.page-header-content .sub-title .home {
    color: var(--rr-color-common-white);
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    font-style: italic;
}
.page-header-content .sub-title .home:before {
    background-image: none;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 700;
    content: "-";
    color: var(--rr-color-common-white);
    position: absolute;
    top: 60%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.page-header-content .sub-title a {
    color: var(--rr-color-common-white);
}
@media only screen and (max-width: 767px) {
    .page-header-content .sub-title a {
        line-height: 2;
    }
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-content {
    background-color: var(--rr-color-bg-1);
    padding: 40px 50px;
    border: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
    .contact-content {
        padding: 30px 20px;
    }
}
.contact-content .section-heading {
    margin-bottom: 30px;
}
.contact-content .section-heading .section-title {
    font-size: 36px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
    .contact-content .section-heading .section-title {
        font-size: 32px;
    }
}
.contact-content .contact-list .list-item {
    display: grid;
    align-items: center;
    grid-template-columns: 75px 1fr;
    grid-gap: 20px;
}
.contact-content .contact-list .list-item:not(:last-of-type) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 767px) {
    .contact-content .contact-list .list-item {
        grid-template-columns: 1fr;
    }
}
.contact-content .contact-list .list-item .icon {
    background-color: var(--rr-color-border-1);
    color: var(--rr-color-theme-primary);
    font-size: 30px;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
    transition: all 0.3s ease-in-out;
}
.contact-content .contact-list .list-item .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.contact-content .contact-list .list-item .content p {
    margin-bottom: 0;
}
.contact-content .contact-list .list-item .content a {
    display: block;
}
.contact-content .contact-list .list-item .content span {
    display: block;
}
.contact-content .contact-list .list-item:hover .icon {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

.contact-wrap {
    background-color: var(--rr-color-grey-1);
    padding: 60px;
    align-items: end;
}
@media only screen and (max-width: 767px) {
    .contact-wrap {
        padding: 40px 20px;
    }
}
.contact-wrap .section-heading .section-title {
    margin: 0;
}

.blog-contact-form.form-2 {
    border: 1px solid var(--rr-color-border-1);
}

.map-wrapper {
    margin-bottom: -10px;
}

.contact-section-2 {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}
@media only screen and (max-width: 992px) {
    .contact-section-2 {
        margin-top: 0px;
    }
}
.contact-section-2 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    z-index: -1;
}
@media only screen and (max-width: 992px) {
    .contact-section-2 .bg-img {
        display: none;
    }
}
.contact-section-2 .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.about-section {
    position: relative;
}
.about-section .shapes .shape.shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}
.about-section .shapes .shape.shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

.about-container {
    max-width: 1570px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.about-img-wrap {
    max-width: 740px;
    width: 100%;
    /* height: 705px; */
    position: relative;
}
.about-img-wrap .about-mask-1 {
    max-width: 450px;
    width: 100%;
    height: 740px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-1.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -170px 0;
}
.about-img-wrap .about-mask-2 {
    max-width: 262px;
    width: 100%;
    height: 452px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-2.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -240px 0;
}
.about-img-wrap .about-mask-3 {
    max-width: 262px;
    width: 100%;
    height: 440px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-3.png);
    mask-repeat: no-repeat;
}
.about-img-wrap .about-mask-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -140px 0;
}
.about-img-wrap .about-text-box {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 296px;
    height: 144px;
    display: grid;
    align-items: center;
    grid-template-columns: 65px 1fr;
    grid-gap: 20px;
    position: absolute;
    left: 70%;
    bottom: 40px;
    transform: translateX(-50%);
    padding: 20px 30px;
}
.about-img-wrap .about-text-box .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .about-img-wrap .about-text-box {
        left: 0;
        transform: translateX(0);
    }
}

.about-content {
    max-width: 590px;
    width: 100%;
}
@media only screen and (max-width: 992px) {
    .about-content {
        margin-top: 40px;
    }
}
.about-content .bottom-title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 40px;
}
.about-content .about-items {
    display: flex;
    align-items: center;
    column-gap: 25px;
    flex-wrap: wrap;
    row-gap: 15px;
    max-width: 527px;
    width: 100%;
}
.about-content .about-items .about-item {
    display: grid;
    align-items: center;
    grid-template-columns: 45px 1fr;
    grid-gap: 15px;
    padding: 15px 40px 15px 20px;
    border: 2px solid #e8e7e6;
    border-radius: 0 100px 100px 0;
    position: relative;
}
.about-content .about-items .about-item:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    height: 105%;
    width: 3px;
    position: absolute;
    top: -2px;
    left: -2px;
}
.about-content .about-items .about-item .icon {
    height: 50px;
}
.about-content .about-items .about-item .icon img {
    height: 100%;
}
.about-content .about-items .about-item .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-skills-items .skills-item {
    overflow: hidden;
    padding-top: 10px;
    max-width: 590px;
    width: 100%;
}
.about-skills-items .skills-item:not(:last-of-type) {
    margin-bottom: -15px;
    padding-bottom: 40px;
}
.about-skills-items .skills-item .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
    .about-skills-items .skills-item .title {
        font-size: 18px;
    }
}
.about-skills-items .skills-item .progress {
    height: 2px;
    overflow: visible;
    border-radius: 0;
}
.about-skills-items .skills-item .progress .progress-bar {
    position: relative;
    background-color: var(--rr-color-theme-primary);
    overflow: visible;
}
.about-skills-items .skills-item .progress .progress-bar span {
    font-family: var(--rr-ff-heading);
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
    display: block;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    background-repeat: no-repeat;
    padding: 10px 15px;
    position: absolute;
    top: -45px;
    right: 0;
}
@media only screen and (max-width: 767px) {
    .about-skills-items .skills-item .progress .progress-bar span {
        padding: 5px 15px;
        top: -40px;
    }
}

.about-content-2 .about-list {
    max-width: 520px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 40px;
}
.about-content-2 .about-list li {
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    font-weight: 500;
}
.about-content-2 .about-list li .icon {
    background-color: rgb(246, 242, 239);
    color: var(--rr-color-theme-primary);
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}
.about-content-2 .about-btn-wrap {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
}
.about-content-2 .about-btn-wrap .about-author {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.about-img-wrap-2 {
    max-width: 670px;
    width: 100%;
    height: 655px;
    position: relative;
}
.about-img-wrap-2 .bg-color {
    background-color: #f6f2ef;
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    width: 80%;
}
.about-img-wrap-2 .about-img-1 {
    position: absolute;
    top: -13px;
    left: -22px;
    z-index: 2;
}
.about-img-wrap-2 .about-img-2 {
    height: 352px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-img-wrap-2 .about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-wrap-2 .about-counter {
    position: absolute;
    top: 35px;
    right: 35px;
}
.about-img-wrap-2 .about-counter .play-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 30px;
}
.about-img-wrap-2 .about-counter .play-btn a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    font-size: 20px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple {
    height: 80px;
    width: 80px;
}
.about-img-wrap-2 .about-counter .play-btn a .ripple:before,
.about-img-wrap-2 .about-counter .play-btn a .ripple:after {
    height: 80px;
    width: 80px;
}
.about-img-wrap-2 .about-counter .title {
    color: var(--rr-color-theme-primary);
    display: flex;
    align-items: center;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1;
    margin-top: 30px;
}
.about-img-wrap-2 .about-counter .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}
.about-img-wrap-2 .about-counter p {
    font-family: var(--rr-ff-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
}

.about-section-4 {
    position: relative;
    z-index: 1;
}
.about-section-4 .about-bg-mask {
    max-width: 708px;
    width: 100%;
    height: 566px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-5.png);
    mask-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
    .about-section-4 .about-bg-mask {
        display: none;
    }
}
.about-section-4 .about-bg-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section-4 .about-bg-mask:before {
    background-color: rgba(255, 255, 255, 0.9);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-wrap-4 {
    height: 640px;
    max-width: 650px;
    width: 100%;
    position: relative;
}
@media (max-width: 1170px) {
    .about-img-wrap-4 {
        margin: 0 auto;
    }
}
@media only screen and (max-width: 767px) {
    .about-img-wrap-4 {
        display: none;
    }
}
.about-img-wrap-4 .about-img-mask {
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/about-img-mask-4.png);
    mask-repeat: no-repeat;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 482px;
    max-width: 620px;
    width: 100%;
}
.about-img-wrap-4 .about-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-wrap-4 .about-shape {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.about-img-wrap-4 .about-shape-2 {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

.about-content-4 {
    position: relative;
    z-index: 5;
    margin-left: 40px;
}
@media only screen and (max-width: 992px) {
    .about-content-4 {
        margin-top: 40px;
        margin-left: 0px;
    }
}
@media (max-width: 1170px) {
    .about-content-4 p br {
        display: none;
    }
}
.about-content-4 .about-item-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.about-content-4 .about-item-wrap .about-item {
    background-color: var(--rr-color-grey-2);
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 15px 30px;
}
.about-content-4 .about-item-wrap .about-item .icon i {
    font-size: 30px;
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.about-content-4 .about-item-wrap .about-item .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
}
.about-content-4 .about-list {
    margin-top: 30px;
}
.about-content-4 .about-list li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
}
.about-content-4 .about-list li:not(:last-of-type) {
    margin-bottom: 10px;
}
.about-content-4 .about-list li i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.about-content-4 .about-contact-wrap {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
}
.about-content-4 .about-contact-wrap .about-contact {
    display: grid;
    align-items: center;
    grid-gap: 10px;
    grid-template-columns: 35px 1fr;
}
.about-content-4 .about-contact-wrap .about-contact .icon {
    background-color: #1f140c;
    color: var(--rr-color-common-white);
    height: 35px;
    width: 35px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-content-4 .about-contact-wrap .about-contact .content span {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.about-content-4 .about-contact-wrap .about-contact .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.service-section {
    background-color: #f6f2ef;
    position: relative;
    z-index: 1;
}
.service-section .bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.service-wrap > div {
    padding: 0;
}

.service-item {
    background-color: var(--rr-color-common-white);
    height: 435px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 35px 35px 0 35px;
}
.service-item:before {
    background-image: linear-gradient(
        -142deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 84%
    );
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.service-item.img-item {
    padding: 0;
    height: 435px;
}
.service-item.img-item .service-img {
    height: 100%;
}
.service-item.img-item .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item .service-thumb {
    height: 107px;
    margin-bottom: 30px;
}
.service-item .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item .service-content .title {
    font-weight: 500;
    margin-bottom: 20px;
    transition: inherit;
}
.service-item .service-content p {
    margin-bottom: 30px;
}
.service-item .service-content .service-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-item .service-content .service-bottom .icon {
    background-color: #f6f2ef;
    padding: 20px 20px;
    border-radius: 100px 100px 0 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-bottom .icon img {
    -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;
    transition: all 0.3s ease-in-out;
}
.service-item .service-content .service-bottom .service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 1px solid #dddcdc;
}
.service-item .service-content .service-bottom .service-arrow:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.service-item.active:before,
.service-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.service-item.active .service-content .title,
.service-item:hover .service-content .title {
    color: var(--rr-color-common-white);
}
.service-item.active .service-content .service-bottom .icon,
.service-item:hover .service-content .service-bottom .icon {
    background-color: var(--rr-color-theme-primary);
}
.service-item.active .service-content .service-bottom .icon img,
.service-item:hover .service-content .service-bottom .icon img {
    filter: brightness(0) invert(1);
}
.service-item.active .service-content .service-bottom .service-arrow,
.service-item:hover .service-content .service-bottom .service-arrow {
    border: 1px solid var(--rr-color-theme-primary);
    color: rgba(255, 255, 255, 0.7);
}
.service-item.active .service-content .service-bottom .service-arrow:hover,
.service-item:hover .service-content .service-bottom .service-arrow:hover {
    color: var(--rr-color-common-white);
}

.service-section-2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-section-2 .shape {
    position: absolute;
    top: 30%;
    left: -17%;
    z-index: -1;
}

.service-item-2 {
    background-color: var(--rr-color-common-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 20px 45px;
    border: 1px solid #e8e7e6;
}
.service-item-2:not(:last-of-type) {
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .service-item-2 {
        padding: 20px;
    }
}
.service-item-2 .service-item-left {
    display: grid;
    align-items: center;
    grid-template-columns: 150px 1fr;
    grid-gap: 20px;
}
@media only screen and (max-width: 767px) {
    .service-item-2 .service-item-left {
        grid-template-columns: 1fr;
    }
}
.service-item-2 .service-item-left .icon-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-item-2 .service-item-left .icon-wrap .icon {
    background-color: var(--rr-color-common-white);
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-item-2 .service-item-left .title {
    margin-bottom: 0;
}

.service-section-3 {
    background-color: #f6f2ef;
    position: relative;
    z-index: 1;
}
.service-section-3 .shape {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: -1;
    height: 100%;
}
.service-section-3 .shape img {
    width: 100%;
    height: 100%;
}

.service-top p {
    max-width: 500px;
    width: 100%;
    margin-bottom: 0;
}

.service-item-3 {
    background-color: var(--rr-color-common-white);
    padding: 35px 50px 0 50px;
    border: 1px solid #b5afaa;
}
@media only screen and (max-width: 767px) {
    .service-item-3 {
        padding: 30px 20px;
    }
}
.service-item-3 .service-thumb {
    height: 102px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}
.service-item-3 .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item-3 .service-content {
    margin-bottom: 30px;
}
.service-item-3 .service-content .title {
    margin-bottom: 20px;
}
.service-item-3 .service-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
.service-item-3 .icon {
    border: 1px solid #bbb8b6;
    padding: 20px 20px;
    border-radius: 100px 100px 0 0;
    border-bottom: none;
}
.service-item-3 .service-arrow {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb8b6;
    border-radius: 50%;
}
.service-item-3 .service-arrow:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}

.service-details-content .service-details-img {
    margin-bottom: 40px;
    height: 440px;
    width: 100%;
}
.service-details-content .service-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-details-content .title {
    font-size: 24px;
    font-weight: 500;
}
.service-details-content .service-details-list {
    list-style: none;
}
.service-details-content .service-details-list li {
    display: flex;
    align-items: center;
    column-gap: 2px;
}
.service-details-content .service-details-list li:not(:last-of-type) {
    margin-bottom: 25px;
}
.service-details-content .service-details-list li i {
    color: var(--rr-color-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
}
.service-details-content .service-details-list-2 {
    margin-left: 20px;
}
.service-details-content .service-details-list-2 li:not(:last-of-type) {
    margin-bottom: 10px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.download-wrap {
    border: 1px solid #e6e0dd;
    padding: 30px 90px 0 90px;
}
@media only screen and (max-width: 767px) {
    .download-wrap {
        padding: 30px 20px;
    }
}

.download-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
    margin-bottom: 30px;
}

.download-item {
    background-color: var(--rr-color-theme-primary);
    padding: 30px 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .download-item {
        padding: 30px 20px;
    }
}
.download-item .left-content span {
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.download-item .left-content .title {
    color: var(--rr-color-common-white);
    font-weight: 500;
    margin-bottom: 0;
}
.download-item .download-btn {
    color: var(--rr-color-common-white);
    font-size: 25px;
}
.download-item:hover {
    background-color: #1e130c;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.project-wrap {
    position: relative;
    z-index: 1;
    height: 765px;
    max-width: 1320px;
    width: 100%;
}
@media only screen and (max-width: 992px) {
    .project-wrap {
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(2, 1fr);
        height: 100%;
        margin-top: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .project-wrap {
        grid-template-columns: 1fr;
    }
}

.project-item {
    overflow: hidden;
}
.project-item .project-thumb {
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .project-item .project-thumb {
        height: 100%;
    }
}
.project-item .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-item .project-thumb .project-content {
    background-color: var(--rr-color-common-white);
    width: 90%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    padding: 10px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.project-item .project-thumb .project-content .line-border {
    background-color: var(--rr-color-theme-primary);
    width: 90%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.project-item .project-thumb .project-content .project-btn a {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}
.project-item .project-thumb .project-content .project-btn a:hover {
    background-color: var(--rr-color-heading-primary);
}
.project-item .project-thumb .project-content span {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    font-weight: 500;
}
.project-item .project-thumb .project-content .title {
    font-size: 22px;
}
.project-item.item-1 {
    max-width: 315px;
    width: 100%;
    height: 320px;
    position: absolute;
    top: 155px;
    left: 0;
}
@media only screen and (max-width: 992px) {
    .project-item.item-1 {
        position: static;
        height: 350px;
        max-width: 100%;
    }
}
.project-item.item-2 {
    max-width: 315px;
    width: 100%;
    height: 660px;
    position: absolute;
    top: 100px;
    left: 340px;
}
@media only screen and (max-width: 992px) {
    .project-item.item-2 {
        position: static;
        height: 350px;
        max-width: 100%;
    }
}
.project-item.item-3 {
    max-width: 315px;
    width: 100%;
    height: 210px;
    position: absolute;
    top: 0px;
    right: 325px;
}
@media (max-width: 1399px) {
    .project-item.item-3 {
        right: 185px;
    }
}
@media (max-width: 1170px) {
    .project-item.item-3 {
        right: 0;
    }
}
@media only screen and (max-width: 992px) {
    .project-item.item-3 {
        position: static;
        height: 350px;
        max-width: 100%;
    }
}
.project-item.item-4 {
    max-width: 640px;
    width: 100%;
    height: 370px;
    position: absolute;
    top: 235px;
    right: 0px;
}
@media (max-width: 1399px) {
    .project-item.item-4 {
        max-width: 500px;
    }
}
@media (max-width: 1170px) {
    .project-item.item-4 {
        max-width: 315px;
    }
    .project-item.item-4 .project-thumb {
        height: 100%;
    }
}
@media only screen and (max-width: 992px) {
    .project-item.item-4 {
        position: static;
        height: 350px;
        max-width: 100%;
    }
}
.project-item.view-gallary-btn {
    position: absolute;
    top: 0;
    right: 80px;
}
@media (max-width: 1399px) {
    .project-item.view-gallary-btn {
        display: none;
    }
}
.project-item.view-gallary-btn a {
    background-color: #f6f2ef;
    height: 180px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #b2a198;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--rr-color-heading-primary);
}
.project-item.view-gallary-btn a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.project-item:hover .project-thumb .project-content {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}
@media only screen and (max-width: 992px) {
    .project-item {
        position: static;
    }
}

.project-section-3 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.project-section-3 .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1170px) {
    .project-section-3 .shape {
        right: -40%;
    }
}
@media only screen and (max-width: 992px) {
    .project-section-3 .shape {
        display: none;
    }
}

.project-carousel {
    height: 460px;
    overflow: visible;
}
.project-carousel .swiper-wrapper {
    height: 100%;
}
.project-carousel .swiper-slide {
    width: 316px !important;
    height: 460px;
}
@media only screen and (max-width: 767px) {
    .project-carousel .swiper-slide {
        width: 100% !important;
    }
}
.project-carousel .swiper-slide:nth-child(2n) {
    width: 535px !important;
    height: 100%;
}
@media only screen and (max-width: 767px) {
    .project-carousel .swiper-slide:nth-child(2n) {
        width: 100% !important;
    }
}
.project-carousel .swiper-slide .project-item {
    height: 460px;
}
.project-carousel .swiper-slide .project-item img {
    height: 460px;
}

.project-item-2 .project-content .project-btn a {
    background-image: -moz-linear-gradient(
        33deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    background-image: -webkit-linear-gradient(
        33deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    background-image: -ms-linear-gradient(
        33deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
}

@media only screen and (max-width: 992px) {
    .project-details-content {
        margin-bottom: 40px;
    }
}
.project-details-content .project-details-img {
    height: 445px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .project-details-content .project-details-img {
        height: 350px;
    }
}
.project-details-content .project-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-details-content .details-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.project-details-content .project-details-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 30px;
}
.project-details-content .project-details-box .project-details-thumb {
    max-width: 300px;
    width: 100%;
    height: 300px;
    position: relative;
    z-index: 1;
}
.project-details-content .project-details-box .project-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-details-content .project-details-box .project-details-thumb .overlay {
    background-color: rgba(31, 20, 12, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.project-details-content .project-details-box .project-details-thumb .play-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.project-details-content
    .project-details-box
    .project-details-thumb
    .play-btn
    a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    height: 80px;
    width: 80px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.project-details-content
    .project-details-box
    .project-details-thumb
    .play-btn
    a
    .ripple {
    height: 80px;
    width: 80px;
}
.project-details-content
    .project-details-box
    .project-details-thumb
    .play-btn
    a
    .ripple:before,
.project-details-content
    .project-details-box
    .project-details-thumb
    .play-btn
    a
    .ripple:after {
    height: 80px;
    width: 80px;
}
.project-details-content
    .project-details-box
    .project-box-content
    .project-box-list
    li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.project-details-content
    .project-details-box
    .project-box-content
    .project-box-list
    li:not(:last-of-type) {
    margin-bottom: 15px;
}
.project-details-content
    .project-details-box
    .project-box-content
    .project-box-list
    li
    .icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfdddc;
    border-radius: 50%;
}
.project-details-content .project-customer-review {
    max-width: 645px;
    width: 100%;
}
.project-details-content .project-customer-review .details-title {
    margin-bottom: 30px;
}
.project-details-content .project-customer-review .project-testi {
    text-align: center;
    border: 1px solid #dfdddc;
    padding: 20px 10px;
}
.project-details-content .project-customer-review .project-testi .testi-author {
    background-color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 7px 30px 7px 10px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #dfdddc;
}
.project-details-content
    .project-customer-review
    .project-testi
    .testi-author:before {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.project-details-content
    .project-customer-review
    .project-testi
    .testi-author
    .title {
    text-align: left;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
.project-details-content
    .project-customer-review
    .project-testi
    .testi-author
    .title
    span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-theme-primary);
    display: block;
    margin-top: 5px;
}
.project-details-content .project-customer-review .project-testi p {
    padding: 0 10px;
    margin-bottom: 0;
}

.sidebar-widget .category-list.list-2 li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .team-item.project-details-card {
    background-color: #f6f2ef;
}
.sidebar-widget .team-item.project-details-card:before {
    visibility: hidden;
    opacity: 0;
}
.sidebar-widget .team-item.project-details-card .team-content .title {
    color: var(--rr-color-heading-primary);
}
.sidebar-widget .team-item.project-details-card .team-content .title a {
    color: var(--rr-color-heading-primary);
}
.sidebar-widget.team-card-widget {
    max-width: 420px;
    width: 100%;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.cta-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.cta-video-btn {
    height: 344px;
    max-width: 333px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-video-btn .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cta-video-btn .video-popup {
    background-color: var(--rr-color-common-white);
    height: 88px;
    width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-top: -20px;
}
.cta-video-btn .video-popup .ripple {
    height: 88px;
    width: 88px;
}
.cta-video-btn .video-popup .ripple:before,
.cta-video-btn .video-popup .ripple:after {
    height: 88px;
    width: 88px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.testi-wrap {
    background-color: #f6f2ef;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.testi-item .testi-content-wrap {
    height: 270px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}
@media only screen and (max-width: 767px) {
    .testi-item .testi-content-wrap {
        padding: 0 10px;
    }
}
.testi-item .testi-content-wrap .testi-bg {
    background-image: url(../img/shapes/testi-item-shape.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media only screen and (max-width: 767px) {
    .testi-item .testi-content-wrap .testi-bg {
        background-size: cover;
    }
}
.testi-item .testi-content-wrap .shapes .shape-1 {
    position: absolute;
    top: 30px;
    right: 45px;
    z-index: -1;
}
.testi-item .testi-content-wrap .shapes .shape-2 {
    position: absolute;
    bottom: 30px;
    left: 45px;
    z-index: -1;
}
@media only screen and (max-width: 767px) {
    .testi-item .testi-content-wrap .quotes {
        display: none;
    }
}
.testi-item .testi-content-wrap .quotes .quote-1 {
    position: absolute;
    top: 25px;
    left: 70px;
    z-index: -1;
}
.testi-item .testi-content-wrap .quotes .quote-2 {
    position: absolute;
    bottom: 35px;
    right: 70px;
    z-index: -1;
}
.testi-item .testi-content-wrap p {
    color: var(--rr-color-common-white);
    font-size: 18px;
    font-style: italic;
    text-align: center;
}
.testi-item .author-info {
    display: grid;
    grid-template-columns: 1fr 90px;
    align-items: center;
    grid-gap: 15px;
    text-align: right;
    margin-top: 20px;
    margin-right: 35px;
}
@media only screen and (max-width: 767px) {
    .testi-item .author-info {
        margin-right: 0;
    }
}
.testi-item .author-info .title {
    font-size: 24px;
    font-weight: 500;
    text-align: right;
    margin-bottom: 0;
}
.testi-item .author-info .title span {
    color: var(--rr-color-theme-primary);
    font-family: var(--rr-ff-body);
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}
.testi-item.item-1 .testi-content-wrap .quotes .quote-2 img,
.testi-item.item-1 .testi-content-wrap .quotes .quote-1 img {
    filter: brightness(0) invert(1);
}
.testi-item.item-2 .testi-content-wrap .testi-bg {
    background-image: url(../img/shapes/testi-item-shape-2.png);
}
.testi-item.item-2 .testi-content-wrap p {
    color: var(--rr-color-theme-primary);
}

.testi-wrap-2 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 1600px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 80px 20px;
}
@media only screen and (max-width: 767px) {
    .testi-wrap-2 {
        padding-left: 0;
        padding-right: 0;
    }
}

.testi-item-2 {
    text-align: center;
}
.testi-item-2 .testi-content-wrap {
    position: relative;
    height: 410px;
    max-width: 426px;
    width: 100%;
    margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
    .testi-item-2 .testi-content-wrap {
        margin-bottom: 20px;
    }
}
.testi-item-2 .testi-content-wrap:before {
    background-image: url(../img/shapes/testi-item-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .testi-item-2 .testi-content-wrap:before {
        display: none;
    }
}
.testi-item-2 .testi-content-wrap:after {
    background-image: url(../img/shapes/testi-item-bg-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .testi-item-2 .testi-content-wrap:after {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .testi-item-2 .testi-content-wrap .quotes {
        display: none;
    }
}
.testi-item-2 .testi-content-wrap .quotes .quote-1 {
    position: absolute;
    top: 80px;
    left: 80px;
    z-index: 2;
}
.testi-item-2 .testi-content-wrap .quotes .quote-2 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;
}
.testi-item-2 .testi-content-wrap .testi-content {
    text-align: center;
    background-color: var(--rr-color-common-white);
    border-radius: 72% 28% 53% 47%/66% 51% 49% 34%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #b7b1ac;
    height: 360px;
    max-width: 380px;
    width: 100%;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap {
    margin-left: 50px;
    margin-bottom: 20px;
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap ul li {
    color: var(--rr-color-theme-primary);
    display: inline-flex;
}
.testi-item-2
    .testi-content-wrap
    .testi-content
    .testi-review-wrap
    ul
    li:not(:last-of-type) {
    margin-right: 3px;
}
.testi-item-2 .testi-content-wrap .testi-content .testi-review-wrap span {
    font-weight: 500;
    color: var(--rr-color-heading-primary);
}
.testi-item-2 .testi-content-wrap .testi-content p {
    font-style: italic;
    font-size: 18px;
    color: var(--rr-color-theme-primary);
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .testi-item-2 .testi-content-wrap .testi-content p {
        padding: 0 20px;
    }
}
.testi-item-2 .testi-author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: var(--rr-color-common-white);
    padding: 7px 10px 7px 30px;
    border-radius: 100px;
    border: 1px solid #b5afaa;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testi-item-2 .testi-author:before {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.testi-item-2 .testi-author .title {
    text-align: right;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .testi-item-2 .testi-author .title {
        font-size: 18px;
    }
}
.testi-item-2 .testi-author .title span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-theme-primary);
    display: block;
    margin-top: 5px;
}
.testi-item-2:hover .testi-content-wrap:before {
    visibility: hidden;
    opacity: 0;
}
.testi-item-2:hover .testi-content-wrap:after {
    visibility: visible;
    opacity: 1;
}
.testi-item-2:hover .testi-author:before {
    visibility: visible;
    opacity: 1;
}
.testi-item-2:hover .testi-author .title {
    color: var(--rr-color-common-white);
}

.testi-item-3 {
    background-color: var(--rr-color-grey-2);
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .testi-item-3 {
        padding: 40px 20px;
    }
}
.testi-item-3:before {
    background-image: url(../img/shapes/testi-shape-5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.testi-item-3:after {
    background-image: url(../img/shapes/testi-shape-6.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    -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;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.testi-item-3 .testi-author {
    background-color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 7px 30px 7px 10px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
}
.testi-item-3 .testi-author:before {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.testi-item-3 .testi-author .title {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .testi-item-3 .testi-author .title {
        font-size: 18px;
    }
}
.testi-item-3 .testi-author .title span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-theme-primary);
    display: block;
    margin-top: 5px;
}
.testi-item-3:hover:before {
    visibility: hidden;
    opacity: 0;
}
.testi-item-3:hover:after {
    visibility: visible;
    opacity: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.counter-wrap > div {
    padding: 0;
}

/* .counter-item {
  border-left: 2px solid var(--rr-color-theme-primary);
  border-right: 2px solid var(--rr-color-theme-primary);
} */
.counter-item .icon {
    background-color: var(--rr-color-common-white);
    height: 85px;
    width: 85px;
    border: 1px solid #ede6d1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    justify-content: center;
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
    -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;
    transition: all 0.3s ease-in-out;
}

.counter-item .icon img {
    transform: rotate(45deg);
    -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;
    transition: all 0.3s ease-in-out;
    padding: 12px;
}
.counter-item .icon:before {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.counter-item .icon .shape {
    background-color: #2688bd;
    content: "";
    height: 60px;
    width: 60px;
    position: absolute;
    bottom: -4px;
    left: 31%;
    transform: translateX(-50%);
    border-radius: 5px;
    z-index: -1;
}
.counter-item .title {
    font-family: var(--rr-ff-heading);
    font-size: 50px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.counter-item .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}
.counter-item .title .odometer-inside {
    margin-bottom: -4px;
}
.counter-item .title .plus {
    font-size: 25px;
    margin-top: -20px;
}
.counter-item p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.counter-item.item-2 {
    border-left: none;
    border-right: none;
}
.counter-item.item-3 {
    border-right: none;
}
@media only screen and (max-width: 992px) {
    .counter-item {
        border: none;
    }
}

.counter-section-2 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.counter-section-2 .overlay {
    background-color: #2c211a;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.9;
}
.counter-section-2 .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.counter-item-2 .title {
    color: var(--rr-color-common-white);
}
.counter-item-2 p {
    color: #bbadad;
}

.counter-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
}
.counter-section .overlay {
    background-color: rgb(30, 19, 12);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.85;
}

.counter-item-3 {
    max-width: 315px;
    width: 100%;
    height: 150px;
    position: relative;
}
.counter-item-3 .counter-content {
    background-color: var(--rr-color-common-white);
    height: 100%;
    max-width: 250px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 30px;
}
.counter-item-3 .counter-content .title {
    font-family: var(--rr-ff-heading);
    font-size: 50px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    line-height: 1;
}
.counter-item-3 .counter-content .title .odometer-auto-theme {
    font-family: inherit;
    line-height: 1;
}
.counter-item-3 .counter-content .title .odometer-inside {
    margin-bottom: -4px;
}
.counter-item-3 .counter-content .title .plus {
    font-size: 25px;
    margin-top: -20px;
}
.counter-item-3 .counter-content p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.counter-item-3 .counter-icon {
    background-color: var(--rr-color-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 85px;
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #ddcfc8;
    z-index: 1;
    -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;
    transition: all 0.3s ease-in-out;
}
.counter-item-3 .counter-icon:before {
    background-color: var(--rr-color-common-white);
    content: "";
    height: 30px;
    width: 62px;
    position: absolute;
    bottom: -31px;
    right: -2px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    opacity: 0.7;
}
.counter-item-3 .counter-icon:after {
    background-image: linear-gradient(
        126deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -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;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.counter-item-3:hover .counter-icon {
    border: 1px solid var(--rr-color-theme-primary);
}
.counter-item-3:hover .counter-icon img {
    filter: saturate(0) invert(1);
}
.counter-item-3:hover .counter-icon:after {
    visibility: visible;
    opacity: 1;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.team-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.team-section .overlay {
    background-color: rgb(30, 19, 12);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.95;
}

.team-item {
    background-color: var(--rr-color-common-white);
    padding: 25px;
    position: relative;
    z-index: 1;
}
.team-item:before {
    background-image: linear-gradient(
        90deg,
        rgb(30, 19, 12) 0%,
        rgb(154, 132, 120) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.team-item .team-thumb {
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/team/team-mask-img.png);
    mask-repeat: no-repeat;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}
.team-item .team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-item .team-thumb .gradient-shape {
    background: #1e130c;
    background: -webkit-linear-gradient(
        360deg,
        #1e130c 0%,
        rgba(255, 255, 255, 0) 100%
    );
    background: linear-gradient(
        360deg,
        #1e130c 0%,
        rgba(255, 255, 255, 0) 100%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.team-item .team-content {
    margin-top: 20px;
    margin-left: 25px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 30px;
}
@media only screen and (max-width: 767px) {
    .team-item .team-content {
        margin-left: 0;
    }
}
.team-item .team-content .team-social {
    position: relative;
}
.team-item .team-content .team-social .expand {
    background-image: linear-gradient(
        143deg,
        rgb(154, 132, 120) 20%,
        rgb(30, 19, 12) 100%
    );
    color: var(--rr-color-common-white);
    font-size: 15px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.team-item .team-content .team-social .social-list {
    background: var(--rr-color-common-white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
    list-style: none;
    -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;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    padding: 10px 15px 10px 15px;
    width: 45px;
    position: absolute;
    bottom: 155%;
    left: 0;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
}
/* .team-item .team-content .team-social .social-list:after {
  background-color: var(--rr-color-common-white);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
} */
.team-item .team-content .team-social .social-list li {
    transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item .team-content .team-social .social-list li a {
    color: var(--rr-color-heading-primary);
    font-size: 14px;
    font-weight: 600;
}
/* .team-item .team-content .team-social .social-list li a:hover {
  color: var(--rr-color-theme-primary);
} */
.team-item .team-content .team-social .social-list li:not(:last-of-type) {
    margin-bottom: 6px;
}
.team-item .team-content .team-social:hover .social-list {
    visibility: visible;
    opacity: 1;
}
.team-item .team-content .author-name .title {
    font-size: 24px;
    font-weight: 500;
}
@media only screen and (max-width: 992px) {
    .team-item .team-content .author-name .title {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .team-item .team-content .author-name .title {
        font-size: 20px;
        margin-top: 20px;
    }
}
.team-item .team-content .author-name span {
    font-size: 16px;
    font-weight: 500;
    color: var(--rr-color-theme-primary);
}
.team-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.team-item:hover .team-thumb .gradient-shape {
    visibility: hidden;
    opacity: 0;
}
.team-item:hover .team-content .author-name .title {
    color: var(--rr-color-common-white);
    transition: inherit;
}

.team-top .swiper-arrow {
    border: 1px solid #bbb8b6;
    padding: 8px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.team-wrap {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 15px;
}

.team-item-2 .team-thumb-wrap {
    background: #9a8478;
    background: -webkit-linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    background: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    position: relative;
    height: 360px;
    width: 360px;
    border-radius: 50%;
    border: 15px solid #b1dfd4;
    margin-bottom: -180px;
    margin-left: -14px;
    z-index: 2;
    display: none;
}
@media only screen and (max-width: 767px) {
    .team-item-2 .team-thumb-wrap {
        width: 290px;
        height: 290px;
    }
}
.team-item-2 .team-thumb-wrap:after {
    background: #9a8478;
    background: -webkit-linear-gradient(0deg, #9a8478 0%, #f6f2ef 100%);
    background: linear-gradient(0deg, #9a8478 0%, #f6f2ef 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}
.team-item-2 .team-thumb-wrap .team-thumb {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
}
.team-item-2 .team-content {
    background: #e2e7db;
    padding: 30px;
    display: block;
    /* min-height: 500px; */
    /* align-items: center; */
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    /* position: relative; */
    z-index: 1;
    border-radius: 44px 7px 22px 44px !important;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
    border-bottom: 6px solid #913f59;
    border-top: 6px solid #913f59;
}
@media only screen and (max-width: 767px) {
    .team-item-2 .team-content {
        padding-left: 20px;
    }
}
.team-item-2 .team-content:before {
    /* background-color: #27262408; */
    /* content: ""; */
    height: 430px;
    width: 430px;
    position: absolute;
    top: 38%;
    right: 49%;
    left: 31%;
    z-index: -1;
    border-radius: 50%;
}

.team-item-2 .team-content .title {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
    text-align: center;
}
.team-item-2 .team-content .title span {
    font-family: var(--rr-ff-body);
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--rr-color-theme-primary);
    margin-top: 5px;
}
.team-item-2 .team-social {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 5;
}
@media only screen and (max-width: 767px) {
    .team-item-2 .team-social {
        right: 40px;
    }
}
.team-item-2 .team-social .expand {
    background-image: linear-gradient(
        143deg,
        rgb(154, 132, 120) 20%,
        rgb(30, 19, 12) 100%
    );
    color: var(--rr-color-common-white);
    font-size: 15px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 5;
}
.team-item-2 .team-social .social-list {
    background: var(--rr-color-common-white);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.06);
    list-style: none;
    -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;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    padding: 10px 15px 10px 15px;
    width: 45px;
    position: absolute;
    bottom: 155%;
    left: 0;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
}
.team-item-2 .team-social .social-list:after {
    background-color: var(--rr-color-common-white);
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}
.team-item-2 .team-social .social-list li {
    transition: all 0.5s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.team-item-2 .team-social .social-list li a {
    color: var(--rr-color-heading-primary);
    font-size: 14px;
    font-weight: 600;
}
.team-item-2 .team-social .social-list li a:hover {
    color: var(--rr-color-theme-primary);
}
.team-item-2 .team-social .social-list li:not(:last-of-type) {
    margin-bottom: 6px;
}
.team-item-2 .team-social:hover .social-list {
    visibility: visible;
    opacity: 1;
}
.team-item-2:hover .team-thumb-wrap:after {
    visibility: visible;
    opacity: 1;
}
.team-item-2:hover .team-content:after {
    visibility: visible;
    opacity: 1;
}
.team-item-2:hover .team-content .title {
    color: var(--rr-color-common-white);
    transition: inherit;
}

.inner-team {
    background-image: linear-gradient(
        0deg,
        rgb(246, 242, 239) 0%,
        rgb(255, 255, 255) 100%
    );
}

.team-details-left {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 30px;
}
.team-details-left .team-social {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.team-details-left .team-social span {
    font-size: 20px;
    font-weight: 500;
    writing-mode: vertical-rl;
}
.team-details-left .team-social .social-list {
    margin-top: 30px;
    list-style: none;
}
.team-details-left .team-social .social-list li {
    background-color: #f6f2ef;
}
.team-details-left .team-social .social-list li:not(:last-of-type) {
    margin-bottom: 15px;
}
.team-details-left .team-social .social-list li a {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-details-card {
    max-width: 420px;
    width: 100%;
}
.team-details-card:before {
    visibility: visible;
    opacity: 1;
}
.team-details-card .team-content {
    text-align: center;
    justify-content: center;
}
.team-details-card .team-content .title {
    color: var(--rr-color-common-white);
}

@media only screen and (max-width: 992px) {
    .team-details-content {
        margin-top: 50px;
    }
}
.team-details-content .title {
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .team-details-content .title {
        font-size: 36px;
    }
}
.team-details-content .team-details-list-wrap {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 40px;
}
.team-details-content .team-details-list-wrap ul {
    list-style: none;
}
.team-details-content .team-details-list-wrap ul li {
    font-family: var(--rr-ff-body);
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 500;
}
.team-details-content .team-details-list-wrap ul li:not(:last-of-type) {
    margin-bottom: 10px;
}
.team-details-content .team-details-list-wrap ul li span {
    color: var(--rr-color-heading-primary);
    font-family: var(--rr-ff-heading);
    font-size: 20px;
    font-weight: 500;
    margin-right: 15px;
}
.team-details-content .team-details-box {
    background-color: #f6f2ef;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    align-items: start;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}
@media only screen and (max-width: 767px) {
    .team-details-content .team-details-box {
        padding: 30px 20px;
    }
}
.team-details-content .team-details-box .box-title {
    font-size: 24px;
    font-weight: 500;
}
.team-details-content
    .team-details-box
    .right-content
    .right-content-item:not(:last-of-type) {
    margin-bottom: 20px;
}
.team-details-content
    .team-details-box
    .right-content
    .right-content-item
    .content-title {
    font-size: 18px;
    color: var(--rr-color-heading-primary);
    margin-bottom: 15px;
}
.team-details-content .team-details-box.box-2 {
    background-color: var(--rr-color-common-white);
    border: 1px solid #cccccc;
}
.team-details-content .team-details-box.box-2 .right-content ul {
    list-style: none;
}
.team-details-content .team-details-box.box-2 .right-content ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.team-details-content
    .team-details-box.box-2
    .right-content
    ul
    li:not(:last-of-type) {
    margin-bottom: 20px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.faq-section {
    position: relative;
    z-index: 1;
}
.faq-section .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media only screen and (max-width: 992px) {
    .faq-section .shape {
        display: none;
    }
}
.faq-section .faq-img {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: -1;
}
@media only screen and (max-width: 992px) {
    .faq-section .faq-img {
        display: none;
    }
}
.faq-section .shapes .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.faq-section .shapes .shape-2 {
    position: absolute;
    bottom: 100px;
    left: 65%;
    z-index: -1;
}

.faq-content .faq-accordion .accordion-item {
    border: none;
}
.faq-content .faq-accordion .accordion-item:not(:last-of-type) {
    margin-bottom: 25px;
}
.faq-content .faq-accordion .accordion-item .accordion-button {
    padding: 0;
    padding-right: 20px;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-size: 24px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
    border-bottom: 1px solid #dddcdb;
}
.faq-content .faq-accordion .accordion-item .accordion-button .number {
    background-color: #f6f2ef;
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    -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;
    transition: all 0.3s ease-in-out;
}
.faq-content .faq-accordion .accordion-item .accordion-button .number:before {
    background-image: linear-gradient(
        126deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.faq-content .faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--rr-color-common-white);
}
.faq-content
    .faq-accordion
    .accordion-item
    .accordion-button:not(.collapsed)
    .number {
    color: var(--rr-color-common-white);
}
.faq-content
    .faq-accordion
    .accordion-item
    .accordion-button:not(.collapsed)
    .number:before {
    visibility: visible;
    opacity: 1;
}
.faq-content .faq-accordion .accordion-item .accordion-body {
    padding-left: 0;
    margin-left: 90px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.contact-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.contact-section .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}
@media only screen and (max-width: 992px) {
    .contact-section .shape {
        display: none;
    }
}
.contact-section .shape img {
    height: 100%;
}
.contact-section .map-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: -2;
}
@media only screen and (max-width: 992px) {
    .contact-section .map-shape {
        display: none;
    }
}
.contact-section .map-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-section .contact-men {
    position: absolute;
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    z-index: -1;
}
@media only screen and (max-width: 992px) {
    .contact-section .contact-men {
        display: none;
    }
}

.contact-box-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
@media only screen and (max-width: 992px) {
    .contact-box-wrap {
        display: none;
    }
}
.contact-box-wrap .contact-box {
    background-color: var(--rr-color-common-white);
    padding: 20px 25px;
    width: 290px;
}
.contact-box-wrap .contact-box span {
    color: var(--rr-color-theme-primary);
    font-family: var(--rr-ff-body);
    font-size: 16px;
    font-weight: 500;
    display: block;
}
.contact-box-wrap .contact-box .title,
.contact-box-wrap .contact-box a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
}
.contact-box-wrap .contact-box .title {
    margin-top: 10px;
}
.contact-box-wrap .contact-box a:hover {
    color: var(--rr-color-theme-primary);
}

.contact-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    padding-bottom: 190px;
}
@media only screen and (max-width: 992px) {
    .contact-container {
        padding-bottom: 90px;
    }
}

.contact-loaction {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-form .form-item {
    position: relative;
}
.request-form .form-item .form-control {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
    box-shadow: none;
    border: none;
    padding: 15.5px 30px;
    border-radius: 0;
    margin-bottom: 25px;
    width: 100%;
    border: 1px solid #d6d0cd;
    border-radius: 100px;
}
.request-form .form-item .form-control::-webkit-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}
.request-form .form-item .form-control:-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}
.request-form .form-item .form-control::-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}
.request-form .form-item .form-control:-ms-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 400;
}
.request-form .form-item .form-control.nice-select {
    height: auto;
    line-height: inherit;
    padding: 15.5px 30px;
}
.request-form .form-item .form-control.nice-select:after {
    top: 46%;
    width: 10px;
    height: 10px;
    border-color: var(--rr-color-text-body);
    border-bottom: 1px solid var(--rr-color-text-body);
    border-right: 1px solid var(--rr-color-text-body);
    right: 35px;
}
.request-form .form-item .form-control.nice-select .list {
    width: 100%;
}
.request-form .form-item .form-control.nice-select .list li {
    padding-left: 30px;
}
.request-form .form-item.message-item .form-control {
    border-radius: 15px;
}
.request-form .form-item.message-item .icon {
    top: 25px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.promo-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}
.promo-container .promo-img {
    position: absolute;
    z-index: 1;
    height: 560px;
    max-width: 340px;
    width: 100%;
}
.promo-container .promo-img:before {
    background-image: -webkit-linear-gradient(
        90deg,
        rgb(30, 19, 12) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    background-image: -ms-linear-gradient(
        90deg,
        rgb(30, 19, 12) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.promo-container .promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-container .promo-img.promo-1 {
    top: 0;
    left: 0;
}
@media (max-width: 1600px) {
    .promo-container .promo-img.promo-1 {
        left: -10%;
    }
}
@media (max-width: 1170px) {
    .promo-container .promo-img.promo-1 {
        display: none;
    }
}
.promo-container .promo-img.promo-2 {
    bottom: 0;
    right: 0;
}
@media (max-width: 1600px) {
    .promo-container .promo-img.promo-2 {
        right: -10%;
    }
}
@media (max-width: 1170px) {
    .promo-container .promo-img.promo-2 {
        display: none;
    }
}

.promo-content-wrap {
    max-width: 795px;
    margin: 0 auto;
    width: 100%;
}
@media (max-width: 1170px) {
    .promo-content-wrap {
        margin-left: 0;
    }
}

.promo-item .icon-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.promo-item .icon-wrap .icon {
    background-color: var(--rr-color-common-white);
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.promo-item .content .title {
    font-weight: 500;
    margin-bottom: 15px;
}
.promo-item .content p {
    margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
    .promo-item .content p br {
        display: none;
    }
}

.promo-section-2 {
    position: relative;
    z-index: 1;
    padding-top: 55px;
}
.promo-section-2 .promo-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 520px;
    position: absolute;
    top: -240px;
    left: 0;
    z-index: -1;
}
.promo-section-2 .promo-bg:before {
    background-color: #1e130c;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.85;
}

.promo-item-2 {
    background-color: var(--rr-color-common-white);
    padding: 30px 25px 15px 25px;
    position: relative;
    z-index: 1;
    border: 1px solid #bbb8b6;
    overflow: hidden;
}
.promo-item-2 .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.promo-item-2 .shape {
    background-color: #f6f2ef;
    height: 270px;
    width: 270px;
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
    -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;
    transition: all 0.3s ease-in-out;
}
.promo-item-2:before {
    background-image: linear-gradient(
        34deg,
        rgb(30, 19, 12) 0%,
        rgb(154, 132, 120) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    -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;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
.promo-item-2 .icon {
    margin-bottom: 25px;
}
.promo-item-2 .icon img {
    -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;
    transition: all 0.3s ease-in-out;
}
.promo-item-2 .number {
    font-family: var(--rr-ff-heading);
    color: #1e130c;
    font-size: 100px;
    position: absolute;
    top: 20px;
    right: 25px;
    opacity: 0.05;
    font-weight: 600;
    line-height: 1;
}
.promo-item-2 .content {
    position: relative;
    z-index: 2;
}
.promo-item-2 .content .title {
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.promo-item-2 .content .title:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 55px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.promo-item-2 .content p {
    margin-bottom: 45px;
}
.promo-item-2 .content .promo-arrow {
    text-align: center;
    height: 50px;
    width: 50px;
    border: 1px solid #b9b3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.promo-item-2 .content .promo-arrow:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}
.promo-item-2:hover {
    border: 1px solid var(--rr-color-theme-primary);
}
.promo-item-2:hover:before {
    visibility: visible;
    opacity: 1;
}
.promo-item-2:hover .bg-img {
    visibility: visible;
    opacity: 0.03;
}
.promo-item-2:hover .shape {
    background-color: #5c4e47;
}
.promo-item-2:hover .icon img {
    filter: brightness(0) invert(1);
    opacity: 0.3;
}
.promo-item-2:hover .content .title {
    color: var(--rr-color-common-white);
}
.promo-item-2:hover .content p {
    color: #cbc5c5;
}
.promo-item-2:hover .content .promo-arrow {
    color: var(--rr-color-common-white);
    border: 1px solid #98918d;
}
.promo-item-2.item-1 .content .title {
    margin-bottom: 70px;
}

.promo-box {
    background-color: #f6f2ef;
    position: relative;
    z-index: 1;
}
@media (max-width: 1170px) {
    .promo-box {
        padding: 50px 0;
    }
}
.promo-box .promo-mask-img {
    background-color: var(--rr-color-common-black);
    mask-image: url(../img/images/promo-mask.png);
    mask-repeat: no-repeat;
    width: 100%;
    height: 180px;
}
@media (max-width: 1170px) {
    .promo-box .promo-mask-img {
        display: none;
    }
}
.promo-box .promo-mask-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-box .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media (max-width: 1170px) {
    .promo-box .shape {
        display: none;
    }
}
.promo-box .promo-box-content {
    display: flex;
    align-items: center;
    align-items: end;
    justify-content: space-between;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 20px;
    padding: 0 30px;
    padding-bottom: 25px;
}
@media (max-width: 1399px) {
    .promo-box .promo-box-content {
        padding: 0 20px;
    }
}
@media (max-width: 1170px) {
    .promo-box .promo-box-content {
        flex-direction: column-reverse;
        align-items: baseline;
        row-gap: 30px;
    }
}
.promo-box .promo-box-content .left-content {
    display: grid;
    align-items: center;
    grid-template-columns: 55px 1fr;
    grid-gap: 20px;
}
.promo-box .promo-box-content .left-content .icon {
    background-color: var(--rr-color-common-white);
    height: 55px;
    width: 55px;
    border: 1px solid #b5afaa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo-box .promo-box-content .left-content .content span {
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}
.promo-box .promo-box-content .left-content .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    display: block;
}
.promo-box .promo-box-content .right-content {
    margin-top: -95px;
}
@media (max-width: 1170px) {
    .promo-box .promo-box-content .right-content {
        margin-top: 0;
    }
}
.promo-box .promo-box-content .right-content .icon {
    text-align: center;
    margin-bottom: 20px;
}
.promo-box .promo-box-content .right-content .title {
    font-weight: 500;
    margin-bottom: 10px;
}
@media (max-width: 1170px) {
    .promo-box .promo-box-content .right-content .title {
        font-size: 20px;
    }
}
.promo-box .promo-box-content .right-content p {
    margin-bottom: 0;
}
@media (max-width: 1170px) {
    .promo-box .promo-box-content .right-content p {
        font-size: 14px;
    }
}

.promo-box-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    padding: 55px 50px;
    flex-wrap: wrap;
    row-gap: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
}
@media only screen and (max-width: 767px) {
    .promo-box-2 {
        padding: 45px 20px;
    }
}
.promo-box-2 .bg-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.promo-box-2 .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-box-2 .overlay {
    background-color: #1e130c;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.promo-box-2 .content span {
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}
.promo-box-2 .content .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 0;
}
.promo-box-2 .counsel-box {
    background-color: var(--rr-color-theme-primary);
    height: 170px;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.promo-box-2 .counsel-box .shape {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.promo-box-2 .counsel-box .shape img {
    width: 100%;
    height: 100%;
}
.promo-box-2 .counsel-box .title {
    margin-bottom: 0;
    font-weight: 500;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.pricing-item .pricing-thumb-wrap {
    position: relative;
    height: 170px;
    width: 100%;
}
.pricing-item .pricing-thumb-wrap .price-area {
    background-color: var(--rr-color-theme-primary);
    height: 100%;
    width: 125px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.pricing-item .pricing-thumb-wrap .price-area .price {
    color: var(--rr-color-common-white);
    font-size: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    align-items: start;
    line-height: 1;
    margin-bottom: 0;
}
.pricing-item .pricing-thumb-wrap .price-area .price span {
    font-size: 20px;
    margin-top: 7px;
}
.pricing-item .pricing-thumb-wrap .price-area p {
    color: var(--rr-color-common-white);
    margin-bottom: 0;
}
.pricing-item .pricing-thumb-wrap .pricing-img {
    max-width: 300px;
    width: 100%;
    height: 123px;
    position: absolute;
    top: 0;
    right: 0;
}
.pricing-item .pricing-thumb-wrap .pricing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pricing-item .pricing-thumb-wrap .pricing-title {
    background-color: #1e130c;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 47px;
    max-width: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .pricing-item .pricing-thumb-wrap .pricing-title {
        justify-content: end;
        padding-right: 20px;
    }
}
.pricing-item .pricing-thumb-wrap .pricing-title .title {
    color: var(--rr-color-common-white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .pricing-item .pricing-thumb-wrap .pricing-title .title {
        font-size: 18px;
    }
}
.pricing-item .pricing-content {
    padding: 30px;
    border: 1px solid #bbb8b6;
    border-top: none;
}
.pricing-item .pricing-content .pricing-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #bbb8b6;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}
.pricing-item .pricing-content .pricing-list li i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.pricing-item .pricing-content .pricing-list li.cross {
    background-color: #f6f2ef;
    border: 1px solid #f6f2ef;
}

.pricing-item-2 .pricing-thumb-wrap .price-area {
    border-radius: 0 100px 100px 0;
    position: relative;
    z-index: 2;
}
.pricing-item-2 .pricing-thumb-wrap .pricing-title {
    background-color: var(--rr-color-grey-2);
    max-width: 100%;
    width: 100%;
    height: 100%;
    text-align: left;
    padding-left: 80px;
    padding-right: 20px;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .pricing-item-2 .pricing-thumb-wrap .pricing-title {
        padding-left: 125px;
    }
}
@media only screen and (max-width: 767px) {
    .pricing-item-2 .pricing-thumb-wrap .pricing-title {
        padding-left: 140px;
    }
}
.pricing-item-2 .pricing-thumb-wrap .pricing-title:before {
    background-image: linear-gradient(
        0deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.pricing-item-2 .pricing-thumb-wrap .pricing-title .title {
    font-size: 28px;
    font-weight: 500;
    color: var(--rr-color-heading-primary);
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .pricing-item-2 .pricing-thumb-wrap .pricing-title .title {
        font-size: 22px;
    }
}
.pricing-item-2 .pricing-thumb-wrap .pricing-title span {
    font-family: var(--rr-ff-body);
    display: block;
    font-size: 16px;
    color: #8b827d;
    margin-top: 10px;
}
.pricing-item-2 .pricing-content {
    border: 1px dashed #bbb8b6;
    border-top: none;
}
.pricing-item-2.active .pricing-thumb-wrap .pricing-title:before {
    visibility: visible;
    opacity: 1;
}
.pricing-item-2.active .pricing-thumb-wrap .pricing-title .title {
    color: var(--rr-color-common-white);
}
.pricing-item-2.active .pricing-thumb-wrap .pricing-title span {
    color: var(--rr-color-common-white);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.book-item {
    background-color: #fafafa;
    display: grid;
    align-items: center;
    grid-template-columns: 280px 1fr;
    grid-gap: 20px;
    padding: 20px;
    border: 1px solid #bab7b5;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .book-item {
        grid-template-columns: 1fr;
    }
}
.book-item .book-thumb-wrap {
    background-color: var(--rr-color-common-white);
    max-width: 280px;
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}
.book-item .book-thumb-wrap .book-thumb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 160px;
}
.book-item .book-thumb-wrap .book-icon-list {
    position: absolute;
    top: 0;
    left: -20px;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.book-item .book-thumb-wrap .book-icon-list li {
    list-style: none;
}
.book-item .book-thumb-wrap .book-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}
.book-item .book-thumb-wrap .book-icon-list li a {
    background-color: #f6f2ef;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-item .book-thumb-wrap .book-icon-list li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.book-item .book-thumb-wrap .cart-btn {
    position: absolute;
    bottom: -2px;
    left: 0;
}
.book-item .book-thumb-wrap .cart-btn a {
    display: flex;
    align-items: center;
}
.book-item .book-thumb-wrap .cart-btn a i {
    background-color: #f6f2ef;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.book-item .book-thumb-wrap .cart-btn a span {
    background: #1e130c;
    background: -webkit-linear-gradient(261deg, #1e130c 0%, #9a8478 100%);
    background: linear-gradient(261deg, #1e130c 0%, #9a8478 100%);
    color: var(--rr-color-common-white);
    padding: 7px 25px 7px 25px;
    border-radius: 0 100px 100px 0;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    display: inline-block;
    transform: translateX(-30px);
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.book-item .book-thumb-wrap .cart-btn a:hover span {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.book-item .content {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    margin-left: 10px;
}
@media only screen and (max-width: 992px) {
    .book-item .content {
        transform: rotate(0);
        writing-mode: inherit;
        margin-left: 0;
    }
}
.book-item .content .title {
    margin-bottom: 0px;
    margin-left: 10px;
}
.book-item .content span {
    color: var(--rr-color-theme-primary);
    font-weight: 500;
}
.book-item:hover {
    background-color: #f6f2ef;
}
.book-item:hover .book-thumb-wrap .book-icon-list {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-btn a {
    background-color: #f6f2ef;
    height: 180px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #b2a198;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--rr-color-heading-primary);
}
.book-btn a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.skill-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}
.skill-section .skill-img {
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.skill-section .skill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 992px) {
    .skill-section .skill-img {
        display: none;
    }
}
.skill-section .shape {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
@media (max-width: 1170px) {
    .skill-section .shape {
        width: 50%;
    }
}
@media only screen and (max-width: 992px) {
    .skill-section .shape {
        display: none;
    }
}
.skill-section .shape img {
    width: 100%;
    height: 100%;
}

.skill-content {
    padding-left: 40px;
}
@media only screen and (max-width: 767px) {
    .skill-content {
        padding-left: 0;
    }
}
.skill-content .about-skills-items .skills-item .title {
    font-size: 24px;
    color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 767px) {
    .skill-content .about-skills-items .skills-item .title {
        font-size: 18px;
    }
}
.skill-content .about-skills-items .skills-item .progress {
    background-color: #4b423d;
    height: 1px;
}
.skill-content .about-skills-items .skills-item .progress .progress-bar {
    height: 3px;
}
.skill-content .about-skills-items .skills-item .progress .progress-bar span {
    background-color: transparent;
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-theme-primary);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.process-section {
    background-color: var(--rr-color-grey-2);
}

@media (max-width: 1170px) {
    .process-item-wrapper {
        max-width: 880px;
        margin: 0 auto;
    }
}

.process-item {
    background-color: var(--rr-color-common-white);
    padding: 30px 30px;
    display: grid;
    align-items: center;
    grid-template-columns: 120px 1fr;
    grid-gap: 20px;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .process-item {
        grid-template-columns: 1fr;
    }
}
.process-item:not(:last-of-type) {
    margin-bottom: 24px;
}
.process-item:before {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.process-item .number {
    background-color: var(--rr-color-common-white);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid #e0dfde;
    z-index: 2;
}
@media only screen and (max-width: 767px) {
    .process-item .number {
        display: none;
    }
}
.process-item .number:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 4px;
    left: 4px;
}
.process-item .number:after {
    background-color: var(--rr-color-common-white);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.process-item .number span {
    position: relative;
    z-index: 5;
    transform: rotate(-45deg);
}
.process-item .icon-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: contain;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.process-item .icon-wrap .icon {
    background-color: var(--rr-color-common-white);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.process-item .content {
    position: relative;
    z-index: 5;
}
.process-item .content .title {
    font-size: 24px;
    font-weight: 500;
    -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;
    transition: all 0.3s ease-in-out;
}
.process-item .content p {
    font-size: 15px;
    margin-bottom: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .process-item .content p br {
        display: none;
    }
}
.process-item:hover:before {
    visibility: visible;
    opacity: 1;
}
.process-item:hover .content .title {
    color: var(--rr-color-common-white);
}
.process-item:hover .content p {
    color: #cbc5c5;
}
.process-item.item-2 .number {
    left: auto;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.process-item.item-2 .number:before {
    top: auto;
    left: 4px;
    bottom: 4px;
}
@media only screen and (max-width: 767px) {
    .process-item.item-2 .number {
        display: none;
    }
}
.process-item.item-3 .number {
    bottom: auto;
    top: -40px;
}
.process-item.item-3 .number:before {
    bottom: 4px;
    top: auto;
    left: auto;
    right: 4px;
}
@media only screen and (max-width: 767px) {
    .process-item.item-3 .number {
        display: none;
    }
}
.process-item.item-4 .number {
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.process-item.item-4 .number:before {
    bottom: 4px;
    top: 4px;
    left: auto;
    right: 4px;
}
@media only screen and (max-width: 767px) {
    .process-item.item-4 .number {
        display: none;
    }
}

.process-item-wrap.wrap-2 .process-item {
    grid-template-columns: 1fr 120px;
}
@media only screen and (max-width: 767px) {
    .process-item-wrap.wrap-2 .process-item {
        grid-template-columns: 1fr;
    }
}
.process-item-wrap.wrap-2 .process-item .content {
    text-align: right;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.slider-section {
    position: relative;
    overflow: hidden;
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    z-index: 2;
}

.ps-slider {
    position: relative;
    z-index: 2;
}
.ps-slider .swiper-arrow {
    background-color: rgba(30, 19, 12, 0.6);
    padding: 20px 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
    position: absolute;
    top: 46%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 5;
}
@media only screen and (max-width: 767px) {
    .ps-slider .swiper-arrow {
        display: none;
    }
}

.slider-item {
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.slider-item .slide-img-wrap {
    height: 965px;
}
@media only screen and (max-width: 992px) {
    .slider-item .slide-img-wrap {
        height: 650px;
    }
}
@media only screen and (max-width: 767px) {
    .slider-item .slide-img-wrap {
        height: 450px;
    }
}
.slider-item .slide-img-wrap img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.slider-item .slider-content-wrap {
    background-color: var(--rr-color-common-white);
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    height: 1108px;
    width: 1108px;
    border-radius: 50%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 120px;
}
@media only screen and (max-width: 992px) {
    .slider-item .slider-content-wrap {
        bottom: -100%;
    }
}
@media only screen and (max-width: 767px) {
    .slider-item .slider-content-wrap {
        height: 900px;
        width: 900px;
        bottom: -120%;
    }
}
.slider-item .slider-content-wrap .slider-content {
    text-align: center;
}
.slider-item .slider-content-wrap .slider-content .sub-title {
    font-size: 24px;
    color: var(--rr-color-theme-primary);
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding: 0 15px;
    width: 370px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
    .slider-item .slider-content-wrap .slider-content .sub-title {
        font-size: 18px;
        width: 300px;
    }
}
.slider-item .slider-content-wrap .slider-content .sub-title:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 70px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
.slider-item .slider-content-wrap .slider-content .sub-title:after {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 70px;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: -1;
}
.slider-item .slider-content-wrap .slider-content .slider-title {
    color: var(--rr-color-heading-primary);
    font-family: var(--rr-ff-heading);
    font-size: 100px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}
@media only screen and (max-width: 992px) {
    .slider-item .slider-content-wrap .slider-content .slider-title {
        font-size: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .slider-item .slider-content-wrap .slider-content .slider-title {
        font-size: 40px;
    }
}
.slider-item .slider-content-wrap .slider-content .slider-title span {
    color: var(--rr-color-theme-primary);
    display: block;
    margin-top: 10px;
}

.ps-swiper-pagination {
    height: 100%;
    width: auto !important;
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50px !important;
    z-index: 2;
}
@media (max-width: 1399px) {
    .ps-swiper-pagination {
        left: 25px !important;
    }
}
@media (max-width: 1250px) {
    .ps-swiper-pagination {
        display: none;
    }
}
.ps-swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
    opacity: 1;
    display: block;
}
.ps-swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid var(--rr-color-common-white);
}
.ps-swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    background-color: var(--rr-color-common-white);
    width: 5px;
    height: 5px;
    border: 1px solid var(--rr-color-common-white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ps-swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
    margin-bottom: 10px;
}

/* Text Animation */
.ps-animation,
.ps-animation span {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.ps-animation span {
    display: inline-block;
}

/* Fade Effect */
.ps-fadeIn {
    animation-name: asFadeIn;
}

@keyframes asFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.ps-fadeInLeft {
    animation-name: asFadeInLeft;
}

@keyframes asFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
    }
}
.ps-fadeInRight {
    animation-name: asFadeInRight;
}

@keyframes asFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
    }
}
.ps-fadeInDown {
    animation-name: asFadeInTop;
}

@keyframes asFadeInTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
    }
}
.ps-fadeInUp {
    animation-name: asFadeInBottom;
}

@keyframes asFadeInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
    }
}
/* Move From Effect */
.ps-moveFromLeft {
    animation-name: asMoveFromLeft;
}

@keyframes asMoveFromLeft {
    from {
        visibility: hidden;
        transform: translateX(-50px);
    }
    to {
        visibility: visible;
    }
}
.ps-moveFromRight {
    animation-name: asMoveFromRight;
}

@keyframes asMoveFromRight {
    from {
        visibility: hidden;
        transform: translateX(50px);
    }
    to {
        visibility: visible;
    }
}
.ps-moveFromTop {
    animation-name: asMoveFromTop;
}

@keyframes asMoveFromTop {
    from {
        visibility: hidden;
        transform: translateY(-50px);
    }
    to {
        visibility: visible;
    }
}
.ps-moveFromBottom {
    animation-name: asMoveFromBottom;
}

@keyframes asMoveFromBottom {
    from {
        visibility: hidden;
        transform: translateY(50px);
    }
    to {
        visibility: visible;
    }
}
/* Blur Effect */
.ps-blurIn {
    animation-name: asBlurIn;
}

@keyframes asBlurIn {
    from {
        filter: blur(20px);
        opacity: 0;
    }
}
.ps-blurInLeft {
    animation-name: asBlurInLeft;
}

@keyframes asBlurInLeft {
    from {
        transform: translateX(50px);
        filter: blur(20px);
        opacity: 0;
    }
}
.ps-blurInRight {
    animation-name: asBlurInRight;
}

@keyframes asBlurInRight {
    from {
        transform: translateX(-50px);
        filter: blur(20px);
        opacity: 0;
    }
}
.ps-blurInTop {
    animation-name: asBlurInTop;
}

@keyframes asBlurInTop {
    from {
        transform: translateY(50px);
        filter: blur(20px);
        opacity: 0;
    }
}
.ps-blurInBottom {
    animation-name: asBlurInBottom;
}

@keyframes asBlurInBottom {
    from {
        transform: translateY(-50px);
        filter: blur(20px);
        opacity: 0;
    }
}
/* Zoom Effect */
.ps-zoomIn {
    animation-name: asZoomIn;
}

@keyframes asZoomIn {
    from {
        transform: scale(5);
        opacity: 0;
    }
}
.ps-zoomInLeft {
    animation-name: asZoomInLeft;
}

@keyframes asZoomInLeft {
    from {
        transform: scale(5) translateX(-50%);
        opacity: 0;
    }
}
.ps-zoomInRight {
    animation-name: asZoomInRight;
}

@keyframes asZoomInRight {
    from {
        transform: scale(5) translateX(50%);
        opacity: 0;
    }
}
.ps-zoomInTop {
    animation-name: asZoomInTop;
}

@keyframes asZoomInTop {
    from {
        transform: scale(10) translateY(-50%);
        opacity: 0;
    }
}
.ps-zoomInBottom {
    animation-name: asZoomInBottom;
}

@keyframes asZoomInBottom {
    from {
        transform: scale(10) translateY(50%);
        opacity: 0;
    }
}
/* Flip Effect */
.ps-flipInTop {
    animation-name: asFlipInTop;
}

@keyframes asFlipInTop {
    from {
        transform: perspective(600px);
        opacity: 0;
    }
    30% {
        transform: perspective(600px) rotateX(180deg);
        transform-origin: 0 0;
        animation-timing-function: ease-out;
    }
    to {
        transform: perspective(600px);
    }
}
.ps-flipInBottom {
    animation-name: asFlipInBottom;
}

@keyframes asFlipInBottom {
    from {
        transform: perspective(600px);
        opacity: 0;
    }
    30% {
        transform: perspective(600px) rotateX(180deg);
        transform-origin: bottom;
        animation-timing-function: ease-out;
    }
    to {
        transform: perspective(600px);
    }
}
/* Roll Effect */
.ps-rollFromLeft {
    animation-name: asRollFromLeft;
}

@keyframes asRollFromLeft {
    from {
        transform: translateX(-60px) perspective(600px) rotateY(180deg);
        opacity: 0;
    }
}
.ps-rollFromRight {
    animation-name: asRollFromRight;
}

@keyframes asRollFromRight {
    from {
        transform: translateX(60px) perspective(600px) rotateY(-180deg);
        opacity: 0;
    }
}
.ps-rollFromTop {
    animation-name: asRollFromTop;
}

@keyframes asRollFromTop {
    from {
        transform: translateY(-60px) perspective(600px) rotateX(180deg);
        opacity: 0;
    }
}
.ps-rollFromBottom {
    animation-name: asRollFromBottom;
}

@keyframes asRollFromBottom {
    from {
        transform: translateY(60px) perspective(600px) rotateX(-180deg);
        opacity: 0;
    }
}
/* Rotate Skate Effect */
.ps-rotateSkateInRight {
    animation-name: asRotateSkateInRight;
}

@keyframes asRotateSkateInRight {
    from {
        transform: scaleX(0.2) translateX(100px);
        opacity: 0;
    }
}
.ps-rotateSkateInLeft {
    animation-name: asRotateSkateInLeft;
}

@keyframes asRotateSkateInLeft {
    from {
        transform: scaleX(0.2) translateX(-100px);
        opacity: 0;
    }
}
.ps-rotateSkateInTop {
    animation-name: asRotateSkateInTop;
}

@keyframes asRotateSkateInTop {
    from {
        transform: scaleY(0.2) translateY(-100px);
        opacity: 0;
    }
}
.ps-rotateSkateInBottom {
    animation-name: asRotateSkateInBottom;
}

@keyframes asRotateSkateInBottom {
    from {
        transform: scaleY(0.2) translateY(100px);
        opacity: 0;
    }
}
/* PopUp Effect */
.ps-popUp {
    animation-name: asPopUp;
}

@keyframes asPopUp {
    0% {
        visibility: hidden;
    }
    50% {
        transform: scale(1.1);
        visibility: visible;
    }
}
.ps-popUpLeft {
    animation-name: asPopUpLeft;
}

@keyframes asPopUpLeft {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: visible;
        transform: translateX(-20px) scale(1.1);
        animation-timing-function: ease-in;
    }
}
.ps-popUpRight {
    animation-name: asPopUpRight;
}

@keyframes asPopUpRight {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: visible;
        transform: translateX(20px) scale(1.1);
        animation-timing-function: ease-in;
    }
}
/* Kenburns Top */
.swiper-slide-active .kenburns-top {
    -webkit-animation-name: kenburns-top;
    animation-name: kenburns-top;
}

@-webkit-keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }
    100% {
        -webkit-transform: scale(1.08) translateY(-15px);
        transform: scale(1.08) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}
@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }
    100% {
        -webkit-transform: scale(1.08) translateY(-15px);
        transform: scale(1.08) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}
/* !END: Theme Slider CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.choose-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.choose-tab .nav-tabs {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: none;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .choose-tab .nav-tabs {
        flex-direction: column;
    }
}
.choose-tab .nav-tabs .nav-item {
    width: 33.33%;
}
@media only screen and (max-width: 767px) {
    .choose-tab .nav-tabs .nav-item {
        width: 100%;
    }
}
.choose-tab .nav-tabs .nav-link {
    font-family: var(--rr-ff-heading);
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    border: none;
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    padding: 48px 0;
    line-height: 1;
}
@media only screen and (max-width: 767px) {
    .choose-tab .nav-tabs .nav-link {
        font-size: 18px;
        padding: 20px 0;
    }
}
.choose-tab .nav-tabs .nav-link:before {
    background-image: linear-gradient(
        180deg,
        rgb(154, 132, 120) 18%,
        rgb(30, 19, 12) 100%
    );
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.choose-tab .nav-tabs .nav-link.active {
    color: var(--rr-color-common-white);
}
.choose-tab .nav-tabs .nav-link.active:before {
    visibility: visible;
    opacity: 1;
}
.choose-tab .tab-content {
    margin-top: 60px;
}
.choose-tab .tab-content .choose-img-wrap {
    max-width: 630px;
    width: 100%;
    height: 340px;
    position: relative;
}
.choose-tab .tab-content .choose-img-wrap .choose-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 576px;
    width: 100%;
}
.choose-tab .tab-content .choose-img-wrap .choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.choose-tab .tab-content .choose-img-wrap .choose-text {
    background-image: url(../img/bg-img/choose-text-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    position: absolute;
    bottom: 40px;
    right: 0;
    height: 130px;
    max-width: 285px;
    width: 100%;
}
.choose-tab .tab-content .choose-img-wrap .choose-text .title {
    margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
    .choose-tab .tab-content .choose-content {
        margin-top: 40px;
    }
}
.choose-tab .tab-content .choose-content p {
    max-width: 620px;
    width: 100%;
    margin-bottom: 40px;
}
.choose-tab .tab-content .choose-list {
    list-style: none;
}
.choose-tab .tab-content .choose-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.choose-tab .tab-content .choose-list li:not(:last-of-type) {
    margin-bottom: 15px;
}
.choose-tab .tab-content .choose-list li i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Call CSS
----------------------------------------*/
.call-section {
    height: 540px;
    position: relative;
    z-index: 2;
}
.call-section .bg-item .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    .call-section .bg-item .shape {
        display: none;
    }
}
.call-section .bg-item .call-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
}
.call-section .bg-item .call-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.call-section .bg-item .call-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: -1;
}
@media only screen and (max-width: 767px) {
    .call-section .bg-item .call-bg {
        width: 50%;
    }
}
.call-section .bg-item .call-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.call-content-wrap {
    background-image: linear-gradient(
        180deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    display: inline-flex;
    align-items: center;
    height: 90px;
    position: absolute;
    top: 50%;
    left: 61%;
    transform: translate(-50%, -50%);
    padding: 40px 30px 30px 30px;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .call-content-wrap {
        padding: 20px;
        max-width: 200px;
        width: 100%;
        left: 40%;
    }
}
.call-content-wrap .call-content .title {
    font-size: 18px;
    font-weight: 500;
    color: var(--rr-color-common-white);
    margin-bottom: 0;
}
.call-content-wrap .call-content .shape {
    background-color: #3f3129;
    height: 50px;
    width: 50px;
    position: absolute;
    bottom: -49px;
    left: 30px;
    transform: rotate(-180deg);
    z-index: -1;
    clip-path: polygon(51% 33%, 0% 100%, 100% 100%);
}
.call-content-wrap .call-content .icon {
    background-color: var(--rr-color-common-white);
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 30px;
}
.call-content-wrap .call-content .icon i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 20px;
}

/* !END: Call CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.top-grid-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 40px;
}
.top-grid-content .shop-tab-nav {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 15px;
}
.top-grid-content .shop-tab-nav .nav-tabs {
    border: none;
    border: 1px solid var(--rr-color-border-1);
    border-radius: 6px;
    padding: 10px 20px;
    column-gap: 15px;
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link {
    border: none;
    padding: 0;
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link svg {
    color: var(--rr-color-text-body);
    fill: var(--rr-color-text-body);
}
.top-grid-content .shop-tab-nav .nav-tabs .nav-link.active svg {
    color: var(--rr-color-heading-primary);
}
.top-grid-content .shop-select {
    color: var(--rr-color-text-body);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #bab7b5;
}
.top-grid-content .shop-select ul {
    left: auto;
    right: 0;
}

.shop-sidebar .filter-box .range-slider input {
    width: 100%;
    background-color: var(--rr-color-theme-primary);
    accent-color: var(--rr-color-theme-primary);
    border: none;
}
.shop-sidebar .filter-box .range-slider .range-slider-output {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.shop-sidebar .filter-box .range-slider .range-slider-output .price {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Award CSS
----------------------------------------*/
.award-wrap {
    background-color: #f6f2ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
@media only screen and (max-width: 992px) {
    .award-wrap {
        display: grid;
        grid-template-columns: 400px 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .award-wrap {
        grid-template-columns: 1fr;
    }
}
.award-wrap .award-img {
    max-width: 360px;
    height: 514px;
}
.award-wrap .award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 992px) {
    .award-wrap .award-img {
        display: none;
    }
}
.award-wrap .trophy-img {
    max-width: 535px;
    width: 100%;
    height: 514px;
}
@media only screen and (max-width: 992px) {
    .award-wrap .trophy-img {
        height: 470px;
    }
}
@media only screen and (max-width: 767px) {
    .award-wrap .trophy-img {
        height: 100%;
        width: 100%;
    }
}
.award-wrap .trophy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-items {
    width: 425px;
}
@media only screen and (max-width: 767px) {
    .award-items {
        width: 100%;
    }
}
.award-items .award-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .award-items .award-item {
        padding: 30px 20px;
    }
}
.award-items .award-item:not(:last-of-type) {
    border-bottom: 1px solid #cbc5c2;
}
.award-items .award-item .left-content .year {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-theme-primary);
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .award-items .award-item .left-content .year {
        font-size: 20px;
    }
}
.award-items .award-item .left-content .title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0px;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
    .award-items .award-item .left-content .title {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .award-items .award-item .left-content .title {
        font-size: 16px;
    }
}
.award-items .award-item p {
    text-align: center;
    margin-bottom: 0;
    display: none;
    -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;
    transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
    .award-items .award-item p {
        display: none;
    }
}
.award-items .award-item .icon {
    -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;
    transition: all 0.3s ease-in-out;
}
.award-items .award-item .icon img {
    width: 80px;
    height: 40px;
    -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;
    transition: all 0.3s ease-in-out;
}
.award-items .award-item .icon .hover-img {
    display: none;
}
.award-items .award-item:hover {
    background-color: #1e130c;
    width: 760px;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid #1e130c;
}
@media only screen and (max-width: 992px) {
    .award-items .award-item:hover {
        width: 700px;
    }
}
.award-items .award-item:hover .left-content .year {
    color: var(--rr-color-common-white);
}
.award-items .award-item:hover .left-content .title {
    color: var(--rr-color-common-white);
}
.award-items .award-item:hover p {
    color: var(--rr-color-common-white);
    display: block;
}
@media only screen and (max-width: 767px) {
    .award-items .award-item:hover p {
        display: none;
    }
}
.award-items .award-item:hover .icon .main-img {
    display: none;
}
.award-items .award-item:hover .icon .hover-img {
    display: block;
}

/* !END: Award CSS */
/**----------------------------------------
    START: Shop Details CSS
----------------------------------------*/
.product-details-wrap .product-slider-wrap {
    display: grid;
    grid-template-columns: 1fr 112px;
    grid-gap: 24px;
    padding: 30px;
    border: 1px solid rgba(30, 19, 12, 0.302);
}
@media only screen and (max-width: 767px) {
    .product-details-wrap .product-slider-wrap {
        grid-template-columns: 1fr;
    }
}
.product-details-wrap .product-gallary {
    position: relative;
    margin: 0;
    height: 100%;
}
.product-details-wrap .product-gallary .sale {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 100px;
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 2;
}
.product-details-wrap .product-gallary .gallary-item {
    background-color: var(--rr-color-common-white);
    height: 100%;
    height: 600px;
}
@media only screen and (max-width: 767px) {
    .product-details-wrap .product-gallary .gallary-item {
        height: 450px;
    }
}
.product-details-wrap .product-gallary .gallary-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-details-wrap .product-gallary-thumb {
    height: 375px;
}
@media only screen and (max-width: 767px) {
    .product-details-wrap .product-gallary-thumb {
        max-width: 100%;
        padding: 0 15px;
        left: 0;
    }
}
.product-details-wrap .product-gallary-thumb .thumb-item {
    height: 112px;
    width: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee0e3;
    cursor: pointer;
}
.product-details-wrap .product-gallary-thumb .thumb-item img {
    width: auto;
    height: auto;
    object-fit: inherit;
}
.product-details-wrap
    .product-gallary-thumb
    .swiper-slide-thumb-active
    .thumb-item {
    border: 1px solid var(--rr-color-theme-primary);
}

.product-info {
    padding-left: 20px;
}
@media only screen and (max-width: 992px) {
    .product-info {
        padding-left: 0;
    }
}
@media only screen and (max-width: 767px) {
    .product-info {
        padding-top: 40px;
    }
}
.product-info .category {
    color: var(--rr-color-theme-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: block;
}
.product-info .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
@media only screen and (max-width: 992px) {
    .product-info .title {
        font-size: 24px;
    }
}
.product-info .rating-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.product-info .rating-wrap .rating {
    display: flex;
    align-items: center;
    list-style: none;
}
.product-info .rating-wrap .rating li {
    color: var(--rr-color-heading-primary);
}
.product-info .rating-wrap .rating li:not(:last-of-type) {
    margin-right: 2px;
}
.product-info .rating-wrap span {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
}
.product-info .price {
    font-size: 22px;
    nav-down: 600;
    margin-bottom: 30px;
}
.product-info .price span {
    font-weight: 400;
    color: var(--rr-color-text-body);
    text-decoration: line-through;
    margin-left: 10px;
}
.product-info .product-desc-wrap {
    border-top: 1px solid rgba(30, 19, 12, 0.302);
    border-bottom: 1px solid rgba(30, 19, 12, 0.302);
    padding: 20px 0;
    margin-bottom: 20px;
}
.product-info .product-desc-wrap .desc {
    margin-bottom: 0;
    margin-bottom: 10px;
}
.product-info .product-desc-wrap .view-text {
    font-size: 16px;
    color: var(--rr-color-heading-primary);
}
.product-info .product-desc-wrap .view-text i {
    margin-right: 10px;
}
.product-info .item-left-line {
    margin-bottom: 30px;
}
.product-info .item-left-line .line {
    background: #ebebeb;
    height: 4px;
    width: 100%;
    position: relative;
    margin-top: 10px;
}
.product-info .item-left-line .line:before {
    background-color: var(--rr-color-theme-primary);
    content: "";
    width: 40%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.product-info .details-list {
    list-style: none;
}
.product-info .details-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--rr-color-heading-primary);
}
.product-info .details-list li i {
    width: 20px;
}
.product-info .details-list li:not(:last-of-type) {
    margin-bottom: 10px;
}
.product-info .product-btn {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin: 30px 0;
}
.product-info .product-btn input {
    background-color: var(--rr-color-theme-primary);
    color: #fff;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    text-align: center;
}
.product-info .product-btn .cart-btn-wrap-2 {
    width: 100%;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-common-white);
    width: 100%;
    border-radius: 100px;
    padding: 15px 30px;
    text-align: center;
    justify-content: center;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:before {
    display: none;
}
.product-info .product-btn .cart-btn-wrap-2 .cart-btn:hover {
    background-color: var(--rr-color-heading-primary);
    color: var(--rr-color-common-white);
}
.product-info .shop-details-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
}
.product-info .product-meta {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 15px;
}
.product-info .product-meta li a {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
}

.tab-navigation {
    border-bottom: 1px solid var(--rr-color-border-1);
    padding-bottom: 30px;
}

.tab-navigation button {
    color: var(--rr-color-text-body);
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0;
    padding: 0;
    margin-right: 30px;
    position: relative;
    -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;
    transition: all 0.3s ease-in-out;
}

.tab-navigation button.active,
.tab-navigation button:hover {
    color: var(--rr-color-heading-primary);
}

/*** 7.2 - Tab Description ***/
.tab-content .tab-pane {
    margin-top: 40px;
}
.tab-content .tab-pane .desc-wrap {
    display: grid;
    grid-gap: 50px;
    grid-template-columns: 1fr 535px;
}
@media only screen and (max-width: 992px) {
    .tab-content .tab-pane .desc-wrap {
        grid-template-columns: 1fr;
    }
}
.tab-content .tab-pane .desc-wrap .right-content img {
    height: 220px;
    max-width: 535px;
    width: 100%;
    object-fit: cover;
}

.description-meta {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
}

.description-meta li span {
    color: var(--rr-color-theme-primary);
    font-weight: 600;
    margin-right: 5px;
}

/*** 7.3 - Tab Additional Information ***/
.product-table {
    background-color: var(--rr-color-grey-1);
    margin: 0;
    margin-top: 40px;
    --bs-table-bg: transparent;
}
.product-table:not(caption) > * > * {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table > :not(:last-child) > :last-child > * {
    border-color: var(--rr-color-border-1);
}

.product-table tbody tr td,
.product-table thead tr th {
    text-align: center;
}

.product-table tbody tr td:not(:last-of-type),
.product-table thead tr th:not(:last-of-type) {
    border-right: 1px solid var(--rr-color-border-1);
}

.product-table tbody tr td:not(:last-of-type) {
    border-bottom: 1px solid var(--rr-color-border-1);
}

.product-table thead tr th {
    color: var(--rr-color-theme-primary);
}

.product-table tbody tr td {
    color: var(--rr-color-heading-primary);
    padding: 15px 0;
}

/*** 7.4 - Tab Review ***/
.review .comment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.review .comment-list > li {
    background: linear-gradient(
        90deg,
        rgba(105, 85, 180, 0.1) 0%,
        rgba(105, 85, 180, 0.3) 50%,
        rgba(105, 85, 180, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-gap: 30px;
    align-items: center;
    padding: 40px;
}

.review .comment-list .comment-thumb img {
    border-radius: 50%;
}

.review .comment-list .comment-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review .comment-list .comment-text h3 span {
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
    display: block;
}

.review .comment-list .comment-text p {
    margin: 0;
}

.reviewr-wrap {
    padding-right: 20px;
}
@media only screen and (max-width: 992px) {
    .reviewr-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
}
.reviewr-wrap .review-list .review-item {
    display: grid;
    align-items: center;
    grid-template-columns: 90px 1fr;
    grid-gap: 15px;
    padding: 30px;
    border: 1px solid rgba(30, 19, 12, 0.302);
}
@media only screen and (max-width: 767px) {
    .reviewr-wrap .review-list .review-item {
        grid-template-columns: 1fr;
    }
}
.reviewr-wrap .review-list .review-item:not(:last-of-type) {
    margin-bottom: 30px;
}
.reviewr-wrap .review-list .review-item img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}
.reviewr-wrap .review-list .review-item .content .content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}
.reviewr-wrap .review-list .review-item .content .content-top .name span {
    color: var(--rr-color-text-body);
    font-size: 15px;
    display: block;
    margin-top: 7px;
}
.reviewr-wrap .review-list .review-item .content .content-top ul {
    list-style: none;
}
.reviewr-wrap .review-list .review-item .content .content-top ul li {
    display: inline-flex;
    color: var(--rr-color-theme-primary);
}
.reviewr-wrap
    .review-list
    .review-item
    .content
    .content-top
    ul
    li:not(:last-of-type) {
    margin-right: 2px;
}
.reviewr-wrap .review-list .review-item .content p {
    margin-bottom: 0;
}

.review-form-wrap .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.review-form-wrap .publish {
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}
.review-form-wrap .review-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.review-form-wrap .review-box span {
    color: var(--rr-color-heading-primary);
}
.review-form-wrap .review-box .review {
    list-style: none;
}
.review-form-wrap .review-box .review li {
    display: inline-flex;
    color: var(--rr-color-theme-primary);
}
.review-form-wrap .review-box .review li:not(:last-of-type) {
    margin-right: 2px;
}
.review-form-wrap .review-form {
    background-color: transparent;
    padding: 0;
    border: none;
    margin-top: 40px;
}
.review-form-wrap .checkbox-wrap {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.review-form-wrap .checkbox-wrap input {
    width: 15px;
    height: 15px;
    accent-color: var(--rr-color-theme-primary);
}
.review-form-wrap .checkbox-wrap label {
    color: var(--rr-color-text-body);
    cursor: pointer;
    margin-left: 10px;
}
.review-form-wrap .submit-btn .rr-primary-btn {
    padding: 15px 35px;
}

/* !END: Shop Details CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.appointnment-list-wrap {
    background-color: #f6f2ef;
    max-width: 650px;
    width: 100%;
    padding: 60px 70px;
    margin-right: 20px;
}
@media (max-width: 1170px) {
    .appointnment-list-wrap {
        margin-right: 0;
    }
}
.appointnment-list-wrap .title {
    text-align: center;
    margin-bottom: 40px;
}
.appointnment-list-wrap .appointnment-list li {
    font-family: var(--rr-ff-heading);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.appointnment-list-wrap .appointnment-list li:not(:last-of-type) {
    margin-bottom: 20px;
}
.appointnment-list-wrap .appointnment-list li span {
    background-color: #f6f2ef;
}
.appointnment-list-wrap .appointnment-list li span:nth-child(1) {
    padding-right: 20px;
}
.appointnment-list-wrap .appointnment-list li span:nth-child(2) {
    padding-left: 20px;
}
.appointnment-list-wrap .appointnment-list li:before {
    background-color: #cbc5c2;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}
.appointnment-list-wrap .appointment-btn {
    margin-top: 40px;
}

.appointment-content {
    margin-left: 20px;
}
@media (max-width: 1170px) {
    .appointment-content {
        margin-left: 0;
    }
}
.appointment-content .appointment-items {
    max-width: 375px;
    width: 100%;
}
.appointment-content .appointment-items .appointment-item {
    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
}
.appointment-content .appointment-items .appointment-item:not(:last-of-type) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d0ce;
}
.appointment-content .appointment-items .appointment-item .icon {
    background-color: #f6f2ef;
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.appointment-content .appointment-items .appointment-item .content span {
    color: #8b827d;
    display: block;
    font-size: 16px;
}
.appointment-content .appointment-items .appointment-item .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-heading-primary);
    font-size: 18px;
    font-weight: 600;
}

/* !END: Page Header CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
    display: none;
}

.sidebar-trigger {
    display: block;
}

.sidebar-area {
    background-color: var(--rr-color-common-white);
    border-left: 1px solid var(--rr-color-border-1);
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    width: 450px;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: scroll;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 60px 40px;
}

.open-sidebar .sidebar-area {
    right: 0;
    visibility: visible;
    transform: translate(0);
}

.sidebar-trigger.close {
    position: absolute;
    right: 30px;
    top: 63px;
    color: var(--grey-color);
    -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;
    transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
    color: var(--rr-color-theme-primary);
}

.sidebar-trigger.close svg {
    fill: currentColor;
    stroke: none;
    width: 20px;
    height: 20px;
}

.sidebar-content .site-logo {
    margin-bottom: 40px;
}

.sidebar-content .site-logo img {
    max-width: 200px;
}

.sidebar-content .sidebar-info li {
    font-size: 18px;
}

.sidebar-content .sidebar-social li {
    display: inline-block;
    margin: 0 3px;
    padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
    display: inline-block;
    border: 1px solid var(--border-1);
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sidebar-content .sidebar-social li a:after {
    background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 59%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
    border: 1px solid var(--primary-color);
    color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
    visibility: visible;
    opacity: 1;
    transition: 0.4s;
    transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
    margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ccc;
}

.sidebar-area::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area-webkit-::selection {
    background-color: #999;
    color: #fff;
}

.sidebar-area::-moz-selection {
    background-color: #999;
    color: #fff;
}

#sidebar-overlay {
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: calc(100% - 400px);
    z-index: -1;
}

.open-sidebar #sidebar-overlay {
    opacity: 1;
    z-index: 1002;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

.side-menu-list li a {
    font-size: 15px;
}

.side-menu-list li p {
    font-size: 15px;
}

@media (max-width: 992px) {
    .sidebar-content .list-post-area.list-2 {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
    .sidebar-area {
        width: 400px;
        padding: 60px 30px;
        justify-content: center;
    }
    .side-menu-logo {
        margin-bottom: 50px;
    }
    .side-menu-wrap {
        margin-bottom: 70px;
    }
    .side-menu-header h3 {
        display: none;
    }
    .side-menu-list li a {
        font-size: 14px;
    }
    .side-menu-list li p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .sidebar-area {
        width: 320px;
        padding: 60px 20px 60px 20px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
        height: 90px;
        width: 90px;
    }
    .sidebar-content .list-post-area.list-2 .list-post-card {
        grid-template-columns: 90px 1fr;
    }
    .side-menu-list li a {
        font-size: 13px;
    }
    .side-menu-list li p {
        font-size: 13px;
    }
}
.side-menu-logo {
    max-width: 200px;
}
@media only screen and (max-width: 767px) {
    .side-menu-logo {
        max-width: 150px;
    }
}

.side-menu-about {
    margin: 50px 0 50px 0;
}
@media only screen and (max-width: 992px) {
    .side-menu-about {
        display: none;
    }
}

.side-menu-about p {
    margin: 25px 0;
}

.side-menu-header h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
    margin-bottom: 20px;
}

.side-menu-list {
    margin: 25px 0 35px 0;
}

.side-menu-list li {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.side-menu-list li:not(:last-of-type) {
    margin-bottom: 20px;
}

.side-menu-list li i {
    background-color: var(--rr-color-theme-primary);
    font-size: 12px;
    color: var(--rr-color-common-white);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.side-menu-list li p {
    font-weight: 600;
    padding-left: 10px;
    margin-bottom: 0;
}

.side-menu-list li a {
    color: var(--rr-color-heading-primary);
    padding-left: 10px;
}
.side-menu-list li a:hover {
    color: var(--rr-color-heading-primary);
}

.side-menu-social {
    margin-top: 40px;
    list-style: none;
}
.side-menu-social li {
    display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
    margin-right: 10px;
}
.side-menu-social li a {
    background-color: var(--rr-color-border-1);
    font-size: 17px;
    color: var(--rr-color-common-white);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.side-menu-social li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-heading-primary);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-img {
    width: 100%;
    height: 400px;
    position: relative;
}
.blog-details-img .date {
    background-color: var(--rr-color-common-white);
    position: absolute;
    bottom: 0;
    left: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: var(--rr-color-heading-primary);
    font-weight: 500;
    line-height: 1;
    padding: 20px 10px;
    z-index: 5;
}
.blog-details-img .overlay {
    background-color: rgba(31, 20, 12, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.blog-details-img .play-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.blog-details-img .play-btn a {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    height: 80px;
    width: 80px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.blog-details-img .play-btn a .ripple {
    height: 80px;
    width: 80px;
}
.blog-details-img .play-btn a .ripple:before,
.blog-details-img .play-btn a .ripple:after {
    height: 80px;
    width: 80px;
}
.blog-details-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
@media only screen and (max-width: 992px) {
    .blog-details-img {
        height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .blog-details-img {
        height: 300px;
    }
}

.blog-details-content .details-title {
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
}
@media only screen and (max-width: 992px) {
    .blog-details-content .details-title {
        font-size: 24px;
    }
}
.blog-details-content .post-meta li {
    font-family: var(--rr-ff-body);
    text-transform: capitalize;
    font-size: 16px;
    color: var(--rr-color-text-body);
    font-weight: 500;
}
.blog-details-content .post-meta li i {
    background-image: linear-gradient(0deg, #9a8478 0%, #1e130c 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.blog-details-content .details-img-wrap {
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 24px;
}
.blog-details-content .details-img-wrap img {
    max-width: 430px;
    width: 100%;
}
@media (max-width: 1170px) {
    .blog-details-content .details-img-wrap img {
        max-width: 280px;
    }
}
@media only screen and (max-width: 992px) {
    .blog-details-content .details-img-wrap img {
        max-width: 350px;
    }
}
.blog-details-content .blog-details-list {
    margin-left: 20px;
    margin-bottom: 30px;
}
.blog-details-content .blog-details-list li {
    font-size: 16px;
    font-weight: 400;
}

blockquote {
    background-color: var(--rr-color-heading-primary);
    overflow: hidden;
    display: grid;
    align-items: center;
    grid-template-columns: 60px 1fr;
    grid-gap: 20px;
    padding: 20px 40px;
}
blockquote .quote {
    width: 60px;
    height: 50px;
}
blockquote .quote img {
    width: 60px;
    height: 50px;
}
blockquote p {
    color: #cbc5c5;
    margin-bottom: 0;
}

.tags {
    margin-top: 40px;
}
.tags .social-list-wrap {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.tags .social-list-wrap .follow {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}
.tags .social-list-wrap .social-list {
    display: flex;
    align-items: center;
    column-gap: 15px;
    list-style: none;
}
.tags .social-list-wrap .social-list li:not(:last-of-type) {
    margin-right: 5px;
}
.tags .social-list-wrap .social-list li a {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
}
.tags .social-list-wrap .social-list li a:hover {
    color: var(--rr-color-heading-primary);
}

.comments-area {
    margin-top: 50px;
}
.comments-area .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.comment-item {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 110px 1fr;
    grid-gap: 25px;
}
@media only screen and (max-width: 767px) {
    .comment-item {
        grid-template-columns: 1fr;
    }
}
.comment-item .comment-thumb img {
    height: 100%;
    width: 110px;
    object-fit: cover;
    object-position: top;
}
.comment-item .comment-info .author {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.comment-item .comment-info p {
    font-size: 16px;
    margin-bottom: 0;
}
.comment-item .area-bottom {
    display: flex;
    align-items: center;
    margin-top: 10px;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.comment-item .area-bottom .comments-meta {
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    font-weight: 500;
}
.comment-item .area-bottom .comments-meta span {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.comment-item .area-bottom .reply {
    color: var(--rr-color-theme-primary);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.comment-item:not(:last-of-type) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--rr-color-border-1);
}

.blog-contact-form {
    background-color: transparent;
    margin-top: 50px;
}
.blog-contact-form .title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
}
.blog-contact-form .request-form .form-item {
    position: relative;
    margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item .form-title {
    font-family: var(--rr-ff-body);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}
.blog-contact-form .request-form .form-item .form-control {
    background-color: #f6f2ef;
    color: var(--rr-color-text-body);
    font-size: 18px;
    font-weight: 500;
    box-shadow: none;
    border: none;
    padding: 17px 20px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 0;
}
.blog-contact-form
    .request-form
    .form-item
    .form-control::-webkit-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 18px;
    font-weight: 500;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 18px;
    font-weight: 500;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
    color: var(--rr-color-text-body);
    font-size: 18px;
    font-weight: 500;
}
.blog-contact-form
    .request-form
    .form-item
    .form-control:-ms-input-placeholder {
    color: var(--rr-color-text-body);
    font-size: 18px;
    font-weight: 500;
}

.sidebar-widget {
    border: 1px solid #d6d4d3;
}
.sidebar-widget:not(:last-of-type) {
    margin-bottom: 30px;
}
.sidebar-widget .widget-title {
    background-color: #f6f2ef;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding: 16px 30px;
    border-bottom: 1px solid #d6d4d3;
    margin-bottom: 0;
}
.sidebar-widget .sidebar-widget-inner {
    padding: 20px 30px;
}
.sidebar-widget .download-list {
    list-style: none;
}
.sidebar-widget .download-list li:not(:last-of-type) {
    margin-bottom: 15px;
}
.sidebar-widget .download-list li button {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d6d4d3;
    width: 100%;
    padding: 10px 20px;
}
.sidebar-widget .download-list li button i {
    color: var(--rr-color-theme-primary);
}
.sidebar-widget .search-form {
    position: relative;
}
.sidebar-widget .search-form .form-control {
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-heading-primary);
    font-size: 16px;
    border: 1px solid #d6d4d3;
    box-shadow: none;
    padding: 14.5px 0;
    padding-left: 25px;
    padding-right: 30px;
    border-radius: 0;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .search-form .search-btn {
    background-image: linear-gradient(
        124deg,
        rgb(154, 132, 120) 0%,
        rgb(30, 19, 12) 100%
    );
    color: var(--rr-color-common-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 45px;
    width: 45px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
}
.sidebar-widget .category-list {
    list-style: none;
}
.sidebar-widget .category-list li {
    padding: 15px 30px;
}
.sidebar-widget .category-list li:not(:last-of-type) {
    border-bottom: 1px solid #d6d4d3;
}
.sidebar-widget .category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.sidebar-widget .category-list li a:not(:last-of-type) {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rr-color-border-1);
}
.sidebar-widget .category-list li a i {
    color: var(--rr-color-theme-primary);
    visibility: hidden;
    opacity: 0;
    margin-right: 10px;
    -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;
    transition: all 0.3s ease-in-out;
}
.sidebar-widget .category-list li a:hover {
    color: var(--rr-color-theme-primary);
}
.sidebar-widget .category-list li a:hover i {
    color: var(--rr-color-theme-primary);
    visibility: visible;
    margin-right: 0;
    opacity: 1;
}
.sidebar-widget .blog-gallary-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px;
}
@media only screen and (max-width: 992px) {
    .sidebar-widget .blog-gallary-wrap {
        display: flex;
        align-items: center;
        column-gap: 10px;
        row-gap: 10px;
        flex-wrap: wrap;
    }
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb {
    position: relative;
    z-index: 1;
    height: 117px;
    width: 117px;
    border: 3px solid var(--rr-color-heading-primary);
    border-radius: 25px;
    overflow: hidden;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:before {
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -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;
    transition: all 0.3s ease-in-out;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb .gallary-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    -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;
    transition: all 0.3s ease-in-out;
    z-index: 2;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb .gallary-btn a {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-heading-primary);
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rr-color-heading-primary);
    border-radius: 50%;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:hover:before {
    visibility: visible;
    opacity: 1;
}
.sidebar-widget .blog-gallary-wrap .gallary-thumb:hover .gallary-btn {
    transform: translate(-50%, -50%) scale(1);
}
.sidebar-widget .tags {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    row-gap: 20px;
    list-style: none;
    column-gap: 0;
    margin: 0;
    padding: 0;
}
.sidebar-widget .tags li:not(:last-of-type) {
    margin-right: 10px;
}
.sidebar-widget .tags li a {
    display: inline-block;
    color: var(--rr-color-heading-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #d6d4d3;
}
.sidebar-widget .tags li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-theme-primary);
}
.sidebar-widget .sidebar-post {
    display: grid;
    align-items: center;
    grid-template-columns: 70px 1fr;
    grid-gap: 0px;
}
.sidebar-widget .sidebar-post:not(:last-of-type) {
    margin-bottom: 20px;
}
.sidebar-widget .sidebar-post img {
    width: 70px;
    height: 100%;
    object-fit: cover;
}
.sidebar-widget .sidebar-post .post-content {
    padding-left: 20px;
}
@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content {
        padding-left: 10px;
    }
}
.sidebar-widget .sidebar-post .post-content .post-meta {
    display: flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 5px;
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta {
        column-gap: 5px;
    }
}
.sidebar-widget .sidebar-post .post-content .post-meta li {
    font-family: var(--rr-ff-body);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .post-meta li {
        font-size: 13px;
    }
}
.sidebar-widget .sidebar-post .post-content .title {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
    .sidebar-widget .sidebar-post .post-content .title {
        font-size: 14px;
    }
}
.sidebar-widget .sidebar-post .post-content .title a {
    background: linear-gradient(
        var(--rr-color-heading-primary) 0%,
        var(--rr-color-heading-primary) 98%
    );
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    -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;
    transition: all 0.3s ease-in-out;
}
.sidebar-widget .sidebar-post .post-content .title a:hover {
    color: var(--rr-color-heading-primary);
    background-size: 100% 2px;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
    background-color: var(--rr-color-grey-2);
    position: relative;
    z-index: 1;
    padding-top: 50px;
}
.footer-section .bg-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
    .footer-top {
        margin-bottom: 50px;
    }
}
.footer-top .footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}
.footer-top .footer-social ul li {
    display: inline-flex;
    margin-right: 3px;
}
.footer-top .footer-social ul li a {
    background-color: #362c25;
    color: var(--rr-color-common-white);
    width: 40px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-top .footer-social ul li a:hover {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
}
.footer-top .footer-social .contact-box {
    background-color: var(--rr-color-theme-primary);
    display: grid;
    align-items: center;
    grid-gap: 10px;
    grid-template-columns: 35px 1fr;
    padding: 8px 25px;
    margin-left: 4px;
}
.footer-top .footer-social .contact-box .icon {
    background-color: #1f140c;
    color: var(--rr-color-common-white);
    height: 35px;
    width: 35px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-top .footer-social .contact-box .content span {
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.footer-top .footer-social .contact-box .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

.footer-wrap {
    margin-bottom: 80px;
}
@media (max-width: 1170px) {
    .footer-wrap {
        margin-bottom: 0;
    }
}

@media (max-width: 1170px) {
    .footer-widget {
        margin-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .footer-widget {
        margin-bottom: 50px;
    }
}
.footer-widget .widget-header {
    margin-bottom: 3px;
}
@media only screen and (max-width: 767px) {
    .footer-widget .widget-header {
        margin-bottom: 25px;
    }
}
.footer-widget .widget-header .widget-title {
    color: #ebfdf9;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-family: var(--rr-ff-body);
}
.footer-widget .widget-header .widget-title:before {
    background-color: #fb7616;
    content: "";
    height: 1px;
    width: 80px;
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}
.footer-widget .title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 30px;
    text-transform: uppercase;
}
.footer-widget .title span {
    color: var(--rr-color-text-body);
    display: block;
    margin-top: 10px;
    text-transform: inherit;
    font-weight: 400;
}
.footer-widget .footer-list {
    list-style: none;
}
.footer-widget .footer-list li {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list li a {
    font-family: var(--rr-ff-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.footer-widget .footer-list li a:hover {
    color: var(--rr-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
    margin-bottom: 20px;
}
.footer-widget p {
    color: #efe3e3;
}
.footer-widget .footer-form {
    position: relative;
    margin-top: 30px;
}
.footer-widget .footer-form .form-control {
    background-color: #372c26;
    padding: 19px 80px 19px 20px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
    border: none;
    border-radius: 0px;
}
.footer-widget .footer-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-form .submit {
    background-color: var(--rr-color-theme-primary);
    color: var(--rr-color-common-white);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    height: 50px;
    font-size: 13px;
    font-weight: 600;
    padding: 0 20px;
}
.footer-widget .sidebar-post {
    display: grid;
    align-items: center;
    grid-template-columns: 80px 1fr;
    grid-gap: 10px;
}
.footer-widget .sidebar-post .post-content .post-meta {
    margin-bottom: 0;
}
.footer-widget .sidebar-post .post-content .post-meta li {
    font-family: var(--rr-ff-heading);
    color: #b7b3b4;
    font-size: 14px;
    font-weight: 500;
    text-transform: inherit;
}
.footer-widget .sidebar-post .post-content .title {
    color: var(--rr-color-common-white);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 5px;
    line-height: 1.5;
}
.footer-widget .footer-download-app {
    display: flex;
    align-items: center;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}
.footer-widget .footer-download-app .download-app {
    background-color: #362b25;
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
    padding: 10px 30px 15px 30px;
}
.footer-widget .footer-download-app .download-app .icon {
    color: var(--rr-color-theme-primary);
    font-size: 32px;
}
.footer-widget .footer-download-app .download-app .content span {
    color: var(--rr-color-theme-primary);
    font-size: 14px;
    font-weight: 400;
}
.footer-widget .footer-download-app .download-app .content .download-title {
    font-size: 18px;
    color: var(--rr-color-common-white);
    margin-bottom: 0;
}
.footer-widget .footer-items .footer-item {
    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr;
    grid-gap: 15px;
    border: 1px solid #4b423d;
    padding: 12px;
    margin-bottom: 15px;
}
.footer-widget .footer-items .footer-item .icon {
    color: var(--rr-color-common-white);
    font-size: 18px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4b423d;
}
.footer-widget .footer-items .footer-item .content span {
    color: #8b827d;
    display: block;
    font-size: 16px;
}
.footer-widget .footer-items .footer-item .content a {
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    font-size: 18px;
}
.footer-widget.footer-col-2 {
    padding-left: 40px;
}
@media (max-width: 1170px) {
    .footer-widget.footer-col-2 {
        padding-left: 0;
    }
}
.footer-widget.footer-col-2 .footer-list li a {
    font-size: 16px;
    font-weight: 500;
}
@media only screen and (max-width: 767px) {
    .footer-widget.footer-col-2 .footer-list li a {
        font-size: 15px;
    }
}
.footer-widget.footer-col-3 {
    padding-left: 40px;
}
@media (max-width: 1170px) {
    .footer-widget.footer-col-3 {
        padding-left: 0;
    }
}

.copyright-area {
    background-color: #e2e7db;
}

.copyright-content {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
}
@media only screen and (max-width: 992px) {
    .copyright-content {
        justify-content: center;
    }
}
.copyright-content p {
    font-family: var(--rr-ff-body);
    color: #0e557c;
    font-size: 18px;
    margin: auto;
    text-align: center;
    justify-content: center;
    display: flex;
}
.copyright-content p span {
    color: var(--rr-color-theme-primary);
}
.copyright-content .copyright-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
@media only screen and (max-width: 767px) {
    .copyright-content .copyright-social {
        justify-content: center;
    }
}
.copyright-content .copyright-social span {
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-right: 30px;
}
@media only screen and (max-width: 767px) {
    .copyright-content .copyright-social span {
        margin-right: 0;
    }
}
.copyright-content .copyright-social ul li {
    display: inline-flex;
    color: var(--rr-color-common-white);
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.copyright-content .copyright-social ul li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 10px;
}
.copyright-content .copyright-social ul li:not(:last-of-type):before {
    color: var(--rr-color-common-white);
    content: "-";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}

.footer-2 {
    padding-top: 120px;
}
.footer-2 .footer-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.footer-3 .copyright-area {
    background-color: transparent;
    margin-bottom: 40px;
}
.footer-3 .copyright-area .copyright-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
}
@media only screen and (max-width: 767px) {
    .footer-3 .copyright-area .copyright-content {
        padding: 30px 20px;
    }
}

/* !END: Theme Footer CSS */

/*# sourceMappingURL=main.css.map */

/* Mega Menu Styling */
.navbar-nav {
    margin: auto;
}

.dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mega-menu .dropdown-menu {
    width: 800px;
    margin: auto;
}

.mega-menu:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px 10px;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
    }

    .mega-menu:hover .dropdown-menu {
        display: none;
    }

    .mega-menu .dropdown-toggle {
        cursor: pointer;
    }

    .mega-menu .dropdown-toggle:focus + .dropdown-menu,
    .mega-menu .dropdown-toggle:active + .dropdown-menu {
        display: block;
    }
}

/* css new */
/* Mega Menu Styling */
.header .primary-header-inner .header-menu-wrap ul.mega-menu {
    width: 900px;
}
.mega-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mega-menu .row {
    display: flex;
    justify-content: space-between;
}

.mega-menu .col-md-4 {
    flex: 1;
    padding: 10px;
}

.mega-menu li {
    list-style: none;
}

.mega-menu li a {
    color: #333;
    display: block;
    transition: 0.3s;
}

.mega-menu li a:hover {
    color: #007bff;
}

/* Show Mega Menu on Hover */
.mobile-menu-items ul li:hover .mega-menu {
    display: block;
}

/* Mobile View Adjustments */
@media (max-width: 991px) {
    .mobile-menu-items ul {
        flex-direction: column;
        text-align: center;
    }

    .mega-menu {
        position: static;
        width: 100%;
        display: none;
        box-shadow: none;
        transform: none;
    }

    .mobile-menu-items ul li:focus-within .mega-menu,
    .mobile-menu-items ul li:active .mega-menu {
        display: block;
    }
}

/* new style start */
/* Mega Menu Center Alignment */
.dropdown-menu {
    width: 800px;
    left: 50%;
    transform: translateX(-50%) !important;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute !important;
    top: 100%;
    z-index: 1000;
}

li.sub_menu a {
    background: #003b5c;
    color: #fff !important;
}
.header .primary-header-inner .header-menu-wrap ul .mega-menu li a {
    color: #000;
}
a {
    text-decoration: none !important;
}
ul.top-social {
    padding: 1px;
    padding: 1px;
    display: flex;
    align-items: center;
    position: relative;
    margin: auto;
    justify-content: center;
}
.bg-whitee {
    background-color: #0e557c;
}
ul.footer-list {
    padding: 0px;
}
.footer-list li i {
    font-size: 35px;
    color: #377cd4;
    background: aliceblue;
    border-radius: 50%;
    padding: 3px;
}
.about-img-wrap img {
    border: 1px solid #00806640;
    padding: 10px;
    background: aliceblue;
    border-radius: 20px;
    background: radial-gradient(
        circle,
        rgb(20 91 123) 10%,
        rgb(94 168 201) 100%
    );
}

.rrr-primary-btn {
    background-image: linear-gradient(
        to right,
        #1f140d,
        #3a2d26,
        #58473f,
        #77645a,
        #988276
    );
    background: #cf722f;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 35px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.shape img {
    width: 100%;
    opacity: 0.5;
}
.media_ {
    padding: 20px;
}

/* conditions start*/
.iframe_ iframe {
    border-radius: 20px;
}

.media_ {
    background: #e2e7db;
}
/* conditions */

.divider {
    background-image: url("../img/icons/divider__.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.media_ .row > .col-md-4:first-child {
    position: relative;
}
.media_ .row > .col-md-4:nth-child(2) {
    position: relative;
}

.media_ .row > .col-md-4:first-child::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -11px;
    padding: 10px;
    width: 18px;
    height: 70%;
    /* margin: 10px; */
    background: url(../img/icons/divider__.png) no-repeat center;
    background-size: cover;
}
.media_ .row > .col-md-4:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50px;
    right: -11px;
    padding: 10px;
    width: 18px;
    height: 70%;
    /* margin: 10px; */
    background: url(../img/icons/divider__.png) no-repeat center;
    background-size: cover;
}
.iframe_ {
    margin: 16px;
}
@media only screen and (max-width: 992px) {
    .section-heading {
        margin-bottom: 50px;
    }
    .media_ .row > .col-md-4:first-child::after {
        display: none;
    }
    .media_ .row > .col-md-4:nth-child(2)::after {
        display: none;
    }
    iframe {
        width: 100%;
    }
}

/* main banner */
.main-slider-three {
    position: relative;
    padding-top: 220px;
    background-image: linear-gradient(to top, #425ba1, #fb8fb7);
    background-image: url(../img/banners-img/header_bg.jpg);
    background-size: cover;
    background-position: left center;
}

.main-slider-three:before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -2px;
    width: 100%;
    height: 254px;
    background: url(../img/banners-img/banner-bottom.png);
    background-repeat: repeat-x;
}

.main-slider-three:after {
    position: absolute;
    content: "";
    right: 0px;
    bottom: -2px;
    /* width:706px; */
    height: 405px;
    z-index: -1;
    background: url(../images/main-slider/curve.png);
    background-repeat: no-repeat;
}

.main-slider-three .content-column {
    position: relative;
    text-align: center;
}

.main-slider-three .content-column .inner-column {
    position: relative;
}

.main-slider-three .content-column h2 {
    position: relative;
    color: #ffffff;
    font-size: 55px;
    text-shadow: 3px 1px #6b857f;
    font-weight: 700;
    line-height: 1.1em;

    opacity: 0;
    /* text-shadow: 3px 3px 1px #00000025; */
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);
}
.main-slider-three .swiper-slide-active .content-column h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0ms;
}
.main-slider-three .content-column h3 {
    font-family: "Poppins", sans-serif;
    text-shadow: 3px 1px #6b857f;
    position: relative;
    color: #ffffff;
    font-size: 26px;
    padding-top: 16px;
    font-weight: 600;
    line-height: 1.1em;
    opacity: 0;
    text-transform: uppercase;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);
}
.main-slider-three .swiper-slide-active .content-column h3 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0ms;
}
.main-slider-three .swiper-slide-active .content-column h3 span {
    font-size: 36px;
    text-transform: none;
    padding-top: 12px;
    font-weight: 600;
}
.main-slider-three .content-column .text {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8em;
    margin-top: 30px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(-80px);
    -moz-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    -o-transform: translateX(-80px);
    transform: translateX(-80px);
}
.main-slider-three .content-column .text.t2 {
    text-transform: none;
}
.main-slider-three .swiper-slide-active .content-column .text {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 600ms;
}

.main-slider-three .content-column .btn-box {
    position: relative;
    margin-top: 40px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.main-slider-three .swiper-slide-active .content-column .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1200ms;
}

.main-slider-three .content-column .btn-box .theme-btn {
    margin-right: 20px;
}

.main-slider-three .content-column .btn-box .appointment-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 7px 37px 9px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 50px;
    overflow: hidden;
    background: #003b5c;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

.main-slider-three .content-column .btn-box .appointment-btn:hover {
    background: none;
    color: #ffffff;
}

.main-slider-three .content-column .btn-box .services-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 7px 37px 9px;
    font-weight: 400;
    overflow: hidden;
    border-radius: 50px;
    overflow: hidden;
    background: none;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

.main-slider-three .content-column .btn-box .services-btn:hover {
    background: #ffffff;
    color: #fb8fb7;
    font-weight: 600;
}

.main-slider-three .image-column {
    position: relative;
}

.main-slider-three .image-column .inner-column {
    position: relative;
    text-align: center;
}

.main-slider-three .image-column .image {
    position: relative;
    top: -43px;
    opacity: 0;
    right: 0px;
    width: 450px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
}

.main-slider-three .swiper-slide-active .image-column .image {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 0ms;
}

.main-slider-three .image-column .image img {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background: aliceblue;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.main-slider-three .image-column .image:before {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
}

.main-slider .swiper-button-next {
    right: 40px;
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 49px;
    border-radius: 50%;
    text-align: center;
    background-image: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #004cda;
}

.main-slider .swiper-button-next:before {
    position: absolute;
    content: "\f14e";
    left: 0px;
    top: 0px;
    width: 50px;
    color: #004cda;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-family: "Flaticon";
}

.main-slider .swiper-button-prev {
    left: 40px;
    width: 50px;
    height: 50px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 49px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-image: none;
    border: 1px solid #004cda;
}

.main-slider .swiper-button-prev:before {
    position: absolute;
    content: "\f14f";
    left: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    color: #004cda;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-family: "Flaticon";
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background-color: #004cda;
}

.main-slider .swiper-button-next:hover::before,
.main-slider .swiper-button-prev:hover::before {
    color: #ffffff;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    opacity: 0.5;
    color: #fff !important;
    font-size: 20px;
    background-image: none !important;
    right: 30px;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    opacity: 0.5;
    color: #fff !important;
    font-size: 20px;
    background-image: none !important;
    left: 30px;
}

/* main banner end */
/*  */

.list_solid li {
    padding: 1px 3px 8px;
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
    font-family: var(--rr-ff-body);
    color: #080707;
    list-style: none;
    display: flex;
    align-items: start;
    line-height: 40px;
    gap: 10px;
    border-bottom: 1px dashed #011936ff;
    padding-bottom: 13px;
    padding-top: 13px;
}

.list_solid i {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-radius: 50%;
    min-width: 37px;
    height: 35px;
    color: #003b5c;
    background: #fdfdfd;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.team-item-2 .team-content .title a {
    font-size: 20px;
    font-weight: 600;
    /* color: var(--rr-color-common-white); */
    font-family: var(--rr-ff-body);
    color: #fff;
    background: #003b5c;
    padding: 4px 5px;
    border-radius: 13px 13px;
    border: 3px dotted #913f59;
}
.view_all {
    background: #003b5c;
    font-family: var(--rr-ff-body);
    color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 35px;
    border-radius: 100px;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
}
.bg-lightt {
    background-color: #f1f7e9 !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
    display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
    display: none;
}
.team-thumb img {
    border-radius: 50%;
}
.phone_no {
    color: #000;
}

/* treatments css */
table {
    margin: 0 auto;
}
table td {
    padding: 50px 21px;
    border: 1px solid #f6f4ee70;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
table td:hover {
    /* background:#003b5c; */
}
.treatment_contant {
    padding: 20px;
}
.treatments_ {
    background-image: url(../img/banners-img/treatmens_bg_banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    padding: 70px 0px;
}
.Treatments-title {
    color: #fff;
    font-size: 40px;
    padding-bottom: 10px;
    font-family: var(--rr-ff-body);
}
.treatment-title-wrap p {
    color: #fff3cf;
    font-size: 21px;
    padding-bottom: 30px;
    font-family: var(--rr-ff-body);
}
.list_solid {
    padding-left: 0px;
    margin-bottom: 33px;
}
.condition-title-wrap h2 {
    font-weight: 600;
    text-align: center;
    color: #003b5c;
    font-size: 40px;
    /* padding: 40px 0px; */
    font-family: var(--rr-ff-body);
    padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
    .main-slider-three {
        position: relative;
        padding-top: 100px;
        background-image: linear-gradient(to top, #425ba1, #fb8fb7);
        background-image: url(../img/banners-img/header_bg.jpg);
        background-size: cover;
        background-position: left center;
    }
    .main-slider-three .image-column .image {
        width: 100%;
    }
    .media_ .row > .col-md-4:first-child::after {
        display: none;
    }
    .media_ .row > .col-md-4:nth-child(2)::after {
        display: none;
    }
    table td {
        padding: 1rem;
        border: 1px solid #f6f4ee70;
        text-align: center;
        color: #fff;
        display: block;
        border-right: none;
        border-left: none;
    }
    .td_set {
        display: none;
    }
}

/* list */
.achievements-list {
    list-style-type: none;
    text-align: left;
    padding: 0;
}
.achievements-list li {
    margin: 8px 0;
    padding: 10px;
    border-left: 5px solid #004c74; /* Highlight color */
}
.highlight {
    font-weight: bold;
    color: #004c74;
}
/* list end */
.about-content p {
    font-family: "Roboto", serif;
    color: #000;
    font-size: 18px;
}
.why_txt p {
    padding: 50px 0px;
    font-size: 18px;
    color: #737373;
    font-family: "Roboto", serif;
}
.bold_txt {
    font-size: 18px;
    color: #186d9b;
    font-weight: 600;
}
.pt-10 {
    padding-top: 20px;
}

.borders_ {
    border-left: 1px dashed #b76d3878;
    border-right: 1px dashed #b76d3878;
}

.why__title {
    color: #003b5c;
    font-size: 40px;
    font-family: var(--rr-ff-body);
    padding: 30px 0px;
}
.row.counter-wrap {
    padding: 30px 0px;
}

/* menu  in center */
/* Ensure the navbar menu is flex-centered */
.header-menu-wrap {
    display: flex;
    justify-content: center; /* Centers the entire menu */
}

/* Style for the main menu */
.mobile-menu-items ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Ensure the parent `li` is positioned relative */
.mobile-menu-items ul > li {
    position: relative; /* Needed for absolute positioning of the dropdown */
    padding: 1px;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%; /* Position it below the parent menu item */
    left: 50%;
    transform: translateX(-50%); /* Center it under the parent */
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    width: 600px; /* Adjust width as needed */
    padding: 15px;
    z-index: 1000;
    border-radius: 5px;
}

/* Ensure items inside mega menu are centered */
.mega-menu .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Show mega menu on hover */
.mobile-menu-items ul > li:hover .mega-menu {
    display: block;
}

/* Adjust sub-menu items */
.mega-menu li {
    list-style: none;
    padding: 1px;
    text-align: center;
    display: block;
}

/* Sub-menu headers */
.mega-menu .sub_menu {
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 8px;
}

/* menu  in center end */

.header .primary-header-inner .header-menu-wrap ul li ul ul.mega-menu {
    position: absolute;
    top: 100%; /* Position it below the parent menu item */
    left: 50%;
    transform: translateX(-50%); /* Center it under the parent */
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);

    width: 600px; /* Adjust width as needed */
    padding: 15px;
    z-index: 1000;
    border-radius: 5px;
}
.card_bg {
    background-color: #f6f4ee;
}
.text-secondary_ {
    color: #000 !important;
}
.service-details-list i {
    color: #003b5c !important;
    font-size: 20px;
}
.bg-how {
    background-color: rgb(55 100 124) !important;
}
.bg-how p {
    color: #fff !important;
}
.list-unstyled i {
    color: #e9ecee !important;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    padding: 5px;
    border-radius: 50%;
    float: left;
    font-size: 14px;
    margin-top: 3px;
}
.Surgical-treatment h4 {
    font-size: 20px;
    font-weight: 600;
    color: #003b5c;
}
.list-unstyled_ i {
    color: #206796 !important;
}
.bg-how {
    background-color: #f6f4ee !important;
}
.bg-how p {
    color: #000 !important;
    font-size: 1.25rem;
}
.text-white-50_ {
    color: #f7f7f7;
}
.contact-section p {
    color: #f7f7f7 !important;
    font-family: var(--rr-ff-p);
}
.bg-primaryy {
    background-color: #003b5c !important;
}
.list-unstyled span {
    font-size: 1.25rem;
    color: #000 !important;
}
.list-unstyled li {
    font-size: 1.25rem;
    color: #000 !important;
}
.bg-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
p.lead_ {
    color: #fff !important;
    font-family: var(--rr-ff-p);
}
.section-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.hero-section {
    background-attachment: fixed;
    height: 275px;
    position: relative;
}

.hero-section .overlay {
    background-blend-mode: multiply;
}

.hero-section .h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--rr-ff-p);
}

.hero-section .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.hero-shape {
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section .h2 {
        font-size: 2rem;
    }
}

.symptom-item {
    height: 100%;
    transition: transform 0.3s ease;
}

.symptom-item:hover {
    transform: translateY(-5px);
}

.treatment-category {
    height: 100%;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}

.stats-container {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-section {
    background: linear-gradient(45deg, #2c3e50, #3498db);
}

/* Modern List Styling */
.list-divider {
    position: relative;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
}

.list-divider:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bg-how .list-divider {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgb(209 216 239);
    font-family: var(--rr-ff-p);
}

.screening-methods .list-unstyled {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgb(209 216 239);
}
.risk-factors-section ul.list-unstyled {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgb(209 216 239);
}

.screening-methods .list-unstyled:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.treatment-category li {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
}

.treatment-category li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.symptom-item ul li {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
}

.symptom-item ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* chemotherapy css */
/* Chemotherapy Page Styles */
.chemo-hero {
    background: linear-gradient(357deg, #375e85, #4c748f);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.chemo-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/images/pattern.png");
    opacity: 0.1;
}

.chemo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.chemo-title {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--rr-ff-p);
}

.chemo-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.chemo-cta {
    display: inline-block;
    background: #ffffff;
    color: #1a365d;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.chemo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chemo-section {
    padding: 1.5rem 0;
}

.chemo-section-title {
    font-size: 34px;
    color: #1a365d;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.chemo-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #2c5282;
    border-radius: 2px;
}

.chemo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.chemo-card:hover {
    transform: translateY(-5px);
}

.chemo-list {
    list-style: none;
    padding: 0;
}

.chemo-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}

.chemo-list-item:last-child {
    border-bottom: none;
}

.chemo-list-item::before {
    /* content: 'ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢'; */
    color: #2c5282;
    font-weight: bold;
    margin-right: 1rem;
}

.chemo-myth-fact {
    background: #f8fafc;
    border-left: 4px solid #2c5282;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.chemo-myth {
    color: #1a365d;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 0.5rem;
}

.chemo-fact {
    color: #4a5568;
}

.chemo-faq-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chemo-faq-question {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 22px;
}

.chemo-faq-answer {
    color: #4a5568;
    line-height: 1.6;
}

.chemo-expert-section {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: #ffffff;
    padding: 4rem 0;
    border-radius: 12px;
}

.chemo-contact {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.chemo-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.chemo-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
}

.chemo-appointment-btn {
    background: #2c5282;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.chemo-appointment-btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chemo-container p {
    color: #fff;
    font-size: 20px;
}

@media (max-width: 768px) {
    .chemo-title {
        font-size: 2.5rem;
    }

    .chemo-section-title {
        font-size: 2rem;
    }

    .chemo-container {
        padding: 0 1rem;
    }
}

/*  */

/* Contact Section Styles */
.contact-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.5;
}

.contact-modern__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-modern__content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-modern__title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-modern__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4caf50;
    border-radius: 2px;
}

.contact-modern__description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-modern__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-modern__item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-modern__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #4caf50;
}

.contact-modern__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4caf50;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-modern__item:hover .contact-modern__icon {
    transform: scale(1.1);
}

.contact-modern__label {
    font-size: 1.1rem;
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-modern__value {
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-modern__cta {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-modern__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.contact-modern__cta:hover {
    background: #0e557c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-modern__cta:hover::before {
    left: 100%;
}
.chemo-card p {
    color: #000;
    font-size: 1.25rem;
}
.chemo-faq-item p {
    color: #000;
    font-size: 1.25rem;
    padding: 15px 0px;
}
.bg-treatment-bg {
    background-color: #f6f4ee;
}
.text_primary {
    color: #913f59;
}
.specialty-item .text_primary {
    color: #913f59;
}
.specialty-item {
    background: #f1fbff;
}
@media (max-width: 768px) {
    .contact-modern__content {
        padding: 2rem;
    }

    .contact-modern__title {
        font-size: 2rem;
    }

    .contact-modern__grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.img-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 115px;
    right: -13px;
    background: radial-gradient(
        circle,
        rgb(255 255 255) 10%,
        rgb(231 235 225) 100%
    );
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: #223342;
}

.experience-badge .text {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #264554;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: #b54266;
    margin: 0rem 0px 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #32718d1a;
    background: #e2e7db;
    border-radius: 0.5rem;
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 1.5rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specialty-item i {
    color: var(--primary-color);
}

.btn-primary {
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}
.achievement-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #223342;
    font-family: var(--rr-ff-body);
}
.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #913f59;
    font-family: var(--rr-ff-body);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #007bff;
} */

.education-item,
.experience-item,
.publication-item {
    padding: 20px;
    border-left: 3px solid #0e557c;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.education-item:hover,
.experience-item:hover,
.publication-item:hover {
    transform: translateX(10px);
}

.achievement-category {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.achievement-category h3 {
    color: #0e557c;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
    font-weight: 700;
    font-family: var(--rr-ff-p);
}

.list-unstyled li {
    position: relative;
    padding-left: 20px;
}

.list-unstyled li:before {
    /* content: 'ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢'; */
    position: absolute;
    left: 0;
    color: #007bff;
}
.fw-bold_ {
    font-weight: 600;
}
._fw-bold_ {
    font-weight: 700;
    color: #1a4f6c;
    font-size: 21px;
}
.degree_ .lead_ {
    border-bottom: 1px dashed #8daec18f;
}
.degree_ .lead_ i {
}
.content .lead_ {
    padding: 10px 0px;
}
.icon-wrapper i {
    color: #7b886b !important;
}
.bg_education {
    background: linear-gradient(
        172deg,
        rgb(224 231 215) 0%,
        rgb(235 241 235) 50%
    );
}
.bg_work_experience {
    background: linear-gradient(
        172deg,
        rgb(224 231 215) 0%,
        rgb(235 241 235) 50%
    );
}
.bg_additional_qualifications {
    background: linear-gradient(
        172deg,
        rgb(224 231 215) 0%,
        rgb(235 241 235) 50%
    );
}

.text-primary {
    color: #007bff !important;
}

.modern-title {
    position: relative;
    display: inline-block;
}

.modern-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    border-radius: 3px;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 7px solid #cfd9c3;
    border-radius: 8px;
    z-index: -1;
}

.content-wrapper {
    position: relative;
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
}

.qualification-item {
    position: relative;
    padding: 0px 0px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.qualification-item:hover {
    background: rgba(0, 123, 255, 0.05);
    transform: translateX(5px);
}

.icon-wrapper {
    min-width: 24px;
    text-align: center;
}

.section-title {
    position: relative;
    padding-bottom: 1px;
    margin-bottom: 30px;
}

/* .section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0e557c, #176894);
    border-radius: 3px;
} */

.education-item,
.experience-item {
    padding: 20px;
    border-left: 5px solid #913f59;
    background: rgb(216 226 236);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    border-radius: 40px;
    border-right: 5px solid #913f59;
}

.education-item:hover,
.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.list-unstyled li {
    position: relative;
    padding-left: unset;
    margin-bottom: 15px;
    font-family: var(--rr-ff-p);
}

.list-unstyled li:before {
    /* content: 'ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢'; */
    /* position: absolute; */
    /* left: 0; */
    /* color: #007bff; */
    /* font-size: 1.5em; */
    /* line-height: 1; */
}

@media (max-width: 768px) {
    .degree_ {
        margin-top: 2rem;
    }

    .qualification-item {
        padding: 0.5rem 0;
    }

    .image-decoration {
        display: none;
    }

    .content-wrapper {
        padding: 15px;
    }
}
.designation-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.designation-item {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.designation-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 123, 255, 0.05) 0%,
        rgba(0, 191, 255, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.designation-item:hover::after {
    opacity: 1;
}

.designation-left {
    width: 120px;
    background: linear-gradient(45deg, #2c3e50, #3498db);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.designation-right {
    flex: 1;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e6ece170;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.designation-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.designation-icon i {
    font-size: 24px;
    color: white;
}

.designation-date {
    text-align: center;
}

.date-month {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}

.date-year {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.designation-role h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: var(--rr-ff-body);
}

.designation-hospital {
    color: #6c757d;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rr-ff-body);
}

.designation-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

.status-text {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .designation-item {
        flex-direction: column;
    }

    .designation-left {
        width: 100%;
        flex-direction: row;
        padding: 15px;
    }

    .designation-icon {
        margin-bottom: 0;
        margin-right: 15px;
    }

    .designation-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

/* Animation for the icon */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

.designation-item:hover .designation-icon {
    animation: glow 2s ease-in-out infinite;
}
.contact-info-card {
    background: #edf3e6;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 3px dotted #0e557c;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgb(247 247 247);
    border-radius: 50%;
    display: flex;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    justify-content: center;
    margin: 2px;
}
.contact-info-card .icon-wrapper_ {
    width: 70px;
    height: 70px;
    background: rgb(191 198 181);
    border-radius: 50%;
    display: flex;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    justify-content: center;
    margin: 0px auto 20px;
    border: 3px dotted #0e557c;
}
.icon-wrapper i {
    font-size: 30px;
    color: #007bff;
}

.contact-info-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0e557c;
}

.contact-info-card p {
    color: #000;
    margin-bottom: 0;
    font-size: 17px;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e9ecef;
    padding: 12px;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
}
.list_solid li a {
    color: #000;
    font-family: var(--rr-ff-body);
}
.list_solid li a:hover {
    color: #913f59;
}
.treatment_contant td a {
    color: #000;
    font-size: 20px;
    background: #ffffff;
    padding: 13px 13px;
    border: 2px dotted #913f59;
    border-radius: 15px 9px;
    font-family: var(--rr-ff-body);
}
.treatment_contant td a:hover {
    color: #913f59;
}
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
}

.footer-widget .text-muted {
    color: #efe3e3 !important;
    font-family: var(--rr-ff-body);
}
.contact-icon i {
    color: #fff !important;
}
.contact-icon i {
    color: #7b886b !important;
}
.contact-details p {
    color: #000;
}
.contact-card {
    background: #f1f7e9 !important;
}
.contact-icon {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.contact-card .contact-icon {
    background: #f7f7f7 !important;
}
.contact-item .contact-icon {
    background: #f7f7f7 !important;
}

.contact-details h4 {
    font-family: var(--rr-ff-body);
    border-bottom: 1px dashed #879576;
    padding: 10px 0px;
    display: inline-block;
}

/* gallery */
.gallery-section {
    /* background: radial-gradient(circle, rgb(246 247 244) 10%, rgb(226 231 219) 100%); */
    /* padding: 30px 0px; */
    /* padding-top: 45px; */
    /* padding-bottom: 70px; */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    position: relative;
}

.gallery-link img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* counter */
.stats-counter-section {
    /* background: #f8f9fa; */
    /* position: relative; */
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #b14164;
}

.stat-icon i {
    font-size: 2rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: #fff;
    transform: scale(1.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.stat-label {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 20px;
    }
}

/* counter */
.stats-counter-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

.stat-card {
    background: #f5fbfe;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.stat-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: radial-gradient(
        circle,
        rgb(255 255 255) 10%,
        rgb(204 211 196) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px dotted #145b7b;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 2rem;
    color: #145b7b;
}

.stat-info {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b14164;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    font-family: var(--rr-ff-body);
}

.stat-label {
    font-size: 1.2rem;
    color: #193643;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--rr-ff-body);
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(52, 152, 219, 0.1);
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #7b4448, #b14164);
    transition: width 1.5s ease-in-out;
}

.stat-card:hover .progress-bar {
    width: 100%;
}
.educational-videos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 75px;
}

.educational-videos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.4)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: #3498db;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #3498db;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .play-button i {
    color: #fff;
}

.video-content {
    padding: 25px;
    background: #fff;
}

.video-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-family: var(--rr-ff-p);
}

.video-card:hover .video-content h4 {
    color: #3498db;
}

.video-content p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close-modal {
        right: 10px;
        top: 10px;
        color: #000;
    }
}

.tedx-section {
    background: radial-gradient(
        circle,
        rgb(255 255 255) 10%,
        rgb(231 239 218) 100%
    );
}

.tedx-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
}

.tedx-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e74c3c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.tedx-badge-wrapper {
    position: relative;
    display: inline-block;
}

.tedx-badge-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.tedx-badge-wrapper:hover .tedx-badge-img {
    transform: scale(1.05);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #e74c3c;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
    color: #ffffff;
    background: #c0392b;
}

.social-link i {
    font-size: 1.4rem;
}

.tedx-video {
    position: relative;
    padding: 20px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 20px;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .tedx-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .video-wrapper {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .video-card {
        margin-bottom: 20px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .video-content {
        padding: 20px;
    }

    .video-content h4 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
.featured-text {
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.location_list {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.location_item {
    background: #003b5c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    width: 13%;
    text-transform: uppercase;
}
.location_item_2 {
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    width: 13%;
    font-weight: 600;
    text-transform: uppercase;
}
.doc_list_ li {
    color: #fff;
    font-size: 18px;
}
.doc_list_ {
    list-style: none;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    background: linear-gradient(159deg, #e7d9b0, #f6f4ee, #fdbb2d);
    background: radial-gradient(
        circle,
        rgb(51 133 171) 10%,
        rgb(50 100 122) 100%
    );
    background-size: 200% 200%;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(26, 42, 108, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: "Playfair Display", serif;
    font-family: "Courgette", cursive;
    font-family: "Mate SC", serif;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(26, 42, 108, 0.3);
    color: #fff;
    background-position: right center;
}

.read-more-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.read-more-btn:hover .btn-icon {
    transform: translateX(5px) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgb(51 133 171) 10%,
        rgb(50 100 122) 100%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.read-more-btn:hover::before {
    opacity: 1;
    background-position: right center;
}

.read-more-btn span,
.read-more-btn .btn-icon {
    position: relative;
    z-index: 1;
    font-family: var(--rr-ff-p);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.read-more-btn:hover {
    animation: gradient 3s ease infinite;
}
@media (max-width: 768px) {
    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.header .primary-header-inner .header-menu-wrap ul li ul.treat_items-1 {
    width: unset !important;
}
.subtitle {
    color: #003b5c;
    font-size: 20px;
}
.team-content img {
    margin-bottom: 32px;
    border-radius: 25px 45px;
}
/* why choose css */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 1rem auto;
}

.feature-card {
    background: radial-gradient(circle, rgb(0 59 92) 10%, rgb(145 63 89) 100%);
    border-radius: 78px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px dotted #003b5c;
}

.feature-card:hover .icon-wrapper {
    /* background: linear-gradient(135deg, #3498db, #2ecc71); */
    /* transform: scale(1.1); */
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper img {
    /* filter: brightness(0) invert(1); */
}

.feature-content {
    text-align: center;
}

.feature-title {
    color: #ddebcb;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--rr-ff-body);
}

.feature-description {
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--rr-ff-body);
    font-family: "Roboto", serif;
    color: #fff;
    font-size: 18px;
}

.feature-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    /* background: linear-gradient(to top, rgba(52, 152, 219, 0.1), transparent); */
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hover-icon {
    color: #3498db;
    font-size: 1.1rem;
}

.hover-text {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper img {
        width: 30px;
        height: 30px;
    }
}

/* why choose css */
.why-choose-section {
    background: #f8eded;
    position: relative;
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 75px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-separator {
    width: 80px;
    display: flex;
    justify-content: start;
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #193744, #145876);
    margin: 0rem 0px;
}

.feature-card {
    background: radial-gradient(
        circle,
        rgb(255 255 255) 10%,
        rgb(204 211 196) 100%
    );
    border-radius: 78px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 3px dotted #003b5c;
}

.feature-card:hover .icon-wrapper {
    /* background: linear-gradient(135deg, #3498db, #2ecc71); */
    /* transform: scale(1.1); */
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper img {
    /* filter: brightness(0) invert(1); */
}

.feature-content {
    text-align: center;
}

.feature-title {
    color: #b14164;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--rr-ff-body);
}

.feature-description {
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--rr-ff-body);
    font-family: "Roboto", serif;
    color: #000;
    font-size: 18px;
}

.feature-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    /* background: linear-gradient(to top, rgba(52, 152, 219, 0.1), transparent); */
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hover-icon {
    color: #3498db;
    font-size: 1.1rem;
}

.hover-text {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .icon-wrapper img {
        width: 30px;
        height: 30px;
    }
}

/* testimonials css */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--rr-ff-body);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-family: var(--rr-ff-p);
}

.testimonial-card {
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.rating {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating i {
    margin-right: 0.2rem;
}

.testimonial-text {
    color: #0e557c;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding: 30px;
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
    border-radius: 15px;
    display: block;
    font-weight: 500;
    font-family: var(--rr-ff-p);
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: #3498db;
    font-size: 2rem;
    position: absolute;
    opacity: 0.2;
}

.testimonial-text::before {
    left: -0.5rem;
    top: -0.5rem;
}

.testimonial-text::after {
    right: -0.5rem;
    bottom: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 3px solid #3498db; */
}

.author-info {
    flex: 1;
}

.author-name {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--rr-ff-p);
}

.author-title {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    top: 50% !important;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3498db;
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Pause carousel on hover */
.testimonials-slider:hover .carousel {
    animation-play-state: paused;
}

.social-links {
    margin-top: 1.5rem;
}

.youtube-btn {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.youtube-btn i {
    font-size: 1.4rem;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.youtube-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}

.youtube-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.youtube-btn:hover::before {
    transform: translateX(0);
}

@media (max-width: 480px) {
    .youtube-btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .btn-content {
        justify-content: center;
    }
}
.consulting-locations {
    background: radial-gradient(
        circle,
        rgb(246 247 244) 10%,
        rgb(226 231 219) 100%
    );
    padding-top: 50px;
    padding-bottom: 80px;
}

.location-card {
    background: #e8eef1;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.logo-wrapper {
    /* width: 120px; */
    /* height: 120px; */
    /* border-radius: 50%; */
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid #17475b;
    padding: 0.5rem;
    background: #ffffff;
}

.hospital-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.hospital-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-family: var(--rr-ff-p);
}

.location-address a {
    color: #000;
    font-size: 17px;
    margin-bottom: 1rem;
}

.consultation-details {
    font-size: 0.9rem;
    color: #495057;
}

.consultation-details i {
    color: #0e557c;
}

@media (max-width: 768px) {
    .location-card {
        padding: 1.5rem;
    }

    .logo-wrapper {
        width: 100%;
        /* height: 100px; */
    }

    .hospital-name {
        font-size: 1.25rem;
    }
}
.contact-info-card .icon-wrapper_ i {
    color: #0e557c;
    font-size: 26px;
}

.certifications-section {
    /* background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.95)); */
    /* border-top: 1px solid rgba(0,0,0,0.05); */
    /* border-bottom: 1px solid rgba(0,0,0,0.05); */
}

.certifications-section .certification-logo {
    height: 82px;
    /* width: auto; */
    transition: transform 0.3s ease;
    /* filter: grayscale(100%); */
    /* opacity: 0.8; */
    padding: 1rem;
    border: 1px solid #32718d1a;
    background: #e2e7db;
    border-radius: 0.5rem;
    /* background: radial-gradient(circle, rgb(246 247 244) 10%, rgb(229 233 222) 100%); */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease;
}

.certifications-section .certification-logo:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

.certifications-section h3 {
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    font-family: var(--rr-ff-body);
}

.certifications-section h3:hover {
    color: #0056b3 !important;
}

.certifications-section .d-flex {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.certifications-section .d-flex:hover {
    /* background-color: rgba(0,0,0,0.02); */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}

@media (max-width: 768px) {
    .certifications-section .certification-logo {
        height: 50px;
    }

    .certifications-section h3 {
        font-size: 0.95rem;
    }
}
.gallery-item-heading {
    color: #0e557c;
    border-top: 1px dotted #0e557c;
    margin-top: 27px;
    border-bottom: 1px dotted #0e557c;
    padding-bottom: 22px;
    font-family: "DM Sans", sans-serif;
    height: 130px;
}

/* awards and event css */
.awards-section {
    background-color: #f8f9fa;
}

.award-item {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.btn-primary {
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
    .award-item {
        text-align: center;
    }

    .ps-lg-5,
    .pe-lg-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
.memberships {
    background: #f8eded;
    height: 210px;
    padding-top: 35px;
    border-radius: 30px 100px;
}
.space-top {
    margin-top: 80px;
}

.experience-timeline {
    position: relative;
    padding: 20px 0;
}

.experience-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    /* background: linear-gradient(to bottom, #007bff, #00ff88); */
    opacity: 0.3;
}

.experience-item {
    position: relative;
    margin-bottom: 40px;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px dotted #0e557c;
    border-radius: 10px 73px;
}

.experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon i {
    font-size: 24px;
    color: #0e557c;
}

.experience-title h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: var(--rr-ff-body);
}

.experience-location {
    color: #222;
    font-size: 18px;
    font-family: var(--rr-ff-body);
}

.experience-details {
    padding-left: 70px;
}

.experience-period {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #222;
    font-size: 18px;
}

.experience-period i {
    color: #0e557c;
    width: 20px;
}

.experience-period:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .experience-timeline::before {
        left: 20px;
    }

    .experience-header {
        flex-direction: column;
        gap: 15px;
    }

    .experience-details {
        padding-left: 0;
    }
}

/* Animation for the icon */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.experience-item:hover .experience-icon {
    animation: bounce 1s ease-in-out infinite;
}
.education-icon-wrapper i {
    color: #0e557c;
}
.experience-department i {
    color: #0e557c;
}

.about-text img {
    width: 30px;
    float: left;
    padding-top: 6px;
    padding-right: 13px;
}
.education-header h4 {
    font-family: var(--rr-ff-body);
}
.education-card .card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.education-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.education-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
}

.institution {
    font-weight: 500;
    color: #2c3e50;
    font-family: var(--rr-ff-p);
}

.university {
    font-size: 0.95rem;
    font-family: var(--rr-ff-p);
}

.education-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.education-content {
    padding-top: 0.5rem;
}

.content-section img {
}
.chemo-list-item i {
}

/*====================
26. Choose css 
======================*/

.choose-area {
    position: relative;
    background: #e6eef3;
    z-index: 1;
}

.choose-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    /* background-image: url('../img/banners-img/treatmens_bg_banner.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: -1;
}

.choose-content-wrap {
    margin-top: 30px;
}

.choose-img {
    position: relative;
    margin-left: 50px;
}

.choose-img::before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--theme-color2);
    border-radius: 30% 0 30% 30%;
}

.choose-img img {
    border-radius: 30% 0 30% 30%;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #003b5c;
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    padding: 15px 15px 15px 0;
    overflow: hidden;
}

.choose-item-icon {
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: right;
    background: #b14164;
    border-radius: 50px 50px 50px 0;
    padding-right: 12px;
    margin-left: -12px;
}

.choose-item-icon i {
    color: var(--theme-color);
    font-size: 50px;
}

.choose-item-icon img {
    width: 50px;
    filter: brightness(0) invert(1);
}

.choose-item-info {
    flex: 1;
}

.choose-item-info h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 21px;
    font-family: var(--rr-ff-body);
    border-bottom: 2px solid #b14164;
    display: inline;
    font-weight: 500;
    padding-bottom: 5px;
}

.choose-video-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@media all and (max-width: 991px) {
    .choose-content-info {
        margin-right: 100px;
    }

    .choose-video-wrap {
        padding-top: 210px;
    }

    .choose-img {
        margin-top: 50px;
        margin-left: 10px;
    }
}

@media all and (max-width: 767px) {
    .choose-content-info {
        margin-right: 40px;
    }
}
.choose-item-info p {
    color: #fff;
    line-height: 23px;
    padding-top: 20px;
}
.site-heading h2 {
    color: #913f59;
    font-family: var(--rr-ff-body);
    font-size: 36px;
}

/*start footer whatsapp and call buttons*/
#mybutton {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 29;
}
.call-us {
    /* background-color: red!important; */
    color: #fff !important;
    border-radius: unset;
    width: 100%;
    font-weight: 600;
    font-size: 22px !important;
    background: linear-gradient(135deg, #0e557c, #c66483);
    font-family: "Mulish", sans-serif;
    line-height: 50px !important;
    font-family: var(--rr-ff-body) !important;
}
.call-us:hover {
    background-color: #018f99;
    color: white;
}
.whatsapp:hover {
    background-color: #10ba17;
    color: white;
}
.whatsapp {
    /*background-color: #10ba17;*/
    color: #fff !important;
    border-radius: unset;
    width: 100%;
    font-weight: 600;
    font-size: 22px !important;
    font-family: "Mulish", sans-serif;
    background: linear-gradient(135deg, #0e557c, #c66483);
    border-left: 2px solid #dfcab9 !important;
    line-height: 50px !important;
    font-family: var(--rr-ff-body) !important;
}
.whatsapp img {
    width: 40px;
    /* margin-right: 30px; */
    float: left;
}
.call-us img {
    width: 40px;
    float: left;
}
.award_title {
    color: #000;
}
.award_title:hover {
    color: #904545;
}
.about-text {
    padding: 20px 0px 0px;
}
.about-line {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-line img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.about-line p {
    margin-bottom: 0;
    vertical-align: middle;
}
.about-line {
    display: flex;
    align-items: start;
    gap: 10px;
}
.about-line img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.about-line p {
    margin-bottom: 0;
    vertical-align: middle;
}

@media (max-width: 767.98px) {
  .header .primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .primary-header-inner .header-logo,
  .header .primary-header-inner .header-right .mobile-side-menu-toggle {
    display: flex;
    align-items: center;
  }
  .header .primary-header-inner .header-logo {
    margin-right: 10px;
  }
}
@media (max-width: 767.98px) {
 
  .section-heading
  {
    padding-top: 20px;
  }
}

