@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
    --primary-color: #1C4942;
    --secondary-color: #F7F0F2;
    --text-color: #7B798C;
    --accent-color: #24544B;
    --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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 400;
    line-height: 1.1em;
    color: #000000;
}

figure {
    margin: 0 !IMPORTANT;
}

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: rgba(255,255,255,.3);
        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: #626262;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 11px 35px 11px 18px;
    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: -6px;
        width: 18px;
        height: 18px;
        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;
    }

    .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: #000000;
        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: #ffffff;
        color: #000000;
    }

        .btn-default.btn-highlighted:hover {
            background: transparent;
            color: var(--white-color);
        }

        .btn-default.btn-highlighted::before {
            background: url('../images/arrow-accent.svg');
        }

        .btn-default.btn-highlighted:hover::before {
            filter: brightness(0) invert(1);
        }

        .btn-default.btn-highlighted::after {
            background: #2e2e2e;
        }





header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    background: #e7e7e7 !important;
    right: 0;
}


.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: #5f5f5f;
    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: #e7e7e7;
    border-radius: 30px;
}

    .bg-section.dark-section {
        background-color: #000000;
    }

.section-row {
    margin-bottom: 40px;
}

    .section-row .section-title {
        margin-bottom: 0;
    }

    .section-row .section-title {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

.section-title {
    margin-bottom: 25px;
}

    .section-title h3 {
        display: inline-block;
        position: relative;
        font-family: var(--default-font);
        font-size: 18px;
        font-weight: 500;
        line-height: 1.6em;
        text-transform: capitalize;
        color: var(--text-color);
        padding-left: 18px;
        margin-bottom: 0;
    }

        .section-title h3::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: #000000;
            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: 44px;
    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: 990px; */
    margin: 0 auto;
    margin-top: 20px;
    font-weight: 300;
    color: #000000;
    line-height: 28px;
    font-size: 18px;
}

.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: #e7e7e7;
    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: 8px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

    .navbar-brand img {
        width: 210px;
    }

.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: 15px;
        font-weight: 400;
        line-height: 1em;
        padding: 17px 9px !important;
        color: #373739;
        text-transform: uppercase;
        transition: all 0.3s ease-in-out;
    }

    .main-menu ul li.submenu > a:after {
        content: '\f107';
        font-family: 'FontAwesome';
        font-weight: 900;
        font-size: 13px;
        margin-left: 4px;
    }

    .main-menu ul li a:hover,
    .main-menu ul li a:focus {
        color: #000000;
    }

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 275px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #000000;
    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: #ffffff;
        padding: 7px 30px !important;
        transition: all 0.3s ease-in-out;
        text-transform: capitalize;
        line-height: 19px;
        font-size: 14px;
    }


        .main-menu ul ul li a:before {
            position: absolute;
            content: "";
            background: #c5c5c5;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            left: 15px;
            top: 12px;
        }

.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: #cfcfcf;
    background-color: transparent;
    padding: 7px 34px !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: #000000;
    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: #1e1e1e;
}

    .slicknav_menu ul {
        margin: 5px 0;
    }

        .slicknav_menu ul ul {
            margin: 0;
            background: #040404;
        }

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 15px;
    color: #f7f7f7;
    /* line-height: normal; */
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
    /* border-bottom: solid #383838 1px; */
    text-decoration: none;
}

    .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: 10px 20px 10px 24px;
    font-size: 15px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

    .slicknav_arrow:after {
        content: '\f107';
        font-family: 'FontAwesome';
        font-weight: 900;
        font-size: 12px;
        margin-left: 8px;
        color: #ffffff;
        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: #ffffff;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    background: #e7e7e7;
}

.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: #e7e7e7;
    padding: 30px 0;
}

.hero-cta-info {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 30px 80px; */
}

    .hero-cta-info h1 {
        text-align: center;
        color: #000;
    }

.logo-slider {
    margin-top: 30px;
}


