:root {
    --primary-color: #000;
    --secondary-color: #F7F0F2;
    --text-color: #000;
    --accent-color: #000;
    --accent-secondary-color: #FEF7F8;
    --white-color: #FFFFFF;
    --divider-color: #7B798C24;
    --dark-divider-color: #FFFFFF24;
    --error-color: rgb(230, 87, 87);
    --default-font: "DM Sans", serif;
    --accent-font: "Marcellus", serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    position: relative;
    font-family: var(--default-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--accent-secondary-color);
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 400;
    line-height: 1.1em;
    color: #000;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

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

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

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

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

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

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 24px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 54px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: transparent;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
    /* filter: brightness(0) saturate(100%); */
}

.btn-default:hover::before {
    transform: translate(-17px, -50%);
}

.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: #000;
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
    background: transparent;
    color: var(--white-color);
    border: 2px solid #fff;
}

.btn-default.btn-highlighted::before {
    /* background: url('../images/arrow-accent.svg'); */
    filter: brightness(0) saturate(100%);
}

.btn-default.btn-highlighted:hover::before {
    filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
    background: #000;
}

.readmore-btn {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-2px, -50%);
    background: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after {
    transform: translate(0, -50%);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-secondary-color) transparent var(--accent-secondary-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

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

.bg-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    border-radius: 30px;
}

.bg-section.dark-section {
    background-color: var(--accent-color);
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title {
    width: 100%;
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.6em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-left: 18px;
    margin-bottom: 10px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.bg-section.dark-section .section-title h3::before {
    background: var(--white-color);
}

.section-title h1 {
    font-size: 56px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 55px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-row .section-title p {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    margin-top: 20px;
}

.section-title-content p {
    margin: 0;
}

.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    background: var(--secondary-color);
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--secondary-color);
    border-bottom: 1px solid var(--divider-color);
}

.navbar {
    padding: 30px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    padding: 17px 15px !important;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-secondary-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--text-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--accent-secondary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--accent-secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--accent-secondary-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-secondary-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    background: var(--secondary-color);
}

.hero-section {
    position: relative;
    padding: 70px 0 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50px;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-1 3s infinite alternate;
    z-index: 0;
}

@keyframes leafimg-1 {
    0% {
        transform: translateY(0);
    }

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

.hero-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-2.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 132px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

@keyframes leafimg-2 {
    0% {
        transform: translateY(0);
    }

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

.hero-section.hero-bg-image {
    background: url('../images/hero-bg-2.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0;
    overflow: hidden;
}

.hero-section.hero-bg-image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
    animation: none;
    z-index: 1;
}

.hero-section.hero-bg-image::after {
    display: none;
}

.hero-section.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-section.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section.hero-bg-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-slide {
    position: relative;
    background: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-slide.slide-2 {
    background: url('../images/hero-bg-2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-slide::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: center;
    z-index: 2;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero-section.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background: var(--white-color);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section.hero-bg-image .hero-content {
    width: 100%;
    max-width: 710px;
    margin: 0 auto;
    text-align: center;
}

.hero-section.hero-bg-image .hero-content .section-title h1 {
    font-size: 80px;
}

.hero-review-box {
    margin-top: 40px;
}

.hero-review-box-title {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.hero-review-box-title h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white-color);
}

.hero-review-item {
    display: flex;
    align-items: center;
}

.hero-review-image {
    margin-right: 20px;
}

.hero-review-image figure {
    border-radius: 50%;
}

.hero-review-image img {
    max-width: 60px;
    border-radius: 50%;
}

.hero-review-item-content {
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-review-item-content p {
    color: var(--white-color);
    margin: 0;
}

.hero-review-item-content span {
    display: inline-flex;
    background: var(--white-color);
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    padding: 6px 15px;
}

.hero-review-item-content span i {
    font-size: 14px;
    color: var(--accent-color);
    margin-left: 10px;
}

.hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.014;
    object-fit: contain;
}

.hero-contact-circle {
    position: absolute;
    left: 80px;
    bottom: 31%;
}

.hero-contact-circle a {
    display: block;
}

.hero-contact-circle img {
    max-width: 120px;
    animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-cta-box {
    background: var(--secondary-color);
    padding: 50px 0;
}

.hero-cta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.hero-cta-item {
    position: relative;
    width: calc(33.33% - 53.33px);
}

.hero-cta-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.hero-cta-item:last-child:before {
    display: none;
}

.hero-cta-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hero-cta-item-header .icon-box {
    margin-right: 10px;
}

.hero-cta-item-header .icon-box img {
    max-width: 20px;
}

.hero-cta-item-title h3 {
    font-size: 22px;
}

.hero-cta-item-content p {
    margin-bottom: 2px;
}

.hero-cta-item-content p:last-child {
    margin: 0;
}

.hero-cta-item-content a {
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.hero-cta-item-content a:hover {
    color: var(--accent-color);
}

.hero-cta-item-content a span {
    color: var(--primary-color);
    font-weight: 600;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
    padding: 100px 0;
}

.about-us-image {
    /*position: relative;*/
    /*padding: 0 162px 58px 0;*/
    /*margin-right: 30px;*/
    position: relative;
    padding: 0 0 98px 0;
    width: 75%;
    margin: 0 auto;
}

.about-img-1 figure,
.about-img-2 figure {
    display: block;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    object-fit: cover;
}

.about-img-1 figure {
    border-radius: 30px;
}

.about-img-1 img {
    aspect-ratio: 1 / 1.23;
    border-radius: 30px;
}

.about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 340px;
    border: 10px solid var(--accent-secondary-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    height:360px;
}

.about-img-2 figure.image-anime.reveal img {
    height: 100%;
}

.about-img-2 figure.image-anime.reveal {
    height: 100%;
}
.about-img-2 img {
    aspect-ratio: 1 / 0.59;
}

.contact-us-circle {
    position: absolute;
    top: 90px;
    right: 90px;
    z-index: 1;
}

.contact-us-circle a {
    display: block;
    border-radius: 50%;
}

.contact-us-circle img {
    width: 100%;
    max-width: 140px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-us-body .about-body-content {
    width: calc(66% - 15px);
}

.about-body-list {
    margin-bottom: 60px;
}

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

.about-body-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.about-body-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: #000;
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.about-body-list ul li:last-child {
    margin-bottom: 0;
}

.about-team-member {
    width: calc(34% - 15px);
}

.about-body-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.about-video-button a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 15px 30px;
}

.about-video-button a i {
    color: inherit;
    font-size: 14px;
}

.about-team-member {
    background-color: #000;
    border-radius: 30px;
    text-align: center;
    padding: 40px 30px;
}

.about-team-member img {
    width: 100%;
    max-width: 50px;
    margin-bottom: 20px;
}

.about-team-member h2 {
    color: var(--white-color);
    font-size: 55px;
    margin-bottom: 5px;
}

.about-team-member p {
    color: var(--white-color);
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.about-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.about-counter-item {
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.about-counter-item .icon-box {
    margin-right: 20px;
}

.about-counter-item .icon-box img {
    width: 100%;
    max-width: 50px;
    filter: brightness(0) saturate(100%);
}

.about-counter-content {
    width: calc(100% - 70px);
}

.about-counter-content h2 {
    color: var(--accent-color);
    font-size: 45px;
    margin-bottom: 5px;
}

.about-counter-content p {
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services {
    position: relative;
    padding: 100px 0;
}

.our-services::before {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    background: url('../images/section-bg-leaf-3.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 148px;
    height: 154px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-3 3s infinite alternate;
    z-index: 0;
}

@keyframes leafimg-3 {
    0% {
        transform: translateY(0) rotate(180deg);
    }

    100% {
        transform: translateY(10px) rotate(180deg);
    }
}

.our-services::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50px;
    background: url('../images/section-bg-leaf-4.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 240px;
    height: 194px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-1 3s infinite alternate;
    z-index: 0;
}

.service-box {
    position: relative;
}

.service-image a {
    display: block;
    cursor: none;
    border-radius: 30px;
    overflow: hidden;
}

.service-image figure {
    display: block;
}

.service-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.13%52.13%, #000 81.58%81.58%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.042;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-item {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.service-item .icon-box {
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item:hover .icon-box::before {
    transform: scale(1);
}

.service-item .icon-box img {
    position: relative;
    max-width: 30px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-content h3 {
    font-size: 25px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.3s all;
}

.service-box:hover .service-content h3 {
    transform: none;
    opacity: 1;
}

.service-content h3 a {
    color: inherit;
}

.service-content p {
    color: var(--white-color);
    margin: 0;
}

.services-pagination {
    position: relative;
    text-align: center;
    margin-top: 60px;
}

.services-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--text-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.services-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: #000;
    border-radius: 10px;
}

.section-footer-text {
    margin-top: 40px;
    text-align: center;
}

.section-footer-text p {
    margin: 0;
}

.dark-section .section-footer-text p {
    color: var(--white-color);
}

.section-footer-text p span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 4px;
    padding: 4px 10px;
    margin-right: 5px;
}

.section-footer-text p a {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--text-color);
}

.dark-section .section-footer-text p a {
    color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--text-color);
}

/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
    padding: 100px 0;
}

.why-choose-content {
    margin-right: 30px;
}

.why-choose-list-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.why-choose-list-item .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.why-choose-list-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-list-item:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-list-item .icon-box img {
    width: 100%;
    max-width: 40px;
    transition: all 0.3s ease-in-out;
    filter: brightness(0) saturate(100%);
}

.why-choose-list-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-item-content {
    width: calc(100% - 110px);
}

.why-choose-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.why-choose-item-content p {
    margin-bottom: 0;
}

.why-choose-image figure {
    display: block;
    border-radius: 30px;
}

.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 1.236;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***      08. Our Process css	  ***/
/************************************/

.our-process {
    position: relative;
}

.our-process::before {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    background: url(../images/section-bg-leaf-3.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 148px;
    height: 154px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-3 3s infinite alternate;
    z-index: 0;
}

.our-process .container-fluid {
    padding: 0;
}

.process-video-box {
    position: relative;
    height: 100%;
}

.process-video-image {
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    height: 100%;
}

.process-video-image figure {
    display: block;
    height: 100%;
}

.process-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.13%, rgba(28, 73, 66, 0.9) 81.58%);
    width: 100%;
    height: 100%;
}

.process-video-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.94;
    object-fit: cover;
}

.video-play-box {
    position: absolute;
    bottom: 100px;
    left: 100px;
    right: 100px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.video-play-button a {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    margin-right: 20px;
    cursor: none;
}

.video-play-button a i {
    font-size: 20px;
    color: var(--white-color);
    margin-left: 3px;
}

.video-play-content {
    width: calc(100% - 80px);
}

.video-play-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 10px;
}

.video-play-content h2 {
    font-size: 40px;
    color: var(--white-color);
    letter-spacing: -0.02em;
}

.our-process-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 13.021vw 100px 5.208vw;
}

.our-process-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.our-process-list ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 30px;
}

.our-process-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--primary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.our-process-btn {
    margin-top: 60px;
}

.our-process-content .section-footer-text {
    margin-top: 60px;
    text-align: start;
}

/************************************/
/***      09. How We Work css	  ***/
/************************************/

.how-we-work {
    padding: 100px 0;
}

.how-we-work-content {
    margin-right: 20px;
}

.how-work-step-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.how-work-step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.how-work-step-no h2 {
    font-size: 40px;
}

.how-work-step-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.how-work-step-content p {
    margin-bottom: 0;
}

.how-we-work-image {
    position: relative;
}

.how-we-work-img figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.how-we-work-img figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 49.89%, rgba(28, 73, 66, 0.9) 78.07%);
    width: 100%;
    height: 100%;
}

.how-we-work-img img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
}

.how-work-contact-info {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 150px;
    z-index: 1;
}

.how-work-contact-info h2 {
    font-size: 22px;
    line-height: 1.4em;
    color: var(--white-color);
    margin-bottom: 15px;
}

.how-work-contact-box {
    display: flex;
    align-items: center;
}

.how-work-contact-box .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 10px;
    margin-right: 15px;
}

.how-work-contact-box .icon-box img {
    width: 100%;
    max-width: 20px;
}

.how-work-contact-content {
    width: calc(100% - 55px);
}

.how-work-contact-content h3 {
    font-size: 18px;
    color: var(--white-color);
}

.how-work-contact-content h3 a {
    color: inherit;
}

/************************************/
/***      10. Our Benefit css	  ***/
/************************************/

.our-benefit {
    position: relative;
    padding: 100px 0;
}

.our-benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-4 3s infinite alternate;
    z-index: 0;
}

@keyframes leafimg-4 {
    0% {
        transform: translateY(0) rotateX(180deg);
    }

    100% {
        transform: translateY(10px) rotateX(155deg);
    }
}