.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: 20px 0;
}

.about-us-image {
    position: relative;
    padding: 0 50px 50px 0;
    margin-right: 0;
}

.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: 433px;
    border: 10px solid var(--accent-secondary-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

    .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: 11px;
            color: #000;
        }

            .about-body-list ul li::before {
                content: '\f14a';
                font-family: 'Font Awesome 6 Free';
                font-weight: 400;
                font-size: 20px;
                color: #000000;
                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: #000000;
    border-radius: 30px;
    text-align: center;
    padding: 30px 15px;
}

    .about-team-member img {
        width: 100%;
        max-width: 63px;
        margin-bottom: 20px;
    }

    .about-team-member h2 {
        color: var(--white-color);
        font-size: 50px;
        margin-bottom: 5px;
    }

    .about-team-member p {
        color: var(--white-color);
        font-weight: 500;
        text-transform: capitalize;
        margin: 0;
        line-height: 20px;
        padding-top: 5px;
        font-size: 13px;
    }

.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;
        }

.about-counter-content {
    width: calc(100% - 70px);
}

    .about-counter-content h2 {
        color: var(--accent-color);
        font-size: 40px;
        margin-bottom: 5px;
    }

    .about-counter-content p {
        text-transform: capitalize;
        margin: 0;
    }

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services {
    position: relative;
    padding: 30px 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%, rgb(0 0 0 / 90%) 89.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: 26px;
    left: 24px;
    right: 24px;
    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: 26px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 10px;
    font-weight: 500;
}

    .service-content h3 a {
        color: inherit;
    }

.service-content p {
    color: var(--white-color);
    margin: 0;
    font-size: 16px;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.services-pagination {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

    .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: #000000;
        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: 50px 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: 0;
    padding-top: 30px;
    width: 50%;
    float: left;
    margin-bottom: 30px;
}

    .why-choose-list-item .icon-box {
        position: relative;
        width: 80px;
        height: 80px;
        background-color: #000000;
        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: #b7b5b5;
            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;
    }

    .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: 30px;
        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%, rgb(0 0 0 / 90%) 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;
        color: #000;
    }

        .our-process-list ul li::before {
            content: '\f14a';
            font-family: 'Font Awesome 6 Free';
            font-weight: 400;
            font-size: 20px;
            color: #000000;
            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: 50px 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;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.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: 50px 0;
}

.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: 50px 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: #e7e7e7;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    height: 330px;
}

.testimonial-quote {
    margin-right: 20px;
}

    .testimonial-quote img {
        width: 100%;
        max-width: 60px;
    }

.testimonial-body {
    width: calc(100% - 80px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

    .testimonial-rating i {
        color: #000000;
        font-size: 18px;
    }

.testimonial-content {
    margin-bottom: 30px;
}

    .testimonial-content p {
        font-size: 17px;
        margin: 0;
        COLOR: #000;
        text-align: justify;
        line-height: 28px;
    }

.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: #000000;
    }




.blog-pagination {
    text-align: center;
    margin-top: 60px;
}

    .blog-pagination .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
        background: var(--divider-color);
        opacity: 1;
        margin: 0 3px;
        transition: all 0.4s ease-in-out;
    }

    .blog-pagination .swiper-pagination-bullet-active {
        position: relative;
        width: 20px;
        border-radius: 100px;
        background-color: #000000;
    }






.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: 50px 0 50px;
}

    .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%, rgb(0 0 0) 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: 60px;
    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: 50px 0 50px;
    z-index: 1;
}

.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
    border: dotted #ccc 2px;
    border-radius: 20px;
}

.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 p {
        color: #000;
        margin: 0;
        font-size: 16px;
        line-height: 21px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .post-item-content ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 15px;
    }

        .post-item-content ul li {
            display: inline-block;
            margin-right: 20px;
            color: #000000;
            font-size: 15px;
        }

            .post-item-content ul li i {
                color: #000000;
            }



    .post-item-content h2 {
        font-size: 21px;
        line-height: 1.2em;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* show only 3 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-bottom: 18px;
    }

        .post-item-content h2 a {
            display: inline-block;
            color: inherit;
        }

/************************************/
/***   16. Book Appointment css   ***/
/************************************/

.book-appointment {
    position: relative;
    padding: 50px 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;
        }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/************************************/
/***        18. Footer css  	  ***/
/************************************/

.footer-main {
    position: relative;
    padding: 50px 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;
        font-size: 16px;
        text-align: justify;
    }

.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: var(--primary-color);
        }

.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 22px;
}

.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: 20px;
}

    .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 .fa-whatsapp {
            color: #fff;
        }

        .footer-contact-item .icon-box i {
            font-size: 22px;
            color: #000000;
        }

        .footer-contact-item .icon-box img {
            width: 100%;
            max-width: 28px;
        }

.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: 9px;
    }

        .footer-links ul li:last-child {
            margin-bottom: 0;
        }

        .footer-links ul li a {
            color: inherit;
            transition: all 0.3s ease-in-out;
            font-size: 17px;
        }

            .footer-links ul li a:hover {
                color: #7B798C;
            }

.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: 30px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 15px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-social-links span {
        font-family: var(--accent-font);
        font-size: 17px;
        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: 7px;
        }

            .footer-social-links ul li:last-child {
                margin: 0;
            }

            .footer-social-links ul li a {
                width: 35px;
                height: 35px;
                background: var(--white-color);
                border-radius: 10px;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #000;
                transition: all 0.4s ease-in-out;
                /* font-size: 14px; */
            }

            .footer-social-links ul li:hover a {
                background: #383838;
                color: var(--white-color);
            }

            .footer-social-links ul li a i {
                /* color: #000000; */
                font-size: 20px;
            }

/************************************/
/***     19. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    padding: 50px 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .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: 45px;
        font-weight: 400;
        /* letter-spacing: -0.02em; */
        color: var(--white-color);
        margin-bottom: 0;
        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: 50px 0 0;
    margin-bottom: 200px;
    margin-top: 40px;
}

    .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(50% - 20px);
    background-color: var(--white-color);
    border-radius: 30px;
    box-shadow: 0px 2px 18px 0px #0000000D;
    padding: 40px 30px;
    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: #000000;
        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: 100px;
        height: 100px;
        background: var(--secondary-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

        .mission-vision-item .icon-box img {
            width: 100%;
            max-width: 60px;
        }

.mission-vision-content {
    position: relative;
    z-index: 1;
}

    .mission-vision-content h3 {
        font-size: 30px;
        text-transform: capitalize;
        margin-bottom: 15px;
        transition: all 0.4s ease-in-out;
        font-weight: 700;
        line-height: 37px;
    }

    .mission-vision-content p {
        margin: 0;
        transition: all 0.4s ease-in-out;
        color: #000;
        line-height: 26px;
    }

.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);
}

.mission-vision-item:hover ul.itemtext li a {
    color: #ffecb2;
}

.mission-vision-item.active ul.itemtext li a {
    color: #ffffff;
}

.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: 0px 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: #000000;
        }

        .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: #71a733;
            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: 30px 0 30px;
}

    .page-services .service-box {
        height: calc(100% - 30px);
        margin-bottom: 30px;
    }

/************************************/
/***    21. Service Single css	  ***/
/************************************/

.page-service-single {
    padding: 30px 0 30px;
}

.page-single-sidebar {
    position: sticky;
    top: 80px;
    margin-right: 20px;
}