.our-benefit::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 50px;
    background: url('../images/section-bg-leaf-5.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    width: 223px;
    height: 153px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.our-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.our-benefit-item:last-child {
    margin-bottom: 0;
}

.our-benefit-item .icon-box {
    background: var(--white-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.our-benefit-item .icon-box img {
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.our-benefit-item-content {
    width: calc(100% - 80px);
}

.our-benefit-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
}

.our-benefit-item-content p {
    color: var(--white-color);
    margin: 0;
}

.our-benefit-image {
    margin: 0 30px;
}

.our-benefit-image figure {
    display: block;
    border-radius: 200px;
}

.our-benefit-image img {
    width: 100%;
    aspect-ratio: 1 / 1.48;
    object-fit: cover;
    border-radius: 200px;
}

.our-benefit-box-1 .our-benefit-item {
    flex-direction: row-reverse;
}

.our-benefit-box-1 .our-benefit-item .icon-box {
    margin: 0 0 0 20px;
}

.our-benefit-box-1 .our-benefit-item-content {
    text-align: right;
}

/************************************/
/***      11. Our Result css	  ***/
/************************************/

.our-results {
    padding: 0px 0;
}

.gallery-sec {
    padding: 100px 0px;
}

.transformation_image {
    margin-bottom: 30px;
}

.transformation_image img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}

.transformation-button {
    text-align: center;
    margin-top: 40px;
}

/************************************/
/***       12. Our FAQs css 	  ***/
/************************************/

.our-faqs {
    position: relative;
    padding: 100px 0;
}

.our-faqs::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    background: url(../images/section-bg-leaf-1.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-4 3s infinite alternate;
    z-index: 0;
}

.our-faqs::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 50px;
    background: url('../images/section-bg-leaf-5.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    width: 223px;
    height: 153px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.our-faqs-content {
    position: sticky;
    top: 20px;
    margin-right: 30px;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    padding-right: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
    padding-right: 25px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

/************************************/
/***    13. Our Testimonials css  ***/
/************************************/

.our-testimonials {
    padding: 100px 0;
    background: url('../images/testimonial-bg.png') no-repeat;
    background-position: center center;
    background-size: auto;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
}

.testimonial-quote {
    margin-right: 20px;
}

.testimonial-quote img {
    width: 100%;
    max-width: 60px;
    filter: brightness(0) saturate(100%);
}

.testimonial-body {
    width: calc(100% - 80px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 20px;
    margin: 0;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 15px;
}

.author-image figure {
    display: block;
    border-radius: 50%;
}

.author-image img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.author-content {
    width: calc(100% - 65px);
}

.author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-pagination {
    text-align: center;
    margin-top: 60px;
}

.testimonial-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    position: relative;
    width: 20px;
    border-radius: 100px;
    background-color: #000;
}

.trusted-client-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.trusted-client-title h3 {
    font-size: 22px;
    line-height: 1.4em;
    text-transform: capitalize;
    max-width: 270px;
}

.trusted-client-box .testimonial-company-slider {
    width: calc(100% - 300px);
}

.trusted-client-logo {
    text-align: center;
}

.trusted-client-logo img {
    width: 100%;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

/************************************/
/***       14. Our Team css 	  ***/
/************************************/

.our-team {
    position: relative;
    padding: 100px 0 70px;
}

.our-team::before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    background: url(../images/section-bg-leaf-7.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 213px;
    height: 167px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.our-team::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 30px;
    background: url(../images/section-bg-leaf-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    width: 148px;
    height: 154px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
    border-radius: 24px;
    overflow: hidden;
}

.team-image figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(28, 73, 66, 0) 43.17%, #000 100%);
    z-index: 1;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.435;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-body {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-body {
    transform: translateY(0);
}

.team-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.team-social-list {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list {
    margin-top: 15px;
    opacity: 1;
    visibility: visible;
}

.team-social-list ul {
    display: flex;
    justify-content: center;
    gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li:hover a {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.team-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***       15. Our Blog css 	  ***/
/************************************/

.our-blog {
    position: relative;
    padding: 100px 0 70px;
    z-index: 1;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image {
    margin-bottom: 20px;
}

.post-featured-image a {
    cursor: none;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    aspect-ratio: 1 / 0.795;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h2 {
    font-size: 22px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    display: inline-block;
    color: inherit;
}

/************************************/
/***   16. Book Appointment css   ***/
/************************************/

.book-appointment {
    position: relative;
    padding: 100px 0;
}

.book-appointment::before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    background: url(../images/section-bg-leaf-3.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 148px;
    height: 154px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-3 3s infinite alternate;
    z-index: 0;
}

.book-appointment::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50px;
    background: url(../images/section-bg-leaf-4.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 240px;
    height: 194px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.booking-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 30px;
}

.booking-contact-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.booking-contact-list .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 10px;
    margin-right: 15px;
}

.booking-contact-list .icon-box img {
    width: 100%;
    max-width: 24px;
}

.booking-contact-content {
    width: calc(100% - 65px);
}

.booking-contact-content p {
    margin-bottom: 0;
}

.booking-contact-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.booking-contact-content p a:hover {
    color: var(--primary-color);
}

.google-map-iframe {
    border: 1px solid var(--divider-color);
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 600px;
    border-radius: 30px;
}

.booking-form-box {
    margin-left: 30px;
}

.book-appointment-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
    opacity: 50%;
}

.book-appointment-form .form-control::placeholder {
    color: var(--text-color);
}

.book-appointment-form .form-group .form-control.form-select {
    padding: 17px 30px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
    text-transform: capitalize;
    font-weight: 500;
    background: var(--white-color);
    color: var(--accent-color);
}

/************************************/
/***   17. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
    padding: 50px 0;
}

.scrolling-ticker-box {
    --gap: 30px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 80s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    font-size: 100px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    color: var(--accent-color);
    vertical-align: middle;
}

.scrolling-content span img {
    width: 100%;
    max-width: 40px;
    margin-right: 30px;
    filter: brightness(0) saturate(100%);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/************************************/
/***        18. Footer css  	  ***/
/************************************/

.footer-main {
    position: relative;
    padding: 80px 0 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-1 3s infinite alternate;
    z-index: 0;
}

.footer-main::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    background: url('../images/section-bg-leaf-8.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 148px;
    height: 160px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.about-footer {
    margin-right: 80px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 151px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-newsletters-form .form-group {
    display: flex;
    background-color: var(--white-color);
    padding: 5px 5px 5px 20px;
    border-radius: 8px;
}

.footer-newsletters-form .form-group .form-control {
    width: 80%;
    border: none;
    border-radius: 0;
    color: var(--text-color);
    background: transparent;
    padding: 13px 10px;
    box-shadow: none;
}

.footer-newsletters-form .form-group button {
    background-color: var(--accent-color);
    border-radius: 8px;
    width: 20%;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletters-form .form-group button:hover {
    background-color: #000;
}

.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links p {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.footer-links p a {
    color: inherit;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 10px;
    margin-right: 15px;
}

.footer-contact-item .icon-box img {
    width: 100%;
    max-width: 24px;
    filter: brightness(0) saturate(100%);
}

.footer-contact-content {
    width: calc(100% - 65px);
}

.footer-contact-content h3 {
    text-transform: initial;
    margin-bottom: 5px;
}

.footer-contact-info-item {
    margin-bottom: 20px;
}

.footer-contact-info-item:last-child {
    margin-bottom: 0;
}

.footer-contact-info-item h3 {
    margin-bottom: 5px;
}

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

.footer-links ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 40px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-links span {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
}

.footer-social-links ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li:hover a {
    background: #fff;
    color: #000;
}

.footer-social-links ul li a i {
    color: inherit;
    font-size: 20px;
}

/************************************/
/***     19. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    padding: 130px 0;
}

.page-header:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 12px;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.page-header:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-2.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 180px;
    height: 132px;
    transition: all 0.5s ease-in-out;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.our-mission-vision {
    position: relative;
    padding: 100px 0 0;
    margin-bottom: 125px;
}

.our-mission-vision:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-7.png');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    width: 212px;
    height: 168px;
    opacity: 30%;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.our-mission-vision:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 50px;
    background: url('../images/section-bg-leaf-3.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    width: 148px;
    height: 154px;
    animation: leafimg-2 3s infinite alternate;
    z-index: 0;
}

.mission-vision-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: -125px;
}

.mission-vision-item {
    position: relative;
    width: calc(33.33% - 20px);
    background-color: var(--white-color);
    border-radius: 30px;
    box-shadow: 0px 2px 18px 0px #0000000D;
    padding: 50px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.mission-vision-item:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #000;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover::before,
.mission-vision-item.active::before {
    height: 100%;
}

.mission-vision-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-vision-item .icon-box img {
    width: 100%;
    max-width: 30px;
    filter: brightness(0.2);
}

.mission-vision-content {
    position: relative;
    z-index: 1;
}

.mission-vision-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.mission-vision-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content h3,
.mission-vision-item:hover .mission-vision-content p,
.mission-vision-item.active .mission-vision-content h3,
.mission-vision-item.active .mission-vision-content p {
    color: var(--white-color);
}

.who-we-are {
    padding: 100px 0;
}

.who-we-are-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.who-we-image-box-1,
.who-we-image-box-2 {
    width: calc(50% - 15px);
}

.who-we-img-1 figure,
.who-we-img-2 figure {
    display: block;
    border-radius: 30px;
}

.who-we-img-1 img,
.who-we-img-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.who-we-img-1 img {
    aspect-ratio: 1 / 1.79;
}

.who-we-img-2 img {
    aspect-ratio: 1 / 1.26;
}

.reliable-expertise-box {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 25px 35px;
    margin-bottom: 20px;
}

.reliable-expertise-box .icon-box {
    margin-right: 20px;
}

.reliable-expertise-box .icon-box img {
    width: 100%;
    max-width: 50px;
}

.reliable-expertise-content {
    width: calc(100% - 70px);
}

.reliable-expertise-content h2 {
    color: var(--white-color);
    font-size: 50px;
}

.reliable-expertise-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0;
}

.who-we-circle-img {
    position: absolute;
    bottom: 122px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid var(--white-color);
    border-radius: 50%;
    z-index: 1;
}

.who-we-circle-img a {
    display: block;
    border-radius: 50%;
}

.who-we-circle-img img {
    width: 100%;
    max-width: 140px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

.who-we-are-body {
    margin-bottom: 40px;
}

.who-we-are-body ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.who-we-are-body ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 30px;
}

.who-we-are-body ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--primary-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 2px;
    left: 0;
}

.our-innovation {
    padding: 100px 0;
}

.our-innovation-content {
    margin-right: 30px;
}

.skills-progress-bar {
    margin-bottom: 50px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title {
    font-family: var(--accent-font);
    font-size: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-no {
    color: var(--accent-color);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 100px;
}

.our-innovation-image {
    position: relative;
    padding: 0 55px 75px 0;
}

.our-innovation-img-1 figure,
.our-innovation-img-2 figure {
    display: block;
    border-radius: 50%;
}

.our-innovation-img-1 img,
.our-innovation-img-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.our-innovation-img-1 img {
    aspect-ratio: 1 / 1.0177;
}

.our-innovation-img-2 {
    max-width: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 10px solid var(--white-color);
    border-radius: 50%;
    z-index: 1;
}

.customer-review-box {
    position: absolute;
    bottom: 100px;
    left: 0;
    display: flex;
    align-items: center;
    width: 260px;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: -8px 8px 40px 0px #0000000D;
    z-index: 1;
}

.customer-review-box .icon-box {
    margin-right: 15px;
}

.customer-review-box .icon-box i {
    color: var(--primary-color);
    font-size: 35px;
}

.customer-review-box-content {
    width: calc(100% - 50px);
}

.customer-review-box-content h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.customer-review-box-content p {
    text-transform: capitalize;
    margin: 0;
}

.our-dermatology {
    padding: 100px 0;
}

.our-dermatology-image {
    position: relative;
    margin-right: 30px;
}

.our-dermatology-img figure {
    display: block;
}

.our-dermatology-img figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(28, 73, 66, 0) 61.99%, rgba(28, 73, 66, 0.8) 100%);
    border-radius: 30px;
    z-index: 1;
}

.dermatology-care-box {
    display: flex;
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.dermatology-care-box .icon-box {
    margin-right: 30px;
}

.dermatology-care-box .icon-box img {
    width: 100%;
    max-width: 60px;
}

.dermatology-care-content {
    width: calc(100% - 90px);
}

.dermatology-care-content h3 {
    color: var(--white-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.dermatology-care-content p {
    color: var(--white-color);
    margin: 0;
}

.our-dermatology-img img {
    width: 100%;
    aspect-ratio: 1 / 1.033;
    object-fit: cover;
    border-radius: 30px;
}

.our-dermatology-body {
    margin-bottom: 40px;
}

.dermatology-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.dermatology-item:last-child {
    margin-bottom: 0;
}

.dermatology-item .icon-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.dermatology-item .icon-box img {
    width: 100%;
    max-width: 30px;
}

.dermatology-item-content {
    width: calc(100% - 80px);
}

.dermatology-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.dermatology-item-content p {
    margin: 0;
}

.our-excellence {
    padding: 100px 0;
}

.excellence-item {
    position: relative;
    display: flex;
    margin-bottom: 60px;
}

.excellence-item:last-child {
    margin-bottom: 0;
}

.excellence-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(30px, 60px);
    border-left: 1px dashed var(--primary-color);
    width: 1px;
    height: 100%;
    z-index: -1;
}

.excellence-item:last-child:after {
    display: none;
}

.excellence-item-no {
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.excellence-item-no:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.excellence-item:hover .excellence-item-no:before {
    transform: scale(1);
}

.excellence-item-no h3 {
    position: relative;
    font-size: 22px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.excellence-item:hover .excellence-item-no h3 {
    color: var(--white-color);
}

.excellence-item-content {
    width: calc(100% - 75px);
}

.excellence-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.excellence-item-content p {
    margin: 0;
}

.our-excellence-image {
    position: relative;
    margin-left: 30px;
    padding-left: 80px;
}

.our-excellence-img figure {
    display: block;
    border-radius: 30px;
}

.our-excellence-img img {
    width: 100%;
    aspect-ratio: 1 / 1.43;
    object-fit: cover;
    border-radius: 30px;
}

.skincare-list {
    position: absolute;
    background: var(--secondary-color);
    width: 220px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.skincare-item {
    position: relative;
    padding: 20px;
    text-align: center;
}

.skincare-item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.skincare-item.active:before,
.skincare-item:hover:before {
    top: auto;
    height: 100%;
}

.skincare-item .icon-box {
    position: relative;
    background: var(--white-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.skincare-item .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.skincare-item.active .icon-box:before,
.skincare-item:hover .icon-box:before {
    top: auto;
    height: 100%;
}

.skincare-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.skincare-item-content h3 {
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.skincare-item-content p {
    position: relative;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.skincare-item:hover .skincare-item-content h3,
.skincare-item:hover .skincare-item-content p,
.skincare-item.active .skincare-item-content h3,
.skincare-item.active .skincare-item-content p {
    color: var(--white-color);
}

/************************************/
/***     20. Services Page css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.page-services .service-box {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/***    21. Service Single css	  ***/
/************************************/

.page-service-single {
    padding: 100px 0 50px;
}

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
    padding: 30px;
    overflow: hidden;
}

.page-catagery-list h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

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

.page-catagery-list ul li {
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
    margin: 0;
}

.page-catagery-list ul li a {
    position: relative;
    display: block;
    line-height: normal;
    text-transform: capitalize;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 18px 50px 18px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.page-catagery-list ul li:hover a {
    color: var(--white-color);
}

.page-catagery-list ul li a::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before {
    filter: brightness(0) invert(1);
}

.page-catagery-list ul li a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after {
    top: 0;
    height: 100%;
}

.sidebar-cta-box {
    position: relative;
    background: url('../images/sidebar-cta-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
    padding: 80px 30px 30px 30px;
    overflow: hidden;
}

.sidebar-cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent 1%, #000000 99%);
    width: 100%;
    height: 100%;
}

.sidebar-cta-content {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    z-index: 1;
}

.sidebar-cta-content .icon-box {
    margin-bottom: 60px;
}

.sidebar-cta-content .icon-box img {
    width: 100%;
    max-width: 60px;
}

.sidebar-cta-content p {
    color: var(--secondary-color);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.sidebar-cta-content h3 {
    font-family: var(--default-font);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    text-transform: uppercase;
}

.sidebar-cta-contact {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-cta-contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    opacity: 20%;
    z-index: 0;
}

.sidebar-cta-contact .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.sidebar-cta-contact .icon-box img {
    width: 100%;
    max-width: 36px;
}

.sidebar-contact-content {
    position: relative;
    width: calc(100% - 75px);
    z-index: 1;
}

.sidebar-contact-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.sidebar-contact-content h3 {
    font-family: var(--default-font);
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
}

.sidebar-contact-content h3 a {
    color: inherit;
}

.service-feature-image {
    margin-bottom: 40px;
}

.service-feature-image figure {
    display: block;
    border-radius: 30px;
}

.service-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 50px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 30px;
}

.service-entry ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.service-care-box,
.service-beauty-box {
    margin-top: 60px;
}

.service-entry-images {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.service-entry-image {
    width: calc(50% - 15px);
}

.service-entry-image figure {
    display: block;
    border-radius: 30px;
}

.service-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.69;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry-box,
.service-entry-box-list-2,
.service-entry-box-list-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-entry-item {
    width: calc(50% - 15px);
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 30px;
}

.service-entry-box-list-1 .service-entry-item:nth-child(odd),
.service-entry-box-list-2 .service-entry-item:nth-child(even) {
    background: var(--primary-color);
}

.service-entry-item .icon-box {
    background: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-entry-item .icon-box img {
    max-width: 30px;
    transition: all 0.3s ease-in-out;
}

.service-entry-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.service-entry-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.service-entry-item-content p {
    margin: 0;
}

.service-entry-box-list-1 .service-entry-item:nth-child(odd) .service-entry-item-content h3,
.service-entry-box-list-1 .service-entry-item:nth-child(odd) .service-entry-item-content p,
.service-entry-box-list-2 .service-entry-item:nth-child(even) .service-entry-item-content h3,
.service-entry-box-list-2 .service-entry-item:nth-child(even) .service-entry-item-content p {
    color: var(--white-color);
}

.service-entry-video-image {
    position: relative;
    margin-top: 40px;
}

.service-entry-video-image .video-image a {
    display: block;
    cursor: none;
}

.service-entry-video-image .video-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.service-entry-video-image .video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.432;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(40%);
}

.service-entry-video-image .video-play-button.btn-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
}

.video-play-button.btn-effect a {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: none;
}

.video-play-button.btn-effect a:before {
    content: '';
    position: absolute;
    top: -33%;
    left: -33%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 25%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button.btn-effect a:after {
    content: '';
    position: absolute;
    top: -33%;
    left: -33%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 25%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: .5s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button.btn-effect a i {
    font-size: 18px;
    color: var(--white-color);
}

.about-counter-list.service-entry-counter-list {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
}

.about-counter-list.service-entry-counter-list .about-counter-item {
    width: calc(33.33% - 20px);
}

.about-counter-list.service-entry-counter-list .about-counter-item .about-counter-content h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

.faq-accordion.page-faq-accordion .accordion-item {
    border-bottom-color: var(--divider-color);
}

.faq-accordion.page-faq-accordion .accordion-header .accordion-button,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button::after,
.faq-accordion.page-faq-accordion .accordion-item .accordion-button.collapsed::after {
    color: var(--primary-color);
}

.faq-accordion.page-faq-accordion .accordion-item .accordion-body p {
    color: var(--text-color);
}

/************************************/
/***     22. Blog Archive css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***      23. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0 50px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 30px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-family: var(--accent-font);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2em;
    margin: 0 0 0.4em;
}

.post-entry h1 {
    font-size: 56px;
}

.post-entry h2 {
    font-size: 50px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url('../images/icon-blockquote.svg'), var(--primary-color);
    background-repeat: no-repeat;
    background-position: 35px 25px;
    background-size: 50px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--accent-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--accent-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/***   24. Case Study Page css	  ***/
/************************************/

.page-case-study {
    padding: 100px 0 70px;
}

.case-study-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.case-study-image {
    position: relative;
    margin-bottom: 20px;
}

.case-study-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    height: 100%;
    width: 100%;
    border-radius: 30px;
    opacity: 30%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.case-study-item:hover .case-study-image::before {
    transform: scale(1);
}

.case-study-image figure {
    border-radius: 30px;
    overflow: hidden;
}

.case-study-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image figure img {
    transform: scale(1.1);
}

.case-study-image .case-study-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.case-study-item:hover .case-study-btn {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.case-study-image .case-study-btn a {
    position: relative;
    display: block;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.case-study-image .case-study-btn a:hover {
    background-color: var(--accent-secondary-color);
}

.case-study-image .case-study-btn a img {
    width: 100%;
    max-width: 40px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.case-study-image .case-study-btn a:hover img {
    transform: rotate(0deg);
    filter: brightness(0) invert(0);
}

.case-study-content h3 {
    font-size: 22px;
    text-transform: capitalize;
}

.case-study-content h3 a {
    color: inherit;
}

/************************************/
/***   25. Case Stydy Single css  ***/
/************************************/

.page-case-study-single {
    padding: 100px 0;
}

.case-study-catagery-list {
    background: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 60px;
}

.case-study-catagery-list ul {
    margin: 0;
    padding: 30px;
    list-style: none;
}

.case-study-catagery-list ul li {
    font-family: var(--accent-font);
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1.5em;
    text-transform: capitalize;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.case-study-catagery-list ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.case-study-catagery-list ul li span {
    font-family: var(--default-font);
    font-size: 16px;
    color: var(--text-color);
    width: 50%;
    display: inline-flex;
    gap: 15px;
}

.case-study-catagery-list ul li span a {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease-in-out;
}

.case-study-catagery-list ul li span a:hover {
    background: var(--accent-color);
}

.case-study-catagery-list ul li span a i {
    color: inherit;
    font-size: 16px;
}

.case-study-feature-image {
    margin-bottom: 40px;
}

.case-study-feature-image figure {
    display: block;
    border-radius: 30px;
}

.case-study-feature-image img {
    width: 100%;
    aspect-ratio: 1 / 0.575;
    object-fit: cover;
    border-radius: 30px;
}

.case-study-entry {
    margin-bottom: 60px;
}

.case-study-entry p {
    margin-bottom: 20px;
}

.case-study-entry p:last-child {
    margin-bottom: 0;
}

.case-study-entry h2 {
    font-size: 50px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.case-study-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.case-study-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 30px;
}

.case-study-entry ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.case-study-transform-box {
    margin-top: 60px;
}

.case-study-image-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.case-study-content-box,
.case-study-enrty-image {
    width: calc(50% - 20px);
}

.case-study-content-item {
    margin-bottom: 30px;
}

.case-study-content-item:last-child {
    margin-bottom: 0;
}

.case-study-content-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.case-study-content-item ul {
    margin-bottom: 0;
}

.case-study-content-item ul li {
    width: 100%;
}

.case-study-enrty-image figure {
    display: block;
    border-radius: 30px;
}

.case-study-enrty-image img {
    width: 100%;
    aspect-ratio: 1 / 0.957;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***      26. Team Page css 	  ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/***      27. Team Single css	  ***/
/************************************/

.page-team-single {
    position: relative;
    padding: 100px 0;
}

.team-about-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.team-single-image,
.team-about-content {
    width: calc(50% - 30px);
}

.team-single-image figure {
    display: block;
    border-radius: 30px;
}

.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1.13;
    object-fit: cover;
    border-radius: 30px;
}

.team-about-content .section-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.team-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.team-contact-box {
    width: calc(50% - 20px);
    display: flex;
    align-items: center;
}

.team-contact-box .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}


.team-contact-box .icon-box img {
    width: 100%;
    max-width: 30px;
}

.team-contact-content {
    width: calc(100% - 80px);
}

.team-contact-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-contact-content p {
    margin: 0;
}

.team-social-icon {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
}

.team-social-icon h3 {
    font-size: 22px;
    text-transform: capitalize;
}

.team-social-icon ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-social-icon ul li {
    display: inline-block;
    margin-right: 15px;
}

.team-social-icon ul li:last-child {
    margin: 0;
}

.team-social-icon ul li a {
    color: var(--accent-color);
}

.team-social-icon ul li a:hover {
    color: var(--primary-color);
}

.team-social-icon ul li a i {
    color: inherit;
    font-size: 20px;
}

.team-expertise-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-expertise-box,
.team-skills-box {
    width: calc(50% - 15px);
}

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

.team-expertise-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 15px;
}

.team-expertise-list ul li:last-child {
    margin-bottom: 0;
}

.team-expertise-list ul li::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.team-skills-box .skills-progress-bar {
    margin-bottom: 30px;
}

.team-skills-box .skills-progress-bar:last-child {
    margin-bottom: 0;
}

/************************************/
/***   28. Testimonials Page css  ***/
/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
    padding: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-testimonials .testimonial-item .testimonial-body {
    width: 100%;
}

.page-testimonials .testimonial-item .testimonial-content {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
}

.page-testimonials .testimonial-item .testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.page-testimonials .testimonial-footer .testimonial-quote {
    margin-right: 0;
}

/************************************/
/***    29. Image Gallery css	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 20px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 30px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***    30. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 20px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 30px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 30px;
}

/************************************/
/***      31. FAQs Page css 	  ***/
/************************************/

.page-faqs {
    padding: 100px 0 50px;
}

.page-faqs .page-faq-accordion {
    margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/************************************/
/***   32. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
    padding: 100px 0 50px;
}

.contact-us-image {
    position: relative;
}

.contact-us-img figure {
    display: block;
    border-radius: 30px;
}

.contact-us-img figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(28, 73, 66, 0) 63.4%, #000000e0 93.4%);
    border-radius: 30px;
}

.contact-us-img img {
    width: 100%;
    aspect-ratio: 1 / 1.23;
    object-fit: cover;
    border-radius: 30px;
}

.opeaning-hour-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    z-index: 1;
}

.opeaning-hour-box .icon-box {
    margin-right: 20px;
}

.opeaning-hour-box .icon-box img {
    width: 100%;
    max-width: 60px;
}

.opeaning-hour-content {
    width: calc(100% - 80px);
}

.opeaning-hour-content h3 {
    color: var(--white-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.opeaning-hour-content p {
    color: var(--white-color);
    margin: 0;
}

.contact-us-content {
    margin-left: 20px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.contact-info {
    padding: 50px 0 20px;
}

.contact-info-item {
    background: #000;
    border-radius: 30px;
    padding: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    display: flex;
}

.contact-info-item .icon-box {
    background: var(--secondary-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item .icon-box img {
    width: 100%;
    max-width: 30px;
    filter: brightness(0.2);
}

.contact-info-content {
    width: calc(100% - 80px);
}

.contact-info-content h3 {
    color: var(--white-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.contact-info-content p {
    color: var(--white-color);
    margin: 0;
}

.contact-info-content p a {
    color: inherit;
}

.google-map {
    background: transparent;
    padding: 50px 0;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map .google-map-iframe,
.google-map .google-map-iframe iframe {
    border-radius: 30px;
}

/************************************/
/***  33. Book Appoiment Page css ***/
/************************************/

.page-book-appointment {
    padding: 100px 0;
}

.appointment-form-box {
    max-width: 850px;
    margin: 0 auto;
}

.appointment-form-box .section-title {
    text-align: center;
}

.appointment-form-box .book-appointment-form {
    text-align: center;
}

.appointment-form-box .book-appointment-form .form-control {
    opacity: 100%;
}

.appointment-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 60px;
    padding-top: 60px;
}

.appointment-contact-item {
    width: calc(33.33% - 20px);
}

.appointment-contact-list .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 10px;
    margin-bottom: 30px;
}

.appointment-contact-list .icon-box img {
    width: 100%;
    max-width: 24px;
}

.appointment-contact-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.appointment-contact-content p {
    margin-bottom: 0;
}

.appointment-contact-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.appointment-contact-content p a:hover {
    color: var(--primary-color);
}

.our-testimonials.book-appointment-testimonial {
    padding: 100px 0 50px;
}

/************************************/
/***    34. 404 Error Page css	  ***/
/************************************/

.error-page {
    padding: 100px 0 50px;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

.error-page-content-body p {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/************************************/
/***      35. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1800px) {

    .bg-section {
        width: calc(100% - 100px);
        margin-left: 50px;
        margin-right: 50px;
        max-width: 100%;
    }

    .our-process-content {
        padding: 100px 7.292vw 100px 3.056vw;
    }
}

@media only screen and (max-width: 1560px) {

    .bg-section {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 1300px) {
    .our-process-content {
        padding: 100px 30px 100px;
    }
}

@media only screen and (max-width: 991px) {

.btn-default {
    padding: 10px 40px 10px 10px;
}
    .btn-default::before {
        transform: translate(-15px, -50%);
    }

    .btn-default:hover::before {
        transform: translate(-12px, -50%);
    }

    .readmore-btn {
        font-size: 16px;
    }

    .navbar {
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .bg-section {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-row .section-title {
        max-width: 100%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 46px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-row .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
    }

    .hero-section {
        padding: 40px 0 0;
    }

    .hero-section::before {
        width: 130px;
        height: 150px;
        opacity: 50%;
    }

    .hero-section::after {
        width: 120px;
        height: 88px;
        opacity: 50%;
    }

    .hero-section.hero-bg-image {
        padding: 100px 0;
    }

    .hero-section.hero-bg-image.hero-slider-layout .hero-slide {
        padding: 100px 0;
    }

    .hero-section.hero-bg-image.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-section.hero-bg-image .hero-content {
        margin-bottom: 0;
    }

    .hero-section.hero-bg-image .hero-content {
        max-width: 100%;
    }

    .hero-section.hero-bg-image .hero-content .section-title h1 {
        font-size: 60px;
    }

    .hero-review-box {
        margin-top: 30px;
    }

    .hero-review-box-title {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .hero-image {
        width: 100%;
        max-width: 75%;
        margin: 0 auto;
    }

    .hero-contact-circle img {
        max-width: 100px;
    }

    .hero-cta-info {
        gap: 25px 40px;
    }

    .hero-cta-item {
        width: calc(33.33% - 26.67px);
    }

    .hero-cta-item::before {
        right: -20px;
    }

    .hero-cta-item-title h3 {
        font-size: 20px;
    }

    .hero-cta-item-content p {
        font-size: 16px;
    }

    .hero-cta-box {
        padding: 25px 0;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-image {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .about-img-1 figure,
    .about-img-1 img {
        border-radius: 20px;
    }

    .about-img-2 {
        border-radius: 20px;
    }

    .contact-us-circle img {
        max-width: 110px;
    }

    .about-body-list {
        margin-bottom: 30px;
    }

    .about-body-list ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .about-body-list ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .about-video-button a {
        padding: 13px 20px;
    }

    .about-team-member {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .about-team-member img {
        max-width: 40px;
        margin-bottom: 15px;
    }

    .about-team-member h2 {
        font-size: 34px;
    }

    .about-counter-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-counter-item {
        width: calc(50% - 15px);
    }

    .about-counter-item .icon-box {
        margin-right: 15px;
    }

    .about-counter-item .icon-box img {
        max-width: 40px;
    }

    .about-counter-content {
        width: calc(100% - 55px);
    }

    .about-counter-content h2 {
        font-size: 34px;
    }

    .our-services {
        padding: 50px 0;
    }

    .our-services::before {
        width: 118px;
        height: 124px;
        opacity: 50%;
    }

    .our-services::after {
        width: 160px;
        height: 120px;
        opacity: 50%;
    }

    .service-image a {
        border-radius: 20px;
    }

    .service-image img {
        aspect-ratio: 1 / 0.95;
        border-radius: 20px;
    }

    .service-item {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .service-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-item .icon-box img {
        max-width: 26px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .services-pagination {
        margin-top: 40px;
    }

    .section-footer-text {
        margin-top: 30px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-content {
        margin: 0 0 30px 0;
    }

    .why-choose-content .section-title {
        margin-bottom: 20px;
    }

    .why-choose-list-item {
        margin-top: 20px;
        padding-top: 20px;
    }

    .why-choose-list-item .icon-box {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .why-choose-list-item .icon-box img {
        max-width: 34px;
    }

    .why-choose-item-content {
        width: calc(100% - 75px);
    }

    .why-choose-item-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .why-choose-image figure {
        border-radius: 20px;
    }

    .why-choose-image img {
        aspect-ratio: 1 / 0.78;
        border-radius: 20px;
    }

    .process-video-box,
    .process-video-image figure {
        height: auto;
    }

    .process-video-image {
        height: auto;
        border-radius: 0;
    }

    .process-video-image img {
        height: auto;
        aspect-ratio: 1 / 0.61;
    }

    .video-play-box {
        bottom: 30px;
        left: 15px;
        right: 15px;
    }

    .video-play-button a {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .video-play-button a i {
        font-size: 18px;
    }

    .video-play-content {
        width: calc(100% - 65px);
    }

    .video-play-content h3 {
        margin-bottom: 5px;
    }

    .video-play-content h2 {
        font-size: 34px;
    }

    .our-process-content {
        display: block;
        height: auto;
        padding: 50px 15px;
    }

    .our-process-list ul {
        gap: 10px 20px;
    }

    .our-process-list ul li {
        padding-left: 25px;
    }

    .our-process-list ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .our-process-btn {
        margin-top: 30px;
    }

    .our-process-content .section-footer-text {
        margin-top: 30px;
    }

    .how-we-work {
        padding: 50px 0;
    }

    .how-we-work-content {
        margin: 0 0 30px 0;
    }

    .how-work-step-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .how-work-step-no h2 {
        font-size: 34px;
    }

    .how-work-step-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .how-we-work-img figure {
        border-radius: 20px;
    }

    .how-we-work-img img {
        aspect-ratio: 1 / 0.7;
    }

    .how-work-contact-info {
        bottom: 40px;
        left: 40px;
        right: 40px;
    }

    .how-work-contact-info h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .our-benefit {
        padding: 50px 0;
    }

    .our-benefit::before {
        width: 130px;
        height: 150px;
        opacity: 50%;
    }

    .our-benefit::after {
        width: 150px;
        height: 105px;
        opacity: 50%;
    }

    .our-benefit-item {
        margin-bottom: 30px;
    }

    .our-benefit-item .icon-box {
        width: 50px;
        height: 50px;
        margin-left: 15px;
    }

    .our-benefit-box-2 .our-benefit-item .icon-box {
        margin: 0 15px 0 0;
    }

    .our-benefit-item .icon-box img {
        max-width: 26px;
    }

    .our-benefit-item-content {
        width: calc(100% - 65px);
    }

    .our-benefit-item-content h3 {
        font-size: 20px;
    }

    .our-benefit-image {
        max-width: 55%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .our-results {
        padding: 50px 0;
    }

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

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs::before {
        width: 145px;
        height: 165px;
        opacity: 50%;
    }

    .our-faqs::after {
        width: 170px;
        height: 115px;
        opacity: 50%;
    }

    .our-faqs-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 20px;
        padding-right: 20px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 16px;
    }

    .faq-accordion .accordion-button:not(.collapsed) {
        padding-bottom: 10px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 20px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .testimonial-item {
        padding: 20px;
        border-radius: 20px;
    }

    .testimonial-quote {
        margin-right: 10px;
    }

    .testimonial-quote img {
        max-width: 40px;
    }

    .testimonial-body {
        width: calc(100% - 50px);
    }

    .testimonial-rating {
        margin-bottom: 10px;
    }

    .testimonial-rating i {
        font-size: 16px;
    }

    .testimonial-content {
        margin-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

    .author-content h3 {
        font-size: 20px;
    }

    .testimonial-pagination {
        margin-top: 30px;
    }

    .trusted-client-box {
        gap: 20px;
        margin-top: 40px;
    }

    .trusted-client-title h3 {
        font-size: 20px;
        max-width: 220px;
    }

    .trusted-client-box .testimonial-company-slider {
        width: calc(100% - 240px);
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .our-team::before {
        top: 20px;
        width: 145px;
        height: 115px;
        opacity: 50%;
    }

    .our-team::after {
        bottom: 20px;
        width: 120px;
        height: 120px;
        opacity: 50%;
    }

    .team-image img {
        aspect-ratio: 1 / 1.15;
    }

    .team-body {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-item-content,
    .post-featured-image {
        margin-bottom: 15px;
    }

    .post-featured-image a,
    .post-featured-image img {
        border-radius: 20px;
    }

    .post-featured-image img {
        aspect-ratio: 1 / 0.73;
    }

    .post-item-content h2 {
        font-size: 20px;
    }

    .book-appointment {
        padding: 50px 0;
    }

    .book-appointment::before {
        width: 118px;
        height: 124px;
        opacity: 50%;
    }

    .book-appointment::after {
        width: 170px;
        height: 135px;
        opacity: 50%;
    }

    .booking-contact-list {
        margin-bottom: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
        border-radius: 20px;
    }

    .booking-form-box {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .book-appointment-form .form-control {
        padding: 14px 15px;
    }

    .our-scrolling-ticker {
        padding: 25px 0;
    }

    .scrolling-ticker-box {
        --gap: 20px;
    }

    .scrolling-content span img {
        max-width: 30px;
        margin-right: 20px;
    }

    .scrolling-content span {
        font-size: 75px;
    }

    .footer-main {
        padding: 40px 0 0;
        margin-bottom: 0;
    }

    .footer-main::before {
        width: 130px;
        height: 150px;
        opacity: 50%;
    }

    .footer-main::after {
        width: 120px;
        height: 128px;
        opacity: 50%;
    }

    .about-footer {
        margin: 0 0 30px 0;
    }

    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-newsletters-form .form-group .form-control {
        padding: 8px 10px;
    }

    .footer-contact-item {
        margin-bottom: 20px;
    }

    .footer-links h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-contact-content h3,
    .footer-contact-info-item h3 {
        margin-bottom: 5px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 20px 0;
    }

    .footer-social-links ul li {
        margin-right: 8px;
    }

    .page-header {
        padding: 70px 0;
    }

    .page-header:before {
        width: 90px;
        height: 105px;
        opacity: 50%;
    }

    .page-header:after {
        width: 93px;
        height: 68px;
        opacity: 50%;
    }

    .page-header-box h1 {
        font-size: 46px;
    }

    .our-mission-vision {
        padding: 50px 0 0;
        margin-bottom: 100px;
    }

    .mission-vision-list {
        margin-bottom: -100px;
    }

    .mission-vision-item {
        padding: 20px;
        border-radius: 20px;
    }

    .mission-vision-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .mission-vision-item .icon-box img {
        max-width: 26px;
    }

    .mission-vision-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .mission-vision-content p {
        font-size: 16px;
    }

    .who-we-are {
        padding: 50px 0;
    }

    .who-we-are-images {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .who-we-img-1 figure,
    .who-we-img-2 figure,
    .who-we-img-1 img,
    .who-we-img-2 img {
        border-radius: 20px;
    }

    .reliable-expertise-box {
        padding: 25px 30px;
        border-radius: 20px;
    }

    .reliable-expertise-box .icon-box {
        margin-right: 15px;
    }

    .reliable-expertise-box .icon-box img {
        max-width: 40px;
    }

    .reliable-expertise-content {
        width: calc(100% - 55px);
    }

    .reliable-expertise-content h2 {
        font-size: 34px;
    }

    .who-we-circle-img {
        border-width: 5px;
    }

    .who-we-circle-img img {
        max-width: 110px;
    }

    .who-we-are-body {
        margin-bottom: 30px;
    }

    .who-we-are-body ul {
        gap: 10px 20px;
    }

    .who-we-are-body ul li {
        padding-left: 25px;
    }

    .who-we-are-body ul li::before {
        font-size: 18px;
        top: 3px;
    }

    .our-innovation {
        padding: 50px 0;
    }

    .our-innovation-content {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 15px;
    }

    .skills-progress-bar .skill-data .skill-title {
        font-size: 20px;
    }

    .our-innovation-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .customer-review-box {
        width: 230px;
        padding: 12px 15px;
    }

    .customer-review-box .icon-box {
        margin-right: 10px;
    }

    .customer-review-box .icon-box i {
        font-size: 30px;
    }

    .customer-review-box-content {
        width: calc(100% - 40px);
    }

    .customer-review-box-content h2 {
        font-size: 20px;
    }

    .our-dermatology {
        padding: 50px 0;
    }

    .our-dermatology-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .our-dermatology-img figure:before,
    .our-dermatology-img img {
        border-radius: 20px;
    }

    .our-dermatology-img img {
        aspect-ratio: 1 / 0.8;
    }

    .dermatology-care-box {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .dermatology-care-box .icon-box {
        margin-right: 20px;
    }

    .dermatology-care-box .icon-box img {
        max-width: 50px;
    }

    .dermatology-care-content {
        width: calc(100% - 70px);
    }

    .dermatology-care-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .our-dermatology-body,
    .dermatology-item {
        margin-bottom: 30px;
    }

    .dermatology-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .dermatology-item .icon-box img {
        max-width: 26px;
    }

    .dermatology-item-content {
        width: calc(100% - 65px);
    }

    .dermatology-item-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .our-excellence {
        padding: 50px 0;
    }

    .our-excellence-content {
        margin-bottom: 30px;
    }

    .excellence-item {
        margin-bottom: 30px;
    }

    .excellence-item:after {
        transform: translate(25px, 50px);
    }

    .excellence-item-no {
        width: 50px;
        height: 50px;
    }

    .excellence-item-no h3 {
        font-size: 20px;
    }

    .excellence-item-content {
        width: calc(100% - 65px);
    }

    .excellence-item-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .our-excellence-image {
        margin-left: 0;
    }

    .our-excellence-img figure,
    .our-excellence-img img {
        border-radius: 20px;
    }

    .our-excellence-img img {
        aspect-ratio: 1 / 1.01;
    }

    .skincare-list {
        border-radius: 20px;
    }

    .skincare-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .skincare-item .icon-box img {
        max-width: 26px;
    }

    .skincare-item-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0 25px;
    }

    .page-single-sidebar {
        position: initial;
        top: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .page-catagery-list {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .page-catagery-list h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .page-catagery-list ul li a {
        padding: 12px 40px 12px 15px;
    }

    .page-catagery-list ul li a::before {
        right: 15px;
    }

    .sidebar-cta-box {
        padding: 60px 20px 20px 20px;
        border-radius: 20px;
    }

    .sidebar-cta-content .icon-box {
        margin-bottom: 30px;
    }

    .sidebar-cta-content .icon-box img {
        max-width: 50px;
    }

    .sidebar-cta-content {
        margin-bottom: 15px;
    }

    .sidebar-cta-contact {
        padding: 10px;
    }

    .sidebar-cta-contact .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .sidebar-cta-contact .icon-box img {
        max-width: 26px;
    }

    .sidebar-contact-content {
        width: calc(100% - 60px);
    }

    .service-feature-image {
        margin-bottom: 30px;
    }

    .service-feature-image figure,
    .service-feature-image img {
        border-radius: 20px;
    }

    .service-entry {
        margin-bottom: 30px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .service-entry ul {
        gap: 10px;
    }

    .service-entry ul li {
        width: calc(50% - 5px);
        padding-left: 25px;
    }

    .service-entry ul li::before {
        font-size: 18px;
    }

    .service-care-box,
    .service-beauty-box {
        margin-top: 30px;
    }

    .service-entry-images {
        margin: 30px 0;
    }

    .service-entry-image figure,
    .service-entry-image img {
        border-radius: 20px;
    }

    .service-entry-item {
        border-radius: 20px;
        padding: 20px;
    }

    .service-entry-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-entry-item-content h3 {
        font-size: 20px;
    }

    .service-entry-video-image {
        margin-top: 30px;
    }

    .service-entry-video-image .video-image figure,
    .service-entry-video-image .video-image img {
        border-radius: 20px;
    }

    .about-counter-list.service-entry-counter-list .about-counter-item .about-counter-content h2 {
        font-size: 34px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
        text-align: center;
    }

    .page-single-post {
        padding: 50px 0 25px;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.45em;
    }

    .post-entry h2 {
        font-size: 34px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 45px;
        padding: 20px 20px 20px 80px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .tag-links {
        font-size: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-case-study {
        padding: 50px 0 20px;
    }

    .case-study-image {
        margin-bottom: 15px;
    }

    .case-study-image::before,
    .case-study-image figure,
    .case-study-image figure img {
        border-radius: 20px;
    }

    .case-study-image figure img {
        aspect-ratio: 1 / 0.75;
    }

    .case-study-image .case-study-btn a {
        width: 70px;
        height: 70px;
    }

    .case-study-image .case-study-btn a img {
        max-width: 35px;
    }

    .case-study-content h3 {
        font-size: 20px;
    }

    .page-case-study-single {
        padding: 50px 0;
    }

    .case-study-catagery-list {
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .case-study-catagery-list ul {
        padding: 20px;
    }

    .case-study-catagery-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .case-study-feature-image {
        margin-bottom: 30px;
    }

    .case-study-feature-image img,
    .case-study-feature-image figure {
        border-radius: 20px;
    }

    .case-study-entry {
        margin-bottom: 30px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .case-study-entry h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .case-study-entry ul {
        gap: 10px;
    }

    .case-study-entry ul li {
        width: calc(50% - 5px);
        padding-left: 25px;
    }

    .case-study-entry ul li::before {
        font-size: 18px;
    }

    .case-study-transform-box {
        margin-top: 30px;
    }

    .case-study-content-item h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .case-study-content-item ul li {
        width: 100%;
    }

    .case-study-enrty-image figure,
    .case-study-enrty-image img {
        border-radius: 20px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-about-box {
        margin-bottom: 40px;
        gap: 30px;
    }

    .team-about-content .section-title {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .team-single-image,
    .team-about-content {
        width: 100%;
    }

    .team-single-image figure {
        border-radius: 20px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.75;
        border-radius: 20px;
    }

    .team-contact-list {
        gap: 30px;
        margin-bottom: 30px;
    }

    .team-contact-box {
        width: calc(50% - 15px);
    }

    .team-contact-box .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .team-contact-box .icon-box img {
        max-width: 26px;
    }

    .team-contact-content {
        width: calc(100% - 65px);
    }

    .team-contact-content h3 {
        font-size: 20px;
    }

    .team-social-icon {
        padding: 15px;
    }

    .team-social-icon h3 {
        font-size: 20px;
    }

    .team-expertise-box,
    .team-skills-box {
        width: 100%;
    }

    .team-expertise-list ul li {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .team-expertise-list ul li::before {
        font-size: 18px;
    }

    .team-skills-box .skills-progress-bar {
        margin-bottom: 20px;
    }

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-testimonials .testimonial-item {
        padding: 20px;
    }

    .page-testimonials .testimonial-item .testimonial-content {
        padding-bottom: 20px;
    }

    .page-gallery {
        padding: 50px 0 0px;
    }

    .page-gallery-box .photo-gallery figure,
    .page-gallery-box .photo-gallery img {
        border-radius: 20px;
    }

    .page-video-gallery {
        padding: 50px 0 0px;
    }

    .video-gallery-image a::before,
    .video-gallery-image img {
        border-radius: 20px;
    }

    .page-faqs {
        padding: 50px 0 25px;
    }

    .page-faqs .page-faq-accordion {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0 25px;
    }

    .contact-us-image {
        margin-bottom: 30px;
    }

    .contact-us-img figure,
    .contact-us-img figure:before,
    .contact-us-img img {
        border-radius: 20px;
    }

    .contact-us-img img {
        aspect-ratio: 1 / 0.8;
    }

    .opeaning-hour-box .icon-box {
        margin-right: 15px;
    }

    .opeaning-hour-box .icon-box img {
        max-width: 50px;
    }

    .opeaning-hour-content {
        width: calc(100% - 65px);
    }

    .opeaning-hour-content h3 {
        font-size: 20px;
    }

    .contact-us-content {
        margin-left: 0px;
    }

    .contact-form .form-control {
        padding: 12px 15px;
    }

    .contact-info {
        padding: 25px 0 0px;
    }

    .contact-info-item {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-info-item .icon-box img {
        max-width: 26px;
    }

    .contact-info-content {
        width: calc(100% - 65px);
    }

    .contact-info-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .google-map {
        padding: 25px 0;
    }

    .google-map .google-map-iframe,
    .google-map .google-map-iframe iframe {
        border-radius: 0px;
    }

    .page-book-appointment {
        padding: 50px 0;
    }

    .appointment-contact-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .appointment-contact-list .icon-box {
        margin-bottom: 15px;
    }

    .appointment-contact-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .our-testimonials.book-appointment-testimonial {
        padding: 50px 0 25px;
    }

    .error-page {
        padding: 50px 0 25px;
    }

    .error-page-content {
        max-width: 100%;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    body {
        font-size: 16px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-section.hero-bg-image .hero-content .section-title h1 {
        font-size: 38px;
    }

    .hero-review-image {
        margin-right: 10px;
    }

    .hero-review-item-content {
        width: calc(100% - 60px);
        gap: 10px;
    }

    .hero-review-box-title h3 {
        /* font-size: 18px; */
    }

    .hero-review-item-content span {
        padding: 4px 8px;
    }

    .hero-review-item-content span i {
        margin-left: 5px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image figure img {
        aspect-ratio: 1 / 1.05;
    }

    .hero-contact-circle {
        left: 20px;
        bottom: 28%;
    }

    .hero-contact-circle img {
        max-width: 80px;
    }

    .hero-cta-item {
        width: 100%;
    }

    .hero-cta-item::before {
        display: none;
    }

    .hero-cta-item-header {
        margin-bottom: 5px;
    }

    .hero-cta-item-header .icon-box img {
        max-width: 18px;
    }

    .hero-cta-item-title h3 {
        font-size: 18px;
    }

    .about-us-image {
        max-width: 100%;
        padding: 0px 80px 38px 0;
    }

    .about-img-2 {
        max-width: 250px;
        border-width: 5px;
    }

    .contact-us-circle {
        top: 40px;
        right: 40px;
    }

    .contact-us-circle img {
        max-width: 80px;
    }

    .about-us-body .about-body-content,
    .about-team-member {
        width: 100%;
    }

    .about-body-footer {
        gap: 15px;
    }

    .about-team-member {
        padding: 20px;
    }

    .about-team-member h2 {
        font-size: 26px;
    }

    .about-counter-item {
        width: 100%;
    }

    .about-counter-content h2 {
        font-size: 28px;
    }

    .service-item {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .services-pagination {
        margin-top: 30px;
    }

    .section-footer-text {
        margin-top: 20px;
    }

    .why-choose-list-item {
        align-items: start;
    }

    .why-choose-list-item .icon-box {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .why-choose-list-item .icon-box img {
        max-width: 25px;
    }

    .why-choose-item-content {
        width: calc(100% - 55px);
    }

    .why-choose-item-content h3 {
        font-size: 18px;
    }

    .why-choose-image img {
        aspect-ratio: 1 / 0.95;
    }

    .video-play-box {
        bottom: 20px;
    }

    .process-video-image img {
        aspect-ratio: 1 / 0.85;
    }

    .video-play-content h2 {
        font-size: 26px;
    }

    .our-process-list ul li {
        width: 100%;
    }

    .how-work-step-item {
        gap: 10px;
    }

    .how-work-step-no h2 {
        font-size: 26px;
    }

    .how-work-step-content h3 {
        font-size: 18px;
    }

    .how-we-work-img img {
        aspect-ratio: 1 / 0.99;
    }

    .how-work-contact-info {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .how-work-contact-info h2 {
        font-size: 18px;
    }

    .our-benefit-box-1 .our-benefit-item {
        flex-direction: row;
    }

    .our-benefit-box-1 .our-benefit-item .icon-box {
        margin: 0 15px 0 0;
    }

    .our-benefit-item-content {
        width: calc(100% - 55px);
    }

    .our-benefit-box-1 .our-benefit-item-content {
        text-align: left;
    }

    .our-benefit-item-content h3 {
        font-size: 18px;
    }

    .our-benefit-image {
        max-width: 100%;
        margin: 30px 0;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0;
    }

    .testimonial-item {
        display: block;
    }

    .testimonial-quote {
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .testimonial-body {
        width: 100%;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .author-content h3 {
        font-size: 18px;
    }

    .trusted-client-title h3 {
        font-size: 18px;
        max-width: 100%;
    }

    .trusted-client-box .testimonial-company-slider {
        width: 100%;
    }

    .team-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .booking-contact-item {
        width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .scrolling-content span {
        font-size: 50px;
    }

    .scrolling-content span img {
        max-width: 24px;
    }

    .footer-logo,
    .about-footer-content {
        margin-bottom: 15px;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h3 {
        font-size: 18px;
    }

    .footer-copyright {
        flex-direction: column;
        margin-top: 0;
        padding: 15px 0;
    }

    .footer-social-links span {
        font-size: 18px;
    }

    .page-header-box h1 {
        font-size: 36px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }

    .our-mission-vision {
        margin-bottom: 50px;
    }

    .our-mission-vision:before {
        width: 108px;
        height: 110px;
    }

    .our-mission-vision:after {
        top: 20px;
        width: 135px;
        height: 110px;
    }

    .mission-vision-list {
        margin-bottom: -50px;
    }

    .mission-vision-item {
        width: 100%;
    }

    .mission-vision-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .who-we-are-images {
        max-width: 100%;
        gap: 20px;
    }

    .who-we-image-box-1,
    .who-we-image-box-2 {
        width: calc(50% - 10px);
    }

    .reliable-expertise-box {
        padding: 10px;
        border-radius: 12px;
    }

    .reliable-expertise-box .icon-box {
        margin-right: 10px;
    }

    .reliable-expertise-box .icon-box img {
        max-width: 30px;
    }

    .reliable-expertise-content {
        width: calc(100% - 40px);
    }

    .reliable-expertise-content h2 {
        font-size: 26px;
    }

    .reliable-expertise-content p {
        font-size: 12px;
    }

    .who-we-circle-img {
        bottom: 50px;
    }

    .who-we-circle-img img {
        max-width: 90px;
    }

    .who-we-are-body ul li {
        width: 100%;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .skills-progress-bar .skill-data .skill-title {
        font-size: 18px;
    }

    .skills-progress-bar .skillbar .skill-progress {
        height: 12px;
    }

    .our-innovation-image {
        max-width: 100%;
        padding: 0 30px 55px 0;
    }

    .our-innovation-img-2 {
        max-width: 170px;
        border-width: 5px;
    }

    .customer-review-box {
        width: 200px;
        bottom: 50px;
    }

    .customer-review-box .icon-box i {
        font-size: 25px;
    }

    .customer-review-box-content {
        width: calc(100% - 35px);
    }

    .customer-review-box-content h2 {
        font-size: 18px;
    }

    .customer-review-box-content p {
        font-size: 14px;
    }

    .our-dermatology-img img {
        aspect-ratio: 1 / 1.03;
    }

    .dermatology-care-box .icon-box {
        margin-right: 10px;
    }

    .dermatology-care-box .icon-box img {
        max-width: 40px;
    }

    .dermatology-care-content {
        width: calc(100% - 50px);
    }

    .dermatology-care-content h3 {
        font-size: 18px;
    }

    .dermatology-item-content h3 {
        font-size: 18px;
    }

    .excellence-item:after {
        transform: translate(20px, 40px);
    }

    .excellence-item-no {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .excellence-item-no h3 {
        font-size: 18px;
    }

    .excellence-item-content {
        width: calc(100% - 50px);
    }

    .excellence-item-content h3 {
        font-size: 18px;
    }

    .our-excellence-img img {
        aspect-ratio: 1 / 2;
    }

    .skincare-list {
        width: 180px;
    }

    .skincare-item {
        padding: 15px;
    }

    .skincare-item .icon-box {
        width: 40px;
        height: 40px;
    }

    .skincare-item .icon-box img {
        max-width: 20px;
    }

    .skincare-item-content h3 {
        font-size: 18px;
    }

    .page-catagery-list h3 {
        font-size: 18px;
    }

    .sidebar-cta-content .icon-box {
        margin-bottom: 20px;
    }

    .service-feature-image {
        margin-bottom: 20px;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-entry-image {
        width: 100%;
    }

    .service-entry-item {
        width: 100%;
    }

    .service-entry-box-list-2 .service-entry-item:nth-child(even) {
        background: var(--white-color);
    }

    .service-entry-box-list-2 .service-entry-item:nth-child(odd) {
        background: var(--primary-color);
    }

    .service-entry-box-list-2 .service-entry-item:nth-child(even) .service-entry-item-content h3 {
        color: var(--primary-color);
    }

    .service-entry-box-list-2 .service-entry-item:nth-child(even) .service-entry-item-content p {
        color: var(--text-color);
    }

    .service-entry-box-list-2 .service-entry-item:nth-child(odd) .service-entry-item-content h3,
    .service-entry-box-list-2 .service-entry-item:nth-child(odd) .service-entry-item-content p {
        color: var(--white-color);
    }

    .service-entry-item-content h3 {
        font-size: 18px;
    }

    .service-entry-video-image .video-image img {
        aspect-ratio: 1 / 0.64;
    }

    .about-counter-list.service-entry-counter-list .about-counter-item {
        width: 100%;
    }

    .about-counter-list.service-entry-counter-list .about-counter-item .about-counter-content h2 {
        font-size: 28px;
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 12px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .case-study-image .case-study-btn a {
        width: 60px;
        height: 60px;
    }

    .case-study-image .case-study-btn a img {
        max-width: 30px;
    }

    .case-study-content h3 {
        font-size: 18px;
    }

    .case-study-catagery-list ul li {
        font-size: 18px;
    }

    .case-study-catagery-list ul li span {
        width: 56%;
    }

    .case-study-feature-image {
        margin-bottom: 20px;
    }

    .case-study-entry h2 {
        font-size: 26px;
    }

    .case-study-entry ul li {
        width: 100%;
    }

    .case-study-content-box,
    .case-study-enrty-image {
        width: 100%;
    }

    .case-study-content-item {
        margin-bottom: 20px;
    }

    .case-study-content-item h3 {
        font-size: 18px;
    }

    .case-study-enrty-image img {
        aspect-ratio: 1 / 0.82;
    }

    .team-about-box {
        margin-bottom: 30px;
        gap: 20px;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.99;
    }

    .team-about-content .section-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .team-contact-list {
        gap: 20px;
    }

    .team-contact-box {
        width: 100%;
    }

    .team-social-icon h3,
    .team-contact-content h3 {
        font-size: 18px;
    }

    .team-social-icon ul li a i {
        font-size: 18px;
    }

    .contact-us-img img {
        aspect-ratio: 1 / 1.05;
    }

    .opeaning-hour-box {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .opeaning-hour-box .icon-box {
        margin-right: 10px;
    }

    .opeaning-hour-box .icon-box img {
        max-width: 40px;
    }

    .opeaning-hour-content {
        width: calc(100% - 50px);
    }

    .opeaning-hour-content h3 {
        font-size: 18px;
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .appointment-contact-list {
        margin-top: 20px;
        padding-top: 20px;
    }

    .appointment-contact-item {
        width: 100%;
    }

    .appointment-contact-content h3 {
        font-size: 18px;
    }
}


.header-btn .btn-default::before {
    display: none;
}

.header-btn .btn-default {
    padding: 15px;
    border-radius: 50%;
}

.header-btn {
    display: flex;
    gap: 16px;
}

.service-btn .btn-default {
    border: 2px solid #fff;
    background: transparent;
    border-radius: 40px;
    margin-top: 10px;
}

.service-btn span {
    font-family: 'Marcellus';
    border: 1px solid #fff;
    padding: 6px 18px;
    border-radius: 20px;
    background: #fff;
    color: #000;
    margin-top: 11px;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.our-services .nav-link {
    background: #000;
    color: #fff;
    border-radius: 20px;
    font-family: 'DM Sans';
    font-size: 18px;
    padding: 11px 16px;
}


.our-services .nav-tabs .nav-link {
    border-radius: 20px;
}

.our-services .nav-link:focus,
.nav-link:hover {
    color: #fff;
}

.our-services .nav-tabs {
    gap: 20px;
    justify-content: center;
    border-bottom: unset;
    margin-bottom: 32px;
}

.our-services .nav-link:focus {
    color: #000;
}

.why-choose-us.testi-sec .why-choose-image img {
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 102vh;
    overflow: hidden;
    padding: 0px 70px;
    padding-top: 90px;
}

video {
    width: 100%;
    height: 85%;
    object-fit: cover;
    border-radius: 30px;
}

.overlay-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background 0.3s;
}

.overlay-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-bar .marquee-item {
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
    font-family: 'Marcellus';
    padding: 10px 0px;
}

.top-bar {
    background: #000000;
}

.arricals-sec {
    padding: 100px 0px 0px;
}

.heading-arrivals h2 {
    text-align: center;
    font-size: 60px;
}

.heading-arrivals {
    margin-bottom: 40px;
}

.img-beauty img {
    width: 100%;
    border-radius: 30px;
}

.beauty-text h2 {
    text-transform: capitalize;
    font-size: 40px;
    line-height: 53px;
    color: #fff;
}

.beauty-sec .row {
    align-items: center;
}

.beauty-sec {
    background: #000;
    padding: 30px 0px;
    margin: 0px 40px;
    border-radius: 30px;
}

.beauty-btn {
    margin-top: 30px;
}


/*---------------------------------------------------- Accounts Section Start --------------------------------------------------------------*/

.login-txt form input {
    width: 100%;
    margin-bottom: 20px;
    outline: none;
    padding: 10px 40px 10px 20px;
    color: #000;
    font-weight: 400;
    border: 1px solid #0000002b;
    border-radius: 5px;
}

.login-txt form input::placeholder {
    color: #c7c7c7;
    font-size: 15px;
}

.login-txt form input:focus {
    box-shadow: none;
    border: 1px solid #0000002b;
}

.login-txt h2 {
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-size: 38px;
}

.password-box {
    position: relative;
    margin-bottom: 20px;
}

.password-box-input input {
    padding: 10px 40px 10px 20px;
}

.password-icon {
    position: absolute;
    top: 27%;
    right: 3%;
}

.password-icon span {
    color: #000;
    cursor: pointer;
}

.login-txt {
    padding: 45px 25px 35px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #0000001a;
}

.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

li.head {
    font-size: 17px;
    font-weight: 600;
}

.login-txt ul li {
    display: flex;
    gap: 7px;
    font-weight: 400;
    font-size: 15px;
}


.login-txt form button {
    width: 100%;
    color: #fff;
    padding: 16px 0px;
    outline: none;
    border: none;
    margin-bottom: 20px;
    font-size: 22px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: ease-in;
    transition-duration: 0.2s;
    background: #000;
    font-family: "Marcellus", serif;
}

.login-txt form button:hover {
    background-image: unset;
    background-color: #b7b7b7;
    transition: ease-out;
    transition-duration: 0.2s;
    color: #000;
}

li.head-ex {
    text-decoration: underline;
}

.login-txt ul li label {
    cursor: pointer;
    font-size: 15px;
}

.login-txt-ex form input:focus {
    background-color: #fff;
    color: #000;
}

.login-txt-ex ul {
    justify-content: space-between;
}

section.login.sec {
    padding: 100px 0;
}

.login-txt.login-txt-ex li.head a {
    font-size: 15px;
    color: #0000009c !important;
}

.login-txt ul li a {
    color: #000;
}

/*---------------------------------------------------- Accounts Section End --------------------------------------------------------------*/

/*-------------------------------------------------------- Inner Cart Start --------------------------------------------------------------------*/

/* CART PAGES CSS:STRT */

.product-cart figure,
.product-cart article {
    display: inline-block;
}

.product-cart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}


.cart-page-tble thead tr {
    height: 40px;
    color: #fff;
    background-color: #000;
}

.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}

.cart-page-tble tbody tr td {
    padding: 30px 0px;
}

table.cart-page-tble {
    width: 100%;
}

.cart-page-tble tbody tr td .quantity {
    height: 50px;
    width: 130px;
    display: flex;
    margin: 15px auto;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e1e1;
}

.cart-page-tble tbody tr td .quantity input {
    width: 50px;
    text-align: center;
    font-size: 16px;
    color: #000;
    background-color: transparent;
    border: none;
    margin: 0 5px;
}

.cart-page-tble tbody tr td .quantity i {
    background-color: #ffff;
}

.product-cart article p {
    font-size: 17px;
    color: #4d4c4c;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 30px;
}

.product-cart article {
    margin-left: 10px !important;
}

.cart-page-tble tbody tr td input {
    height: 60px;
    background-color: #ffff;
    color: #000;
    border: 1px solid #00000030;
}

.update-cart {
    font-size: 19px;
    text-transform: capitalize;
    color: #4d4c4c;
    margin-top: 10px;
    margin-bottom: unset;
}

.shipping.text-black h4 {
    color: #4d4c4c;
    font-size: 30px;
    text-transform: uppercase;
}

.estimate.text-black h4 {
    color: #4d4c4c;
    font-size: 30px;
    text-transform: uppercase;
}

.unit-sub-price-text {
    font-size: 17px;
    color: #4d4c4c;
    font-family: 'Montserrat';
}

.cart-page-tble tbody tr {
    border-bottom: 1px solid #c4c4c4;
}

.cart-page-tble tbody tr td i {
    border-radius: 0;
    background-color: #000;
}

.cart-cross {
    height: 40px;
    width: 40px;
    font-size: 25px;
    background: #000000;
    color: #fff;
    padding: 7px;
}

.total-box,
.total-f,
.shipping-box {
   /*padding: 30px 30px 0px 40px;*/
    padding: 25px 0px 20px 20px;
    background-color: #f7f7f7;
    border: 1px solid #8989893d;
}

.shipping.text-black {
    margin-bottom: 21px;
}

.estimate.text-black.mt-30 {
    margin-bottom: 15px;
}

.total-box {
    border-bottom: unset;
}

.total-f {
    /*padding: 10px 37px 15px 37px;*/
    padding: 15px 10px 15px 20px;
    background-color: #f6f6f6;
    border-top: unset;
}

.total-box .sum li {
    color: #4d4c4ceb;
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 20px;
}

.total-f h4 {
    font-size: 30px;
    text-transform: uppercase;
}

.total-box .sum li span {
    margin-left: 60px;
}

.total-f span {
    margin-left: 71px;
}


.cart-paypal-box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    background: #fff;
}

.cart-paypal-box p {
    display: block;
    width: fit-content;
    margin: auto;
    background-color: #fff;
    padding: 4px 20px;
    margin-top: -43px;
    margin-bottom: 20px;
    border: 1px solid #c4c4c4;
    color: #000;
    font-family: "Marcellus", serif;
    letter-spacing: 5px;
}

.pd-12-110 {
    padding: 12px 110px;
}

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

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

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

.cart-main-sec {
    padding: 80px 0;
}

.checkout-bttn a {
    color: #fff;
    display: block;
    background: #000;
    text-transform: uppercase;
    border-radius: 10px;
    border-color: unset;
    font-size: 18px;
    font-family: "Marcellus", serif;
    height: 70px;
    padding: 20px;
}

.cart_btn {

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0% auto;

    color: #fff;

    font-size: 20px;

    text-transform: uppercase;

    height: 50px;

    width: 250px;

    background: #53171d;

    border-radius: 100px;

    font-family: 'Bebas Neue';
}

.cart_btn:hover {
    color: black;
}

.product-cart img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.product-cart figure {
    /* padding: 10px; */
    margin: 0;
    /* background-color: #eaeaea; */
    /* border-radius: 3px; */
    /* border: 1px solid #c8c8c8; */
}

th:first-child {
    border-radius: 10px 0 0 10px;
}

th:last-child {
    border-radius: 0 10px 10px 0;
}

/* CART PAGES CSS:END */

/*-------------------------------------------------- Inner Cart End --------------------------------------------------------------*/

/*--------------------------------------------------------  Checkout Page Start --------------------------------------------------------------------*/

.billing_form h3 {
    color: #131211;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.billing_form label {
    font-size: 15px;
    color: #7c7c7c;
    font-weight: 600;
    font-family: 'Montserrat';
}

.radiosss p {
    color: #000;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #cfcfcf;
    margin-bottom: 20px;
    padding-left: 15px;
    background: transparent;
    border-radius: 0;
}

.billing_form input::placeholder {
    color: #7c7c7c;
    font-family: "Montserrat";
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 28px;
    text-transform: uppercase;
    color: #000;
    opacity: 80%;
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 40px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    font-family: "Roboto", sans-serif;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    font-family: "Roboto", sans-serif;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #700ea3;
}

p.p-same-p {
    font-size: 13px;
    font-family: 'Montserrat';
    background: #fffcf3;
    line-height: 23px;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

.cart_sidebar h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cart_sidebar .h-sub {
    color: #000000;
    font-size: 28px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    text-transform: uppercase;
    opacity: 80%;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 28px;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #000;
}

.cart_sidebar ul li label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
    font-family: "Roboto", sans-serif;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    font-family: "Poppins", sans-serif;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn {
    padding: 12px 50px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border: none;
    font-weight: 500;
    border: 2px solid transparent;
    background-color: #000;
    border-radius: 0;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.checkout_btn:hover {
    color: white;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    color: #000;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.cart_sidebar .radiosss-payments li label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #000;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
}

.radiosss-payments {
    border-bottom: unset;
    margin-bottom: 31px;
}

section.checkout_page.all-section.all-side {
    padding: 100px 0;
}

span.chk-price {
    color: #000;
}

.cart_sidebar a.theme-btn-1 {
    width: 100%;
}

.cart_sidebar .siteBtn:hover {
    background: #000;
    transform: translate(0px, -2px);
}

.cart_sidebar .siteBtn {
    display: inline-block;
    text-align: center;
    font-family: "Marcellus", serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 18px;
    transition: 0.9s;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #4444442b;
    width: 100%;
}

.billing_form {
    padding: 40px 25px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}

/*--------------------------------------------------------   Checkout Page End --------------------------------------------------------------------*/

/* Product Page Start */

.range-text {
    display: flex;
    justify-content: center;
    position: relative;
}

.right-side-top select {
    width: 100%;
    padding: 13px 20px;
    border: 1px solid #bdbdbd;
    color: #101010;
    font-size: 14px;
    font-weight: 500;
    appearance: auto;
    line-height: 60px;
}

.showing-icon>select {
    width: 50%;
}

.showing-icon>.product-select {
    width: 85%;
}

.showing-icon>p {
    width: 15%;
}

.right-side-top p {
    color: #101010;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.show-prg-num a {
    font-size: 16px;
    font-weight: 500;
    color: #767676;
    padding: 0 2px;
    transition: 0.5s;
    font-family: 'Montserrat';
}

.show-prg-num p {
    font-size: 16px;
}

.show-prg-num {
    gap: 10px;
}

.show-prg-num a:hover {
    color: #006df0;
}

.showing-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.showing-icon a {
    margin-top: 19px;
    padding: 0 13px;
    color: #000;
}

section.collection-side {
    padding: 100px 0;
    position: relative;
}

img.bk-2.prd-pg-2 {
    bottom: 20%;
}

img.bk-1.prd-pg-1 {
    right: -5%;
    bottom: 15%;
}

.product-bar h5 {
    color: #101010;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-bar form {
    position: relative;
}

.product-bar {
    width: 90%;
}

.product-bar1 a {
    display: block;
    color: #2c2c2c;
    font-size: 22px;
    line-height: 35px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 16px;
    padding-bottom: 10px;
    transition: 0.5s;
    font-family: 'Montserrat';
    font-weight: 600;
}

.product-bar1 {
    margin-top: 20%;
}

.product-bar1 a:hover {
    color: #000000a6;
    padding-left: 10px;
}

.grid-view {
    display: flex;
    gap: 15px;
    color: #000;
}

.grid-view>a {
    font-size: 19px;
    width: 25px;
    height: 25px;
    transform: rotate(90deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    overflow: hidden;
}

.pro-grid-view .w-full {
    width: 50%;
}

.grid-view>a:hover {
    color: #000;
}

.collection-side .premium-products-silder-items {
    margin: 20px 0;
}

.pro-list-view .lst-view {
    width: 100%;
}

.pro-list-view .lst-view .lease-box {
    display: flex;
    margin: 10px 0;
    align-items: center;
}

.pro-list-view .lst-view .lease-image {
    width: 20%;
}

.pro-list-view .lst-view .lease-text h3 {
    font-size: 30px;
}

.pro-list-view .lst-view .lease-text h3>span {
    font-size: 20px;
}

.pro-list-view .lst-view .lease-text .lease-price p {
    font-size: 16px;
    line-height: 30px;
}

.pro-list-view .lst-view .lease-text h5 {
    display: none;
}

.pro-list-view .lst-view .lease-text h6 {
    display: none;
}

.pro-list-view .lst-view .lease-text {
    text-align: left;
    padding: 0 0 0 40px;
}

.pro-list-view .lst-view .lease-text a {
    margin-right: auto;
    margin-left: 0;
}

.pro-list-view .lst-view .lease-text .lease-price {
    display: none;
}

.grid-view>a i.fa-solid.fa-table-cells,
.grid-view>a i.fa-solid.fa-list {
    transform: rotate(-90deg);
}

section.collection-side .lease-box {
    margin: 0 0 30px;
}

section.collection-side .container-fluid {
    padding: 0 6%;
}


/*product end*/

.service-box.iner a.btn-default {
    padding: 15px 46px 15px 20px;
    font-size: 14px;
}

.service-box.iner .btn-default::before {
    right: -7px;
}

.service-box.iner .service-btn {
    gap: 8px;
    /* width: max-content; */
}

.service-box.iner {
    margin-bottom: 30px;
}




/* product detials page  */

section.pd-details {
    padding-top: 100px;
    position: relative;
    padding-bottom: 30px;
}

section.pd-details .pd-dt-img img {
    position: relative;
    transition: 0.5s;
    width: 100%;
}

section.pd-details .pd-dt-img {
    position: relative;
    padding-right: 20px;
}

section.pd-details .pd-dt-img img:hover {
    filter: brightness(0.6);
    cursor: pointer;
}

section.pd-details h3 {
    color: #000;
    padding-bottom: 10px;
    font-size: 34px;
    line-height: 52px;
    text-transform: uppercase;
    font-weight: bold;
}

a.siteBtn {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
    background: #000;
    padding: 17px 37px;
    transition: 0.9s;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #4444442b;
    margin-top: 15px;
}

a.siteBtn:hover {
    background: #2a2a2a;
    transform: translate(0px, -2px);
}

ul.product-tage li img {
    filter: brightness(0);
}

section.pd-details h3 span.price {
    float: right;
    color: #f1501b;
    font-weight: 600;
    font-size: 50px;
    line-height: 52px;
}

section.pd-details .pd-rate {
    margin-bottom: 18px;
}

section.pd-details p {
    font-size: 16px;
    line-height: 30px;
    color: #636363;
}

section.pd-details .pd-rate ul {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 6px;
}

section.pd-details .pd-rate ul li a i {
    color: #ffba00;
    font-size: 26px;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details .pd-rate ul:hover li a i {
    color: #000;
    transform: rotate(360deg) scale(1.2);
}

section.pd-details .pd-rate ul li:last-child a i {
  
    color: #ffba00;

}

section.pd-details .pd-rate ul:hover li:last-child a i {
    color: #000;
}

section.pd-details .pd-rate ul li:nth-last-child(2) a i {
    /*color: #cccccc;*/
    color: #ffba00;
}

section.pd-details .pd-rate ul:hover li:nth-last-child(2) a i {
    color: #000;
}

section.pd-details .descp {
    margin-bottom: 30px;
}

section.pd-details .number-item {
    position: relative;
}

section.pd-details .number-item li h5 {
    font-weight: 500;
    color: #394136;
    margin-right: 40px;
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 0;
    text-transform: uppercase;
}

section.pd-details .number-item li.inc {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0px 0px;
    color: #000;
    font-size: 16px;
}

section.pd-details .number-item li.inc input.input-number {
    border: 2px solid #e5e5e5;
    margin: 0px auto;
    padding: 10px 0px;
    text-align: center;
    width: 100px;
}

section.pd-details .number-item li.inc::placeholder {
    font-weight: 600;
}

section.pd-details .number-item li.inc span {
    border: 1px solid #d6d6d6;
    font-weight: 500;
    font-size: 20px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 45px;
}

section.pd-details .number-item li.inc span:hover {
    background-color: #f1501b;
    color: #fff;
    cursor: pointer;
    border-color: transparent !important;
}

section.pd-details .number-item ul {
    margin-bottom: 40px;
}

section.pd-details ul.product-tage {
    position: relative;
}

section.pd-details ul.product-tage li {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 11fr;
    align-items: center;
}

section.pd-details ul.product-tage li span {
    color: #636363;
    line-height: 30px;
}

section.pd-details .pd-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0px auto;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
}

section.pd-details .pd-gallery img {
    transform: scale(1.2);
    transition: 0.5s;
}

section.pd-details .colLeft {
    position: relative;
}

section.pd-details .pd-gallery img:hover {
    transform: unset;
    filter: brightness(0.5);
    cursor: pointer;
}

section.pd-detail .pd-dt-content {
    padding-left: 20px;
}

section.pd-details .pd-dt-content {
    padding-left: 30px;
}

.product-disc {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.product-disc .nav-tabs .nav-link {
    padding: 20px 50px;
    border: 0px;
    color: #383838;
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f1f1f1;
    letter-spacing: 1px;
    border-radius: 10px !important;
    transition: 0.9s;
    font-family: 'Marcellus';
    text-transform: uppercase;
}

.product-disc .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    background-color: #000;
    color: #fff;
}

.product-disc .nav-tabs .nav-link:hover {
    background-color: #222222 !important;
    color: #fff;
    transform: translate(0px, -10px);
}

.product-disc .nav-tabs li.nav-item {
    margin-bottom: 34px;
}

.product-disc .tab-content p {
    padding-top: 20px;
    color: #616161;
    line-height: 30px;
    font-size: 16px;
}

.product-disc .nav-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #e3e3e3;
}

/* reives */

.tab-content input[type="text"] {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content textarea {
    width: 100%;
    background-color: transparent;
    box-shadow: 0px 0px 0px 2px #e7e6e6;
    border-radius: 5px;
    color: var(--black-color);
    font-size: 14px;
    line-height: 24px;
    padding: 16px 20px;
    border: 0px;
    margin-bottom: 20px;
}

.tab-content h6 {
    margin-top: 30px;
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Marcellus';
    text-transform: uppercase;
}

.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating>input:checked~label {
    color: var(--secondary-color);
}

.rating:not(:checked)>label:before {
    content: "\f006 ";
    font-family: "fontawesome";
    font-size: 30px;
    margin: 0px 8px;
}

.rev-btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 50px;
    color: #666 !important;
    font-family: "Roboto", sans-serif;
}

div#reviews button.btn-1.tabs-btn {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 26px;
    padding: 14px 60px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0px 0px 2px 1px #e7e5e6;
    background-color: #eee8da;
    color: #000;
    border: 0px;
    font-weight: 500;
}

div#reviews button.btn-1.tabs-btn:hover {
    background-color: #000;
    color: #fff;
}

.description .tab-content textarea::placeholder {
    color: #9e9e9e;
    font-family: "Poppins";
}

.buttn.my-2 a.p-btn {
    display: inline-block;
    padding: 14px 40px;
}

.buttn.my-2 a.p-btn span {
    display: inline-block;
}

section.pd-details ul.product-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: absolute;
    bottom: -70px;
    right: 0;
    left: 0;
}

section.pd-details ul.product-gallery li a {
    display: block;
    position: relative;
    transition: 1.2s;
}

section.pd-details ul.product-gallery li a img {
    position: relative;
    transition: 0.9s;
    cursor: pointer;
}

section.pd-details ul.product-gallery li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 98%;
    background: #222222;
    top: 2px;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    opacity: 0;
    display: table;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:before {
    width: 0%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:after {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    background: transparent;
    top: 0;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    transition: 0.9s;
    display: table;
    outline: 9px solid #ffba00;
    outline-offset: -10px;
    opacity: 0;
    margin: 0px auto;
}

section.pd-details ul.product-gallery li a:hover:after {
    width: 100%;
    opacity: 1;
}

section.pd-details ul.product-gallery li a:hover {
    transform: translate(0px, -6px);
}

.review-box-container {
    display: block;
}

.review-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

.review-box {
    width: 100%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px 0px;
    cursor: pointer;
}

.rate:not(:checked)>label:before {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
}

.rate>input:checked~label {
    color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.rate {
    float: left;
    clear: both;
    display: block;
    height: fit-content;
}

.rate:not(:checked)>input {
    position: absolute;
    /* top: -9999px; */
}

.rate input {
    top: 0;
    visibility: hidden;
}

.rate:not(:checked)>label {
    float: right;
    width: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 35px;
    color: #ccc;
    padding: 4px 0px;
    margin: 0px 3px;
}

.profile {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

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

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.name-user span {
    color: #979797;
    font-size: 0.8rem;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviews {
    color: #f9d71c;
}

/* product detials page  */


/*Product page Start*/
section.productdetail {
    padding: 100px 0px;
}

section.productdetail .dd-button {
    margin-bottom: 20px;
    font-family: 'BlenderPro';
    background: #c1272d;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 14px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
}

section.productdetail .dd-button h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: 34px;
    letter-spacing: 1px;
    margin: 0;
}

ul.ul1prodetail h3 span {
    float: inline-end;
}

ul.ul1prodetail h3 span a i {
    color: #000;
}

.ul1prodetail li {
    font-family: "Poppins";
    font-size: 14px;
    color: #000;
}

/* Dropdown */

.dropdown {
    width: 100%;
    margin-bottom: 40px;
}

.dd-menu li:last-child {
    border-bottom: 0px !important;
}

.dd-input {
    display: none;
}

section.productdetail .row.conts {
    align-items: center;
    margin-top: 11px;
    margin-bottom: 50px;
}

.dd-menu {
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    list-style-type: none;
}

.dd-input+.dd-menu {
    display: none;
}

.dd-input:checked+.dd-menu {
    width: 100%;
    margin: 0px auto;
    display: inline-block;
    position: unset;
    margin-top: 20px;
}

.dd-menu li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 15px;
    font-family: 'Montserrat';
    font-size: 16px;
}

.dd-menu li:hover {
    background-color: #f6f6f6;
}

.dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

select#categories {
    padding: 17px 20px;
    border: none;
}

select#categories option {
    padding: 17px 20px;
}

ul.ul2prodetail h3 {
    margin-bottom: 20px;
    font-family: 'BlenderPro';
    background: #c1272d;
    border: 0;
    text-transform: uppercase;
    padding: 14px 10px 14px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
    color: #fff;
}

ul.ul2prodetail li a input {
    display: none;
}

ul.ul2prodetail li a {
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li span {
    font-family: "poppins";
    color: #222222;
    font-size: 18px;
}

ul.ul2prodetail li {
    white-space: nowrap;
    padding: 15px 40px;
    line-height: 25px;
    text-transform: capitalize;
    box-shadow: 0px 0px 1px 1px #dddddd;
    margin-bottom: 10px;
    transition: 0.9s;
    cursor: pointer;
    border-radius: 15px;
    font-family: 'Montserrat';
    font-size: 16px;
}

.prod-sec-prod-pg {
    margin-top: 30px;
}

section.productdetail .pd-box {
    margin-bottom: 50px;
}

.heading-prd {
    position: relative;
}

.heading-prd h5 {
    font-size: 25px;
    line-height: 35px;
    margin: 0;
    font-family: 'BlenderPro';
    text-transform: uppercase;
}

.sort p {
    font-family: 'Montserrat';
    color: #666666;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
    text-align: right;
}

ul.view-pd {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    gap: 20px;
    align-items: center;
}

ul.view-pd li span {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    font-family: "Poppins";
    font-weight: 400;
}

/*Product page End*/


.product-main {
    border: 1px solid #0000002b;
    border-radius: 15px;
    margin-bottom: 30px;
}

.product-txt {
    padding: 10px 20px;
}

.rate-product i {
    color: #ffa800;
    font-size: 12px;
}

.rate-product span {
    font-family: 'Montserrat';
    font-size: 12px;
}

.product-txt p {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #0000003d;
}

.final-prod-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.add-pro:hover a i {
    color: #c1272d;
}

.add-pro:hover a h6 {
    color: #c1272d;
}


.add-pro a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-pro h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    text-transform: uppercase;
    border-right: 1px solid #94918e;
    padding-right: 50px;
    color: #94918e;
}

.final-prod-add h4 {
    font-family: 'BlenderPro';
    font-size: 25px;
    color: #c1272d;
}

.add-pro i {
    color: #94918e;
}

.menuSec a.theme-btn {
    height: 45px;
}

.productdetailportion img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.productdetailsmallportion img {
    width: 100%;
    object-fit: scale-down;
}

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

.productdetailsmallportion {
    background: #959595;
    width: 100px;
    margin: 0 auto;
    padding: 5px;
}

.slick-slide {
    opacity: 1;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail-image img {
    width: 100%;
   /* height: 530px;
    object-fit: cover;*/
     height: auto;
    object-fit: cover;
}


/* faq */

section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 30px;
    line-height: 31px;
    font-weight: 500;
    text-transform: uppercase;
}

section.faq-sec.themes-padd .accordion-button {
    border-radius: 10px !important;
}

section.faq-sec.themes-padd .gorrila-page-txt .color-red {
    font-weight: 500;
    margin-bottom: 7px;
    margin-top: 30px;
}

.gorrila-page-txt ul {
    list-style: auto;
}

.accordion-body {
    padding: 20px 30px;
    background: #ffffff;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-radius: 0px 0px 10px 10px !important;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-weight: 900;
    font-family: "Font Awesome 5 free";
}

.accordion-body ul li:before {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #000;
    top: 10px;
    left: 0;
}

.accordion-body p {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
}

.accordion-body ul li {
    position: relative;
}

.accordion-body ul li p {
    margin-left: 20px;
}

section.faq-sec.themes-padd .accordion-item {
    margin-bottom: 30px;
    border: unset;
}

section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-collapse.collapse {
    /* border: 1px solid #A60000; */
    border-top: 0;
    border-radius: 0 0 10px 10px;
    /* margin-bottom: 30px; */
}

section.faq-sec.themes-padd button:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    content: "\f068" !important;
    font-weight: 900;
    font-family: "Font Awesome 5 free";
}

section.faq-sec.themes-padd .accordion-button::after {
    content: "\f067";
    font-weight: 900;
    font-family: "Font Awesome 5 free";
    background-image: none;
    position: absolute;
    top: 20px;
    font-size: 20px;
    right: 30px;
}

section.faq-sec.themes-padd {
    padding: 100px 0px;
}

/* faq */
/* ————— 1) Search trigger ————— */
  .search-trigger {
    font-size: 1.4rem;
    cursor: pointer;
    padding: .5rem;
    color: #333;
    transition: color .3s;
  }
  .search-trigger:hover { color:#007bff; }

  /* ————— 2) Overlay ————— */
  #searchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    /* closed state (before .open) */
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;

    /* smooth slide + fade */
    transition: transform .5s cubic-bezier(.4,.0,.2,1),
                opacity   .5s cubic-bezier(.4,.0,.2,1);
  }

  /* Open state */
  #searchOverlay.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  /* ————— 3) Search box ————— */
 .search-box {
    width: min(90%, 800px);
    position: relative;
}
.search-box input {
    width: 100%;
    padding: 1rem 3.2rem 1rem 1.2rem;
    font-size: 1.25rem;
    border: none;
    border-radius: 6px;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 0 #d4af37;
    transition: box-shadow .45s ease;
    font-family: "naveid-regular";
    font-weight: 700;
    text-transform: capitalize;
    height: 65px;
}
  .search-box input:focus {
    box-shadow: 0 0 15px 4px #d4af37;
}

  /* Pulse animation (played once) */
  @keyframes pulse {
    0%   { transform: scale(.97); }
    60%  { transform: scale(1.03); }
    100% { transform: scale(1); }
  }
  /* Add pulse when overlay becomes visible */
  #searchOverlay.open .search-box input { animation: pulse .35s ease-out .55s both; }

  /* ————— 4) Close button ————— */
  .close-btn {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .3s;
  }
  .close-btn:hover {
    color: #d4af37;
}


/*Product image hover*/


.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    transition: opacity 0.3s ease;
    display: block;
}

.product-image-wrapper .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-wrapper:hover .main-img {
    opacity: 0;
}

.product-image-wrapper:hover .hover-img {
    opacity: 1;
}


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

.image-anime img {
    display: block;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

/* Hover image initially hidden */
.image-anime .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

/* Show hover image on hover */
.image-anime:hover .hover-img {
    opacity: 1;
}

/* Optional: hide default image on hover if needed */
.image-anime:hover .default-img {
    opacity: 0;
}

/* new css */


.real_results_sec {
  padding: 100px 0 0;
  position: relative;
  margin-bottom: 100px;
}

.real_results_sec:before {
    position: absolute;
    content: "";
    background: #000000;
    width: 50%;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.real_results_sec .real_results_slider {
    width: 80%;
    margin-left: auto;
}

.real_results_sec .real_results_slider .real_results_img_box {
    position: relative;
}

.real_results_sec .real_results_slider .real_results_img_box > img {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
}

.real_results_sec .real_results_slider .real_results_img_box > span {
    position: absolute;
    left: 10px;
    top: 10px;
    color: #000;
    background: #f25928;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1;
    display: block;
    border-radius: 6px;
}

.real_results_sec .real_results_txt_wrp > h2 {
    margin-bottom: 30px;
    font-size: 50px;
}

.real_results_sec .real_results_txt_wrp .real_results_sml_wrp > h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 500;
}

.real_results_sec .real_results_txt_wrp .real_results_sml_wrp > p {
    margin: 0;
}

.real_results_sec .real_results_txt_wrp .real_results_sml_wrp {
    margin-bottom: 30px;
}


.real_results_pagination > span {
  background: #f25928;
  padding: 0;
  margin: 0 !Important;
}
.real_results_pagination {
  display: flex;
  align-content: center;
  gap: 5px;
  justify-content: center;
}
.real_results-button-prev > i {
  background: #f25928;
  color: #000;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.real_results-button-next > i {
  background: #f25928;
  color: #000;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


.transformation_image {
  position: relative;
}
.transformation_image:after {
  position: absolute;
  content: "after";
  right: 20px;
  z-index: 9999;
  top: 20px;
  text-transform: capitalize;
  background: #f25928;
  color: #000;
  font-size: 14px;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 5px;
}
.transformation_image::before {
    position: absolute;
    content: "before";
    z-index: 99;
    text-transform: capitalize;
    left: 20px;
    bottom: 20px;
    background: #f25928;
    color: #000;
    font-size: 14px;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 5px;
}

.real_results_txt_slider p {
  margin-bottom: 10px;
  font-size: 17px;
  width: 90%;
}
.real_results_txt_slider .swiper-slide span {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}
.real_results_txt_slider .real_results_txt_pagination {
  display: flex;
  align-items: center;
  gap: 7px;
}
.real_results_txt_slider .real_results_txt_pagination span {
  background: #f25928;
  margin: 0 !important;
}

.our-results.gallery-sec .real_results_slider {
    background: #000;
    padding: 30px;
    border-radius: 10px;
}

.our-results.gallery-sec .real_results_slider .real_results_img_box > img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.page-testimonials .real_results_slider {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-testimonials .real_results_slider .real_results_img_box img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}
.bef_aft img {
    height: 600px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
section.before_after_sliderr_section {
    padding-top: 80px;
}
.before_after_sliderr .slick-slide{
    margin:0 5px;
}
.before_after_sliderr img {
    height: 300px;
    border-radius: 20px;
    width: 100%;
}
.before_after_sliderr ul.slick-dots {
    bottom: -50px;
}
.video_portion video {
    height: 350px;
    width: 100%;
}

.swiperr.gallery_page .swiper-wrapperr {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.swiperr.gallery_page .swiper-wrapperr .swiper-slide {
    width: 32%;
}

.swiperr.gallery_page .swiper-wrapperr .swiper-slide img {
    height: 270px;
}


  .wa-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #273444;
    color: #25D366;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    z-index: 9999;
  }
  .wa-float:hover { filter: brightness(0.95); }
  .wa-badge {
    position: fixed; right: 80px; bottom: 26px; 
    background:#fff; color:#111; padding:8px 12px; border-radius:12px;
    box-shadow:0 8px 24px rgba(0,0,0,.12); font-size:14px; z-index: 9999;
  }
  @media (max-width: 575.98px) {
    .wa-badge { display:none; }
  }


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
    .about-img-2 {
    border: none;
}
.swiperr.gallery_page .swiper-wrapperr .swiper-slide img {
    height: 300px;
}

}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    .cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}
         section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 25px;
    line-height: 31px;
    font-weight: 500;
    text-transform: uppercase;
}
section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.about-counter-item {
    width: calc(22% - 0px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.about-counter-content p {
    text-transform: capitalize;
    margin: 0;
    font-size: 16px;
}
.about-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    margin-top: 60px;
    padding-top: 60px;
    align-items: center;
    justify-content: end;
}
.why-choose-item-content {
    width: calc(100% - 50px);
}
.why-choose-list-item .icon-box {
    position: relative;
    width: 40px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}


.section-title {
    margin-bottom: 10px;
}

.about-us-image {
    width: 95%;
}




.about-team-member h2 {
    font-size: 45px;
}
header.main-header nav.navbar >.container {
    flex-direction: column;
}  
.about-img-2 {
    border: none;
}
.hero-review-item-content {
    width: calc(100% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-image figure img {
    width: 70%;
    aspect-ratio: unset;
    object-fit: cover;
    height: 550px;
    border-radius: 10px;
}
.hero-section.bg-section.dark-section {
    height: auto;
    padding: 50px 10px;
}
.section-title h1 {
    font-size: 46px;
}

    .real_results_sec:before {
    position: absolute;
    content: "";
    background: #000000;
    width: 0 !important;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}


.real_results_sec .real_results_txt_wrp .real_results_sml_wrp > h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 500;
}   
.real_results_sml_wrp > p {
    font-size: 16px;
}
.real_results_sec .real_results_txt_wrp > h2 {
    margin-bottom: 30px;
    font-size: 30px;
}

.real_results_sec .real_results_slider {
    width: 100%;
}
.bef_aft img {
    height: 400px;
}

.testimonial-body {
    width: 100%;
}
.why-choose-us {
    padding: 100px 0 0 0;
}
.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-image img {
    height: 450px;
    object-fit: cover;
}
.service-item {
    position: absolute;
    bottom: 10px;
    left: 50%;
    right: 0;
    z-index: 1;
    width: 90%;
    transform: translateX(-50%);
}
}   

@media only screen and (min-width: 992px) and (max-width: 1199px) {
.login-txt h2 {
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-size: 32px;
}  
.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-us-content .split-line {
    font-size: 30px;
    margin: 0;
}
.mission-vision-item {
    padding: 50px 20px;
}
.about-us-body .about-body-content {
    width: calc(100% - 15px);
}
.team-body
 {
    position: absolute;
    right: 40px;
    bottom: 50px;
    left: 0;
    transform: translateY(40px);
    text-align: center;
    transition: all 0.4s 
ease-in-out;
    z-index: 1;
    width: 100%;
}
.about-counter-item {
    width: calc(22% - 0px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.about-counter-content p {
    text-transform: capitalize;
    margin: 0;
    font-size: 16px;
}
.about-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    margin-top: 60px;
    padding-top: 60px;
    align-items: center;
    justify-content: end;
}
.why-choose-item-content {
    width: calc(100% - 50px);
}
.why-choose-list-item .icon-box {
    position: relative;
    width: 40px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.about-counter-item .icon-box img {
    width: 70%;
    max-width: 50px;
    filter: brightness(0) saturate(100%);
}   
.about-counter-content h2 {
    color: var(--accent-color);
    font-size: 35px;
    margin-bottom: 5px;
}

.section-title {
    margin-bottom: 10px;
}

.about-us-image {
    width: 95%;
}

.about-us-body {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: start;
}

.about-team-member {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 20px;
}


.about-team-member h2 {
    font-size: 45px;
}
header.main-header nav.navbar >.container {
    flex-direction: column;
}  
.about-img-2 {
    border: none;
}
.hero-review-item-content {
    width: calc(100% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.hero-image figure img {
    width: 70%;
    aspect-ratio: unset;
    object-fit: cover;
    height: 450px;
    border-radius: 10px;
}
.hero-section.bg-section.dark-section {
    height: auto;
    padding: 50px 10px;
}
.section-title h1 {
    font-size: 46px;
}
.main-menu ul li a {
    font-size: 14px;
    padding: 10px 13px !important;
}
    .real_results_sec:before {
    position: absolute;
    content: "";
    background: #000000;
    width: 0 !important;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}


.real_results_sec .real_results_txt_wrp .real_results_sml_wrp > h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 500;
}   
.real_results_sml_wrp > p {
    font-size: 16px;
}
.real_results_sec .real_results_txt_wrp > h2 {
    margin-bottom: 30px;
    font-size: 30px;
}

.real_results_sec .real_results_slider {
    width: 100%;
}
.bef_aft img {
    height: 400px;
}

.testimonial-body {
    width: 100%;
}
.why-choose-us {
    padding: 100px 0 0 0;
}
.service-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service-image img {
    height: 450px;
    object-fit: cover;
}
.service-item {
    position: absolute;
    bottom: 10px;
    left: 50%;
    right: 0;
    z-index: 1;
    width: 90%;
    transform: translateX(-50%);
}
section.pd-details .pd-dt-content {
    padding-left: 0;
}
    section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
    text-transform: uppercase;
}
section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.real_results_pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 70%;
}
.total-box .sum li span {
    margin-left: 30px;
}
.total-box .sum li {
    color: #4d4c4ceb;
    font-size: 13px;
    line-height: 35px;
    margin-bottom: 20px;
    display: flex;
}
.total-f h4 {
    font-size: 20px;
    text-transform: uppercase;
    display: flex;
}
.total-f span {
    margin-left: 31px;
}
.table-responsive {
    max-width: 100%;
    overflow-x: scroll;
}

table.cart-page-tble {
    width: 900px !important;
    overflow-x: scroll;
    max-width: 900px;
}
.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.total-box .sum li span {
    margin-left: 30px;
}
.total-box .sum li {
    color: #4d4c4ceb;
    font-size: 13px;
    line-height: 35px;
    margin-bottom: 20px;
    display: flex;
}
.total-f h4 {
    font-size: 20px;
    text-transform: uppercase;
    display: flex;
}
.total-f span {
    margin-left: 31px;
}
.table-responsive {
    max-width: 100%;
    overflow-x: scroll;
}

table.cart-page-tble {
    width: 900px !important;
    overflow-x: scroll;
    max-width: 900px;
}
.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}    

.swiperr.gallery_page .swiper-wrapperr .swiper-slide img {
    height: 210px;
    object-fit: fill;
}
.page-testimonials .real_results_slider {
    background: transparent;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 30px;
}  
.real_results_pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 67%;
}
    section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
    text-transform: uppercase;
}
section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
    section.pd-details .pd-dt-content {
    padding-left: 0;
}
    .hero-image figure img {
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    height: 550px;
    border-radius: 10px 10px 0 0;
}.reveal img {
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    height: 550px;
    border-radius: 10px 10px 0 0;
}
.about-img-2 {
    border-radius: 20px;
    border-width: 0;
}
.why-choose-image {
    width: 70%;
    margin: 0 auto;
}
.real_results_sec:before {
    position: absolute;
    content: "";
    background: #000000;
    width: 0 !important;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.real_results_sec .real_results_txt_wrp .real_results_sml_wrp > h3 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 500;
}   
.real_results_sml_wrp > p {
    font-size: 16px;
}
.real_results_sec .real_results_txt_wrp > h2 {
    margin-bottom: 30px;
    font-size: 30px;
}

.real_results_sec .real_results_slider {
    width: 100%;
}
.bef_aft img {
    height: 400px;
}

.testimonial-body {
    width: 100%;
}
.team-body {
        right: 30px;
        bottom: 60px;
        left: 30px;
}
.contact-us-img img {
    aspect-ratio: 1 / 0.8;
    height: 700px;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    
 .contact-us-img img {
    height: 600px;
}   
   .about-img-1 img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        aspect-ratio: unset;
        height: 550px;
    }    
    .btn-default {
        padding: 10px 40px 10px 10px;
}
.top-bar p {
    /* font-size: 14px; */
}

.hero-image figure img {
    height: 550px;
    aspect-ratio: unset;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.hero-contact-circle {
    bottom: unset;
    top: 40px;
    left: -10px;
}

.heading-arrivals h2 {
    font-size: 35px;
}

.image-anime img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: unset;
}

.about-us-image {
    padding: 0;
    width: 100%;
    aspect-ratio: unset;
}

.about-img-2 {
    width: 0;
    border-width: 0;
}

.service-btn {
    display: flex;
    flex-wrap: wrap;
}

.service-image img {
    height: 500px;
}

.service-image figure::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12.13%, #000 81.58%);
}

.section-title h3 {
    font-size: 25px;
}

.why-choose-image img {
    height: 550px;
}


.real_results_sec:before {
    width: 0;
}

.real_results_sec .real_results_slider {
    width: 100%;
    margin: 10px 0;
}

.swiper-slide {
    height: auto;
    padding: 10px;
    box-shadow: 0 0 9px 0 #0000004f;
    margin: 10px 0px;
}
.bef_aft img {
    height: 400px;
    margin: 10px 0;
}
.before_after_sliderr .slick-slide {
    margin: 30px 5px;
}
.video_portion video {
    /* height: 300px; */
    width: 100%;
    border-radius: 10px;
}
.beauty-sec {
    background: #000;
    padding: 30px 0px;
    margin: 0;
    border-radius: 0;
}
.footer-social-links {
    flex-wrap: wrap;
    justify-content: center;
}
.scrolling-content span {
    font-size: 22px;
}
.scrolling-content span img {
    max-width: 13px;
}
.real_results_sec {
    padding: 50px 0 0;
    position: relative;
    margin-bottom: 50px;
}
.split-line {
    /* font-size: 20px; */
}
.section-title h3 {
    /* font-size: 23px; */
}
section.collection-side {
    padding: 60px 0;
    position: relative;
}
.right-side-top p {
    color: #101010;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    width: max-content;
}
.showing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-categories {
    list-style: none;
    padding: 10px;
    margin: 0;
}
    section.pd-details .pd-dt-content {
    padding-left: 0;
}
ul.list-inline.pr_counter.d-flex.align-items-center {
    flex-wrap: wrap;
}
.product-disc .nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e3e3e3;
}
.product-disc .nav-tabs li.nav-item {
    margin-bottom: 14px;
}
.product-disc .nav-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e3e3e3;
    justify-content: center;
}
.product-disc .nav-tabs .nav-link {
    padding: 9px 18px;
    border: 0px;
    color: #383838;
    font-size: 13px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f1f1f1;
    letter-spacing: 1px;
    border-radius: 10px !important;
    transition: 0.9s;
    font-family: 'Marcellus';
    text-transform: uppercase;
}
section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

section.faq-sec.themes-padd .accordion-button::after {
    content: "\f067";
    font-weight: 900;
    font-family: "Font Awesome 5 free";
    background-image: none;
    position: absolute;
    top: 20px;
    font-size: 10px;
    right: 10px;
}
    .accordion-body {
    padding: 10px 10px;
    background: #ffffff;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-radius: 0px 0px 10px 10px !important;
}
    section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.real_results_pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 78%;
}
.page-testimonials .real_results_slider {
    background: transparent;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 30px;
}
    .swiperr.gallery_page .swiper-wrapperr .swiper-slide {
    width: 100%;
}
.our-results.gallery-sec .real_results_slider {
    background: #000;
    padding: 30px 10px;
    border-radius: 10px;
}

.swiperr.gallery_page .swiper-wrapperr .swiper-slide img {
    height: auto;
    object-fit: contain;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.login-txt h2 {
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-size: 34px;
}
    .table-responsive {
    max-width: 100%;
    overflow-x: scroll;
}

table.cart-page-tble {
    width: 800px !important;
    overflow-x: scroll;
    max-width: 800px;
}
.checkout-bttn {
    margin: 0 0 10px 0;
}
.cart-page-tble thead tr th {
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}
.product-cart article p {
    font-size: 14px;
    color: #4d4c4c;
    text-transform: uppercase;
    margin: 0 0 0px;
    line-height: 30px;
}
    .billing_form {
    padding: 40px 5px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}
.cart_sidebar {
    margin: 10px 0 0 0;
    padding: 40px 5px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    
.block-content {
    max-width: 100%;
    overflow-x: scroll;
}

table.table.table-hover.table-vcenter {
    width: 1000px !important;
    overflow-x: scroll;
    max-width: 1000px;
}    
    
    
    .billing_form {
    padding: 40px 5px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}
.cart_sidebar {
    margin: 10px 0 0 0;
    padding: 40px 5px;
    border: 1px solid #cfcfcf;
    border-radius: 0;
}
    .table-responsive {
    max-width: 100%;
    overflow-x: scroll;
}

table.cart-page-tble {
    width: 1000px !important;
    overflow-x: scroll;
    max-width: 1000px;
}
.checkout-bttn {
    margin: 0 0 10px 0;
}
.login-txt {
    padding: 45px 5px 35px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #0000001a;
}
.login-txt h2 {
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-size: 20px;
}
.login-txt ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
}

    .swiperr.gallery_page .swiper-wrapperr .swiper-slide {
    width: 100%;
}
.our-results.gallery-sec .real_results_slider {
    background: #000;
    padding: 30px 10px;
    border-radius: 10px;
}
.swiperr.gallery_page .swiper-wrapperr .swiper-slide img {
    height: 210px;
    object-fit: cover;
}
    .author-content {
    width: max-content;
}
.real_results_pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 58%;
}
.page-testimonials .real_results_slider {
    background: transparent;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 30px;
}
    .accordion-body {
    padding: 10px 10px;
    background: #ffffff;
    border: 2px solid var(--accent-color);
    border-top: none;
    border-radius: 0px 0px 10px 10px !important;
}
    section.faq-sec.themes-padd .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: 2px solid var(--accent-color);
    background: unset;
    border-bottom: unset;
    color: var(--accent-color);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
    
section.faq-sec.themes-padd .accordion-button.collapsed {
    padding: 20px 20px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}

section.faq-sec.themes-padd .accordion-button::after {
    content: "\f067";
    font-weight: 900;
    font-family: "Font Awesome 5 free";
    background-image: none;
    position: absolute;
    top: 20px;
    font-size: 10px;
    right: 10px;
}

    section.pd-details .pd-dt-content {
    padding-left: 0;
}
ul.list-inline.pr_counter.d-flex.align-items-center {
    flex-wrap: wrap;
}
.product-disc .nav-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e3e3e3;
}
.product-disc .nav-tabs li.nav-item {
    margin-bottom: 14px;
}
.product-disc .nav-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #e3e3e3;
    justify-content: center;
}
.product-disc .nav-tabs .nav-link {
    padding: 9px 18px;
    border: 0px;
    color: #383838;
    font-size: 13px;
    line-height: 30px;
    font-weight: 500;
    background-color: #f1f1f1;
    letter-spacing: 1px;
    border-radius: 10px !important;
    transition: 0.9s;
    font-family: 'Marcellus';
    text-transform: uppercase;
}
section.collection-side {
    padding: 60px 0;
    position: relative;
}
.right-side-top p {
    color: #101010;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    width: max-content;
}
.showing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-categories {
    list-style: none;
    padding: 10px;
    margin: 0;
}



.btn-default {
        padding: 10px 40px 10px 10px;
}
.top-bar p {
    font-size: 14px;
}

.hero-image figure img {
    height: 350px;
    aspect-ratio: unset;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.hero-contact-circle {
    bottom: unset;
    top: 40px;
    left: -10px;
}

.heading-arrivals h2 {
    font-size: 35px;
}

.image-anime img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: unset;
}

.about-us-image {
    padding: 0;
    width: 100%;
    aspect-ratio: unset;
}

.about-img-2 {
    width: 0;
    border-width: 0;
}

.service-btn {
    display: flex;
    flex-wrap: wrap;
}

.service-image img {
    height: 400px;
}

.service-image figure::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12.13%, #000 81.58%);
}

.section-title h3 {
    font-size: 25px;
}

.why-choose-image img {
    height: 350px;
}


.real_results_sec:before {
    width: 0;
}

.real_results_sec .real_results_slider {
    width: 100%;
    margin: 10px 0;
}

.swiper-slide {
    height: auto;
    padding: 10px;
    box-shadow: 0 0 9px 0 #0000004f;
    margin: 10px 0px;
}
.bef_aft img {
    height: 300px;
    margin: 10px 0;
}
.before_after_sliderr .slick-slide {
    margin: 30px 5px;
}
.video_portion video {
    height: 300px;
    width: 100%;
    border-radius: 10px;
}
.beauty-sec {
    background: #000;
    padding: 30px 0px;
    margin: 0;
    border-radius: 0;
}
.footer-social-links {
    flex-wrap: wrap;
    justify-content: center;
}
.scrolling-content span {
    font-size: 12px;
}
.scrolling-content span img {
    max-width: 13px;
}
.real_results_sec {
    padding: 50px 0 0;
    position: relative;
    margin-bottom: 50px;
}
.split-line {
    font-size: 20px;
}
.section-title h3 {
    font-size: 23px;
}

.hero-image figure img {
    width: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    height: 550px;
    border-radius: 10px 10px 0 0;
}
}


.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-item {
    display: flex;
    align-items: center;
    padding: 0 3rem;
}

.marquee-item::after {
    content: "✦";
    margin-left: 3rem;
    opacity: 0.7;
}

/* Pause animation on hover */
.top-bar:hover .marquee {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Demo content below */
.demo-content {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.demo-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.countdown-container {
    text-align: center;
    margin-bottom: 30px;
}

.coming-soon {
    color: #fff;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(145deg, #1a1a1a, #252525);
    border: 2px solid #333;
    border-radius: 10px;
    padding: 15px;
    min-width: 110px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f25928, transparent);
}

.time-value {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.time-label {
    font-size: 12px;
    color: #f25928;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.editable-text {
    color: #ff6b35;
    font-size: 14px;
    margin-top: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .time-unit {
        min-width: 80px;
        padding: 20px 15px;
    }

    .time-value {
        font-size: 36px;
    }

    .coming-soon {
        font-size: 18px;
    }
}
/*Media Query End*/