.page-catagery-list {
    background-color: #e7e7e7;
    border-radius: 30px;
    margin-bottom: 40px;
    padding: 30px;
    overflow: hidden;
}

    .page-catagery-list h3 {
        font-size: 22px;
        text-transform: capitalize;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .page-catagery-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .page-catagery-list ul li {
            margin-bottom: 10px;
        }

            .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: #121212;
                background-color: var(--white-color);
                border-radius: 10px;
                padding: 10px 50px 10px 17px;
                overflow: hidden;
                transition: all 0.4s ease-in-out;
                z-index: 1;
                font-size: 15px;
            }

            .page-catagery-list ul li:hover a {
                color: var(--white-color);
            }

            .page-catagery-list ul li a.active {
                background: #000;
                color: #fff;
            }

                .page-catagery-list ul li a.active::before {
                    filter: brightness(0) invert(1);
                }


            .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: #000000;
                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: 200px 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: 30px;
        font-weight: 700;
        line-height: 1.6em;
        text-transform: uppercase;
    }

.sidebar-cta-contact {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .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: 42px;
        height: 42px;
        background: var(--white-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

        .sidebar-cta-contact .icon-box i {
            color: #1c4942;
            font-size: 20px;
        }

        .sidebar-cta-contact .icon-box img {
            width: 100%;
            max-width: 28px;
        }

.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: 22px;
        font-weight: 600;
    }

        .sidebar-contact-content h3 a {
            color: inherit;
            font-size: 20px;
        }

.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: 30px;
}

    .service-entry p {
        margin-bottom: 12px;
        color: #000;
        text-align: justify;
        font-size: 17px;
    }

        .service-entry p span {
            color: #000 !important;
        }

            .service-entry p span a {
                color: #a10b00 !important;
            }


        .service-entry p:last-child {
            margin-bottom: 0;
        }

    .service-entry h2 {
        font-size: 24px;
        /* letter-spacing: -0.02em; */
        margin-bottom: 0;
        font-weight: 900;
        /* background: #ffffff; */
        /* padding: 10px; */
        border-bottom: solid #bfbfbf 1px;
        padding: 0px 0px 14px;
        /* box-shadow: 0px 8px 4px #ccc; */
        margin-bottom: 20px;
        color: #000;
        margin-top: 20px;
        position: relative;
    }

        .service-entry h2::before {
            content: "";
            width: 56px;
            height: 4px;
            background: #000;
            position: absolute;
            left: 0px;
            bottom: -2px;
        }

    .service-entry h3 {
        font-size: 24px;
        /* letter-spacing: -0.02em; */
        margin-bottom: 0;
        font-weight: 900;
        /* background: #ffffff; */
        /* padding: 10px; */
        border-bottom: solid #bfbfbf 1px;
        padding: 0px 0px 14px;
        /* box-shadow: 0px 8px 4px #ccc; */
        margin-bottom: 20px;
        color: #000;
        margin-top: 20px;
        position: relative;
    }

        .service-entry h3::before {
            content: "";
            width: 56px;
            height: 4px;
            background: #000;
            position: absolute;
            left: 0px;
            bottom: -2px;
        }

        .service-entry h3 span {
            color: #000 !important;
            font-weight: 900;
            letter-spacing: 1px;
            font-family: var(--accent-font) !important;
        }


    .service-entry h2 span {
        color: #000 !important;
        font-weight: 900;
        letter-spacing: 1px;
        font-family: var(--accent-font) !important;
    }





    .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 {
                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: 30px 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: 30px 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: 0px 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%, rgba(28, 73, 66, 0.8) 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: 20px 0 20px;
}

.contact-info-item {
    background: #3a3a3a;
    border-radius: 30px;
    padding: 30px;
    height: calc(100% - 15px);
    margin-bottom: 30px;
    display: flex;
    position: relative;
}


    .contact-info-item::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: 104px;
        height: 104px;
        transition: all 0.5s ease-in-out;
        animation: leafimg-1 3s infinite alternate;
        z-index: 0;
    }


    .contact-info-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        background: url(../images/section-bg-leaf-8.png);
        background-repeat: no-repeat;
        background-position: right top;
        background-size: cover;
        width: 104px;
        height: 104px;
        transition: all 0.5s ease-in-out;
        animation: leafimg-2 3s infinite alternate;
        z-index: 0;
    }



    .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;
        }

.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;
        font-size: 14px;
    }

        .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: 15px 46px 15px 15px;
    }

        .btn-default::before {
            transform: translate(-15px, -50%);
        }

        .btn-default:hover::before {
            transform: translate(-12px, -50%);
        }

    .readmore-btn {
        font-size: 16px;
    }

    .navbar {
        padding: 10px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
        border-bottom: solid #3a3939 1px;
        /* background: #000000; */
    }

    .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;
        text-align: center;
    }

        .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: 30px 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;
        text-align: center;
    }

    .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;
        width: 100%;
    }

    .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: 30px 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: 20px 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: 24px 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: 30px 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: 30px 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: 5px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 20px 0;
    }

    .footer-social-links ul li {
        margin-right: 8px;
    }

    .page-header {
        padding: 19px 0;
        margin: 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: 20px 0 20px;
    }

    .page-service-single {
        padding: 15px 0 15px;
    }

    .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;
            font-size: 14px;
        }

        .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: 40px;
            height: 40px;
            margin-right: 10px;
        }

            .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) {

    .footer-social-links {
        display: flex;
        align-items: center;
        gap: 9px;
    }


    .section-title h3 {
        display: none;
    }

    .footer-copyright-text p {
        color: var(--white-color);
        margin-bottom: 0;
        font-size: 12px;
    }

    body {
        font-size: 16px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 29px;
        /* text-align: center; */
        /* display: inline-block; */
    }

    .section-title h2 {
        font-size: 23px;
    }

    .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%;
        display: none;
    }

        .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: 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%; */
        align-items: normal;
    }

    .about-counter-content p {
        text-transform: capitalize;
        margin: 0;
        line-height: 20px;
        font-size: 15px;
        color: #000;
    }

    .about-counter-content h2 {
        font-size: 28px;
    }

    .service-item {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .service-content h3 {
        font-size: 25px;
    }

    .services-pagination {
        margin-top: 30px;
    }

    .section-footer-text {
        margin-top: 20px;
    }

    .why-choose-list-item {
        align-items: start;
        margin-bottom: 0;
        margin-top: 5px;
        align-items: anchor-center;
    }

        .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: 70px;
        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;
            font-weight: 700;
        }

    .footer-copyright {
        flex-direction: column;
        margin-top: 0;
        padding: 15px 0;
    }

    .footer-social-links span {
        font-size: 13px;
    }

    .sticky-container2 {
        padding: 0px;
        margin: 0px;
        position: fixed;
        left: -13px !IMPORTANT;
        top: 80%;
        width: auto;
        z-index: 99999999999999999;
    }

        .sticky-container2 .sticky li a i {
            float: none;
            -webkit-animation: white-shadow .8s infinite, red-shadow .8s infinite;
            animation: white-shadow .8s infinite, red-shadow .8s infinite;
            border-radius: 50%;
            font-size: 30px !IMPORTANT;
            color: #fff;
            background: #4caf50;
            padding: 5px;
            width: 60px !IMPORTANT;
            height: 60px !IMPORTANT;
            text-align: center;
            line-height: 49px !IMPORTANT;
        }

    .page-header-box h1 {
        font-size: 20px;
    }

    .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: 16px;
        font-weight: 700;
    }

    .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;
    }
}

.about-us h2 {
    color: #000;
}

.about-us h3 {
    /* color: #fff; */
    /* font-size: 47px; */
}

.about-us-content p {
    color: #2e2e30;
    text-align: justify;
}

.our-process-content p {
    color: #000;
}

.how-we-work-content p {
    color: #000;
}

.book-appointment p {
    color: #000;
}

.violate-btn {
    border: solid #fff 1px;
    color: #fff;
    margin-top: 15px;
    display: block;
    font-size: 13px; /* background: #000; */
    float: left;
    padding: 5px 10px;
}

    .violate-btn:hover {
        background: #000;
        border: solid #000 1px;
    }


.violate-btn2 {
    border: solid #fff 1px;
    color: #fff;
    margin-top: 8px;
    display: block;
    font-size: 17px;
    background: #000;
    float: left;
    padding: 13px 27px;
    border-radius: 10px;
}

    .violate-btn2:hover {
        background: #000;
        border: solid #000 1px;
        opacity: 0.5;
    }



ul.itemtext {
    margin: 0px;
    padding: 0px;
}

    ul.itemtext li {
        list-style: none;
        float: left;
        width: 100%;
        text-align: left;
        margin: 5px 0 20px;
    }

        ul.itemtext li a {
            background: #0c728b;
            width: 100%;
            color: #ffffff;
            font-size: 16px;
            display: block;
            padding: 7px 15px;
            border-radius: 5px;
            line-height: 23px;
            font-weight: bold;
            /* border: dotted 1px; */
        }

.custom-card {
    padding: 30px 30px;
    background: #072736;
    border-radius: 30px;
}

    .custom-card h1 {
        color: #fff;
        font-size: 30px;
        padding-bottom: 23px;
    }


.pagination-area {
    margin-top: 40px;
    text-align: center;
    border-top: double;
    padding-top: 30px;
    border-color: #000000;
}

    .pagination-area .page-numbers {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin: 0 5px;
        display: inline-block;
        background-color: #fff;
        -webkit-box-shadow: 0 15px 35px rgba(0,0,0,.1);
        box-shadow: 0 15px 35px rgba(0,0,0,.1);
        color: #222;
        font-size: 18px;
        font-weight: 700;
        border-radius: 5px;
        text-align: center;
    }

        .pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
            background: #000000;
            color: #fff;
        }

        .pagination-area .page-numbers i {
            position: relative;
            top: 1px;
        }


.pricing-divider {
    border-radius: 20px;
    background: #4d4d4d;
    padding: 1em 0 1em;
    position: relative;
    text-align: center;
}

.blue .pricing-divider {
    background: #303030;
}

.green .pricing-divider {
    background: #3c3c3c;
}

.red b {
    color: #C64545
}

.blue b {
    color: #2D5772
}

.green b {
    color: #1AA85C
}

.pricing-divider-img {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
}

.deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.btn-custom {
    background: #C64545;
    color: #fff;
    border-radius: 20px
}

.img-float {
    width: 50px;
    position: absolute;
    top: -3.5rem;
    right: 1rem
}

.princing-item {
    transition: all 150ms ease-out;
}

    .princing-item:hover {
        transform: scale(1.05);
    }

        .princing-item:hover .deco-layer--1 {
            -webkit-transform: translate3d(15px, 0, 0);
            transform: translate3d(15px, 0, 0);
        }

        .princing-item:hover .deco-layer--2 {
            -webkit-transform: translate3d(-15px, 0, 0);
            transform: translate3d(-15px, 0, 0);
        }


.princing_sec {
    /* background: #f9e6ad; */
    /* padding: 50px 0; */
}

    .princing_sec .text-light {
        --bs-text-opacity: 1;
        color: rgba(var(--bs-light-rgb),var(--bs-text-opacity)) !important;
        padding: 8px 0 50px;
        font-weight: 700;
        font-size: 17px;
        line-height: 26px;
        /* line-height: 29px; */
    }

    .princing_sec .box_item {
        margin-bottom: 10px;
        background: #ffe0e0;
        border-radius: 25px;
        border: dotted #607d8b 1px;
    }

ul.price_table {
    padding: 0px;
    margin: 0px;
    /* background: #fff; */
    /* border: dotted #a96707 1px; */
    overflow: hidden;
    /* background: #fff0c4; */
    padding: 20px 40px 15px;
}


    ul.price_table li {
        list-style: none;
        float: left;
        font-size: 15px;
        color: #000;
        width: 100%;
        margin: 0;
        padding-bottom: 10px;
        /* text-indent: 16px; */
        /* padding-left: 5px; */
    }

        ul.price_table li i {
            font-size: 6px;
            color: #000000;
            /* margin-top: -15px; */
            position: relative;
            top: -3px;
            padding-right: 5px;
        }

.btn_priceing_red {
    background: #4d4d4d;
    padding: 10px 27px;
    display: block;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
    margin: 0;
}

    .btn_priceing_red:hover {
        color: #ffffff;
        background: #000000;
    }


.btn_priceing_darkblue {
    background: #303030;
    padding: 10px 27px;
    display: block;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
    font-size: 14px;
}

    .btn_priceing_darkblue:hover {
        color: #ffffff;
        background: #000000;
    }

.btn_priceing_green {
    background: #1aa85c;
    padding: 10px 27px;
    display: block;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
}

    .btn_priceing_green:hover {
        color: #ffffff;
        background: #000000;
    }

.quick-navtab {
    padding: 50px 0;
}


.pagination-area {
    margin-top: 40px;
    text-align: center;
    border-top: double;
    padding-top: 30px;
    border-color: #ce9906;
}

    .pagination-area .page-numbers {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin: 0 5px;
        display: inline-block;
        background-color: #fff;
        -webkit-box-shadow: 0 15px 35px rgba(0,0,0,.1);
        box-shadow: 0 15px 35px rgba(0,0,0,.1);
        color: #222;
        font-size: 18px;
        font-weight: 700;
        border-radius: 5px;
        text-align: center;
    }

        .pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
            background: #cf9a06;
            color: #fff;
        }

        .pagination-area .page-numbers i {
            position: relative;
            top: 1px;
        }


.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.princing_sec .text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
    padding: 8px 0 50px;
    font-weight: 700;
    font-size: 17px;
    line-height: 26px;
    /* line-height: 29px; */
}


.btn_priceing_green {
    background: #5c5c5c;
    padding: 10px 27px;
    display: block;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    font-size: 14px;
    margin: 0;
}

.princing_sec .box_item {
    margin-bottom: 40px;
    background: #efefef;
    border-radius: 25px;
    border: dotted #607d8b 1px;
    margin-top: -29px;
    position: relative;
}


ul.list_item {
    padding: 0px;
    margin: 0px;
    margin-left: 62px;
    margin-top: 15px;
    display: block;
    /* clear: both; */
    /* display: block; */
    /* float: left; */
    overflow: hidden;
}

    ul.list_item li:before {
        content: "";
        width: 8px;
        height: 8px;
        background: #000;
        border-radius: 50%;
        position: absolute;
        margin-left: 0;
        margin-top: 7px;
    }

    ul.list_item li {
        list-style: none;
        float: left;
        width: 100%;
        font-size: 17px;
        display: flex;
        /* text-indent: 25px; */
        color: #000;
        padding-bottom: 10px;
    }

.service-entry strong {
    color: #000;
}

ul.decimal_list {
    margin: 0px;
    padding: 0px;
    /* overflow: hidden; */
    margin-left: 31px;
    display: block;
}

    ul.decimal_list li {
        list-style: decimal;
        float: left;
        font-size: 20px;
        padding: 5px 0 0;
        text-align: justify;
        width: 100%;
        display: list-item;
        /* margin-left: 40px; */
        font-weight: 700;
        margin-bottom: 10px;
        color: #000;
    }

        ul.decimal_list li ol {
            display: block;
            width: 100%;
        }

            ul.decimal_list li ol li {
                list-style: none;
                font-weight: 400;
                /* display: flex; */
                font-size: 17px;
                margin: 0;
                position: relative;
                padding-left: 15px;
                color: #000;
                width: 100%;
            }

                ul.decimal_list li ol li:before {
                    content: "";
                    position: absolute;
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background: #000;
                    left: 0;
                    margin-top: 14px;
                }


.sticky-container2 {
    padding: 0px;
    margin: 0px;
    position: fixed;
    left: 47px;
    top: 80%;
    width: auto;
    z-index: 99999999999999999;
}

    .sticky-container2 .sticky {
        position: relative !important;
    }

        .sticky-container2 .sticky li {
            list-style-type: none;
            background-color: none;
            /* border:solid #FFF 1px; */
            color: #fff;
            /* height: 43px; */
            padding: 0px;
            margin: 0px 0px 20px 0px;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            cursor: pointer;
        }

            .sticky-container2 .sticky li:hover {
                /* margin-left: -115px; */
                /* filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale"); */
                /* -webkit-filter: grayscale(0%); */
            }

            .sticky-container2 .sticky li a i {
                float: none;
                -webkit-animation: white-shadow .8s infinite, red-shadow .8s infinite;
                animation: white-shadow .8s infinite, red-shadow .8s infinite;
                border-radius: 50%;
                font-size: 43px;
                color: #fff;
                background: #4caf50;
                padding: 5px;
                width: 70px;
                height: 70px;
                text-align: center;
                line-height: 60px;
            }

            .sticky-container2 .sticky li p {
                padding: 0px;
                margin: 0px;
                text-transform: none;
                line-height: 43px;
                font-family: Roboto;
            }

            .sticky-container2 .sticky li a {
                color: #FFF;
                text-decoration: none;
                font-family: Roboto;
            }



/* rotateScale animation */
@keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotateScale {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg);
    }
}

/* infiUpDown animation */
@keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes infiUpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* infiLeftRight animation */
@keyframes infiLeftRight {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-35px);
        transform: translateX(-35px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes infiLeftRight {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-35px);
        transform: translateX(-35px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/* twinRotate animation */
@keyframes twinRotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes twinRotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

/* heartbeat animation */
@keyframes heartbeat {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

/* rotateInfinit animation */
@keyframes rotateInfinit {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(90deg);
    }

    75% {
        transform: rotate(135deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes spinInfinit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ZoomToFade animation */
@-webkit-keyframes ZoomToFade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.4, 1.4);
        -ms-transform: scale(1.4, 1.4);
        transform: scale(1.4, 1.4);
    }
}

@keyframes ZoomToFade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.4, 1.4);
        -ms-transform: scale(1.4, 1.4);
        transform: scale(1.4, 1.4);
    }
}

/* ZoomToFade2 animation */
@-webkit-keyframes ZoomToFade2 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes ZoomToFade2 {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* ZoomToFade3 animation */
@-webkit-keyframes ZoomToFade3 {
    0% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes ZoomToFade3 {
    0% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes white-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
        -webkit-transition: box-shadow .3s ease-in-out;
        -webkit-transition: -webkit-box-shadow .3s ease-in-out;
        -o-transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out;
        transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out
    }

    100% {
        -webkit-box-shadow: 0 0 0 30px transparent;
        box-shadow: 0 0 0 30px transparent;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition: box-shadow .4s ease-in-out;
        -webkit-transition: -webkit-box-shadow .4s ease-in-out;
        -o-transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out;
        transition: box-shadow .4s ease-in-out, -webkit-box-shadow .4s ease-in-out
    }
}

@-webkit-keyframes red-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px transparent;
        box-shadow: 0 0 0 20px transparent
    }
}

@keyframes red-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }

    100% {
        -webkit-box-shadow: 0 0 0 20px transparent;
        box-shadow: 0 0 0 20px transparent
    }
}
/* infiUpDown animation */
.infiUpDown {
    animation: infiUpDown 1s infinite alternate;
}

/* heartbeat animation */
.heartbeat {
    animation: heartbeat 1s infinite alternate;
}

/* leftright animation */
.infiLeftRight {
    animation: infiLeftRight 1s infinite alternate;
}
