:root {
    --primary-font: "Josefin Sans", sans-serif;
    --secondary-font: "Outfit", sans-serif;
    --primary-color: #000000;
    --secondary-color: #fbfaf8;
    --info-color: #d3ad69;
    --primary-font-size: 17px;
    --primary-transition-effect: all 0.35s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--secondary-font);
    font-size: var(--primary-font-size);
}
html {
    scroll-behavior: smooth;
}
body {
    /* background: #fbfaf8; */
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}

.container {
    max-width: 1630px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
/* 1366x768 (11.39%)
1440x900 (4.17%) */
@media (max-width:1660px) {
    .container {
        max-width: 1536px;
    }
}
@media (max-width:1540px) {
    .container {
        max-width: 1440px;
    }
}
@media (max-width:1450px) {
    .container {
        max-width: 1366px;
    }
}
@media (max-width:1367px) {
    .container {
        max-width: 1280px;
    }
}
@media (max-width:1280px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width:1140px) {
    .container {
        max-width: 960px;
    }
}
@media (max-width:960px) {
    .container {
        max-width: 768px;
    }
}
@media (max-width:767px) {
    .container {
        max-width: 576px;
    }
}
@media (max-width:575px) {
    .container {
        max-width: 100%;
    }
}

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

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

.d-flex {
    display: flex;
    flex-wrap: wrap;
} */

/* .align-items-center {
    align-items: center;
} */

/* .justify-content-centre {
    justify-content: center;
} */

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

/* .justify-content-around {
    justify-content: space-around;
} */

.primary-button {
    text-align: center;
    background: var(--primary-color);
    padding: 15px 30px 12px;
    display: inline-block;
    color: var(--secondary-color);
    line-height: 24px;
    border-radius: 2px;
    font-family: var(--primary-font);
    border: 0;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}
@media (max-width:480px) {
    .primary-button {
        font-size: 16px;
    }
}

.primary-button:hover,
.primary-button:focus {
    background: var(--info-color);
    color: var(--secondary-color);
}

/* header css start */
.header-top-bar {
    background: var(--secondary-color);
}

/* .header-top-contact {
    width: 50%;
} */

.header-top-contact li+li {
    margin-left: 15px;
}

.header-top-contact li:first-child a {
    padding-left: 21px;
}

.header-top-contact a {
    font-family: var(--primary-font);
    display: block;
    padding: 9px 0 9px 17px;
    font-size: 14px;
    position: relative;
    /* opacity: 0.7; */
}

.header-top-contact a:hover,
.header-top-contact a:focus {
    opacity: 1;
}

/* .header-top-contact .lnr {
    display: inline-block;
    font-size: 16px;
} */
.header-top-contact img {
    height: 15px;
    position: absolute;
    left: 0;
    top: 11px;
}

.header-top-contact li:first-child img {
    height: 16px;
}

/* .header-top-socialLinks {
    width: 50%;
} */

.header-top-socialLinks li+li {
    margin-left: 7px;
}

.header-top-socialLinks a {
    display: block;
    padding: 10px 5px;
    opacity: 0.6;
    border: 1px solid;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top-socialLinks a:hover,
.header-top-socialLinks a:focus {
    opacity: 0.9;
}

.header-top-socialLinks a img {
    display: block;
    height: 14px;
}

.header-top-socialLinks li:nth-child(3) img {
    height: 14px;
    margin-bottom: -1px;
}

.header-nav-bar {
    background: var(--primary-color);
    /* overflow: hidden; */
}
@media (max-width:1140px) {
    .header-nav-bar {
        padding: 20px 0;
    }
}
.site-toggle {
    display: none;
    margin-left: 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.site-toggle .lnr  {
    color: var(--secondary-color);
    font-size: 32px;
}
@media (max-width:1140px) {
    .site-toggle {
        display: inline-block;
    }
}
.menu-close {
    background: transparent;
    border: 0;
    display: none;
}
@media (max-width:1140px) {
    .menu-close {
        display: flex;
        position: absolute;
        top: 5px;
        left: 5px;
        background: #fff;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
    }
}
.menu-close .lnr {
    font-size: 32px;
    color: #fff;
}
@media (max-width:1140px) {
    .menu-close .lnr {
        font-size: 22px;
        color: var(--primary-color);
        font-weight: 600;
    }
}
/* .site-logo {
    width: 17%;
} */

.site-logo img {
    max-width: 172px;
    display: block;
}
@media (max-width:575px) {
    .site-logo img {
        max-width: 122px;
    }
}
.site-navigation {
    /* width: 83%; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.site-navigation .menu-link>a {
    display: inline-block;
    color: var(--secondary-color);
    font-family: var(--primary-font);
    padding: 40px 0;
}
@media (max-width:1140px) {
    .site-navigation .menu-link {
        padding-right: 30px;
    }
    .site-navigation .menu-link>a {
        display: block;
        padding: 15px 0;
    }
}
.site-navigation .menu-link:hover>a,
.site-navigation .menu-link:focus>a {
    color: var(--info-color);
}

.site-navigation .menu-link+.menu-link {
    margin-left: 30px;
}
@media (max-width:1280px) {
    .site-navigation .menu-link+.menu-link {
        margin-left: 20px;
    }
}
@media (max-width:1140px) {
    .site-navigation .menu-link+.menu-link {
        margin-left: 0;
    }
}

.site-navigation .menu-link .lnr {
    color: var(--secondary-color);
    font-size: 12px;
    margin-left: 5px;
    transition: var(--primary-transition-effect);
}
@media (max-width:1140px) {
    .site-navigation .menu-link .lnr {
        font-size: 14px;
        top: 20px;
        right: 0;
        position: absolute;
    }
}

.site-navigation .menu-link:hover > .lnr,
.site-navigation .menu-link:focus > .lnr {
    color: var(--info-color);
}

.site-navigation>ul {
    justify-content: flex-end;
}

.site-navigation .dropDown-menu,
.site-navigation .subdropDown-menu {
    position: relative;
}

.site-navigation .dropDown-menu:hover > .subMenu-list,
.site-navigation .subdropDown-menu:hover > .subMenu-list {
    transform: none;
    visibility: visible;
    opacity: 1;
}
.header-search {
    margin-left: 30px;
}
.header-search .lnr {
    color: #fff;
    cursor: pointer;
}
@media (max-width:1140px) {
    .header-search .lnr {
        font-size: 20px;
    }
}
.dropDown-menu > .subMenu-list {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: -20px;
    z-index: 9;
    background: #000;
    width: 250px;
    padding-bottom: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateY(10px);
    transition: all 0.35s ease-in-out 0s;
}
@media (max-width:1140px) {
    .dropDown-menu > .subMenu-list {
        display: none;
    }
}
.subdropDown-menu .subMenu-list {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 9;
    background: #000;
    width: 250px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transform: translateX(10px);
    transition: all 0.35s ease-in-out 0s;
}
@media (max-width:1140px) {
    .subdropDown-menu .subMenu-list {
        display: none;
    }
}
.subMenu-list li+li a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.subMenu-list a {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    padding: 16px 20px;
    display: block;
    font-size: 15px;
}

.subMenu-list a:hover,
.subMenu-list a:focus {
    color: var(--info-color);
}
@media (max-width:1140px) {
    .main-menu {
        position: fixed;
        width: 350px;
        top: 0;
        bottom: 0;
        right: 0;
        background: #000;
        z-index: 9991;
        transform: translateX(100%);
        transition: all 0.35s ease-in-out;
    }
    .header-nav-bar.show-nav .main-menu {
        transform: none;
    }
    .main-menu ul.d-flex {
        display: block !important;
        padding: 50px;
    }
}
@media (max-width:767px) {
    .main-menu {
        width: 320px;
    }
    .main-menu ul.d-flex {
        padding: 45px 40px 40px;
    }
}
.subdropDown-menu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subdropDown-menu > a:hover .lnr,
.subdropDown-menu > a:focus .lnr {
    color: var(--info-color);
}
/* banner css start */
.site-banner {
    overflow: hidden;
    position: relative;
}

.site-banner .slick-track {
    display: flex;
}

.banner-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: inline-block;
    vertical-align: top;
    padding: 150px 0;
    position: relative;
}
@media (max-width:1540px) {
    .banner-slide {
        padding: 120px 0;
    }
}
@media (max-width:1450px) {
    .banner-slide {
        padding: 90px 0;
    }
}
@media (max-width:1280px) {
    .banner-slide {
        padding: 60px 0 90px;
    }
}
@media (max-width:767px) {
    .banner-slide {
        padding: 200px 0 110px;
    }
}
@media (max-width:575px) {
    .banner-slide {
        background-position: 70% center;
    }
}
.site-banner .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: all 0.35s ease-in-out 0s;
}
@media (max-width:767px) {
    .site-banner .slick-arrow {
            top: 55%;
    }
}
.site-banner .slick-arrow:hover,
.site-banner .slick-arrow:focus {
    background: var(--info-color);
}

.site-banner .slick-arrow.slick-prev {
    left: 10px;
}

.site-banner .slick-arrow.slick-next {
    right: 60px;
}
@media (max-width:767px) {
    .site-banner .slick-arrow.slick-next {
        right: inherit;
        left: 10px;
        margin-top: 45px;
    }
}
.site-banner .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}

.site-banner .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
}

.banner-content {
    max-width: 850px;
    padding-left: 150px;
}
@media (max-width:1660px) {
    .banner-content {
        max-width: 770px;
        padding-left: 70px;
    }
}
@media (max-width:1540px) {
    .banner-content {
        max-width: 690px;
    }
}
@media (max-width:1450px) {
    .banner-content {
        max-width: 630px;
    }
}
@media (max-width:1367px) {
    .banner-content {
        padding-left: 50px;
        max-width: 590px;
    }
    .banner-reviews img {
        max-width: 150px;
    }
}
@media (max-width:1280px) {
    .banner-content {
        padding: 40px;
        background: #fbfaf8a6;
        margin-left: 80px;
        border-radius: 8px;
        max-width: 490px;
    }
}
@media (max-width:960px) {
    .banner-content {
        padding: 33px;
        max-width: 450px;
        margin-left: 60px;
    }
}
@media (max-width:767px) {
    .banner-content {
        margin-left: 70px;
        max-width: 340px;
    }
}
@media (max-width:575px) {
    .banner-content {
        /* margin-left: 25px; */
        margin-right: 25px;
        max-width: 240px;
        padding: 40px;
        background: #fbfaf8db;
        padding: 30px 25px;
    }
}

.banner-content.banner-right-align {
    padding-right: 120px;
    padding-left: 0;
    margin-left: auto;
}

.banner-content h1 {
    font-family: var(--primary-font);
    font-size: 93px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 94px;
    color: var(--primary-color);
}
@media (max-width:1540px) {
    .banner-content h1 {
        font-size: 80px;
        line-height: 84px;
    }
}
@media (max-width:1450px) {
    .banner-content h1 {
        font-size: 70px;
        line-height: 74px;
    }
}
@media (max-width:1367px) {
    .banner-content h1 {
        font-size: 60px;
        line-height: 64px;
    }
}
@media (max-width:1280px) {
    .banner-content h1 {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 10px;
    }
}
@media (max-width: 991px) {
    .banner-content h1 {
        margin-bottom: 20px;
    }
}
@media (max-width:960px) {
    .banner-content h1 {
        /* font-size: 36px; */
        line-height: 46px;
    }
}
/* @media (max-width:767px) {
    .banner-content h1 {
        font-size: 28px;
        line-height: 36px;
    }
} */
@media (max-width:767px) {
    .banner-content h1 {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 0;
    }
}
@media (max-width:575px) {
    .banner-content h1 {
        font-size: 24px;
        line-height: 36px;
    }
}
.banner-content.banner-right-align h1 {
    font-size: 90px;
}

.banner-content span {
    font-size: 14px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--primary-font);
    margin-bottom: 30px;
}
@media (max-width:1140px) {
    .banner-content span {
        margin-bottom: 20px;
    } 
}
@media (max-width: 991px) {
    .banner-content span {
        display: none;
    } 
}
@media (max-width:480px) {
    .banner-content span {
        padding: 8px 18px;
    }
}
.banner-content p {
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}
@media (max-width:1140px) {
    .banner-content p {
        line-height: 28px;
        font-size: 17px;
        margin-bottom: 25px;
    }
}
@media (max-width:991px) {
    .banner-content p {
        display: none;
    }
}
@media (max-width:767px) {
    .banner-content p {
        margin-bottom: 20px;
    }
    .banner-content .primary-button {
        display: none;
    }
}
.banner-reviews {
    position: absolute;
    right: 30px;
    bottom: 20px;
    z-index: 1;
}
@media (max-width:480px) {
    .banner-reviews {
        right: 25px;
        bottom: 10px;
    }
}
.banner-reviews li+li {
    margin-left: 30px;
}
@media (max-width:1367px) {
    .banner-reviews li+li {
        margin-left: 20px;
    }
}
/* featured css start */
.featured-logo {
    padding: 40px 0;
}
@media (max-width:1280px) {
    .featured-logo {
        padding: 30px 0;
    }
}
@media (max-width:960px) {
    .featured-logo {
        padding: 20px 0;
    }
}
@media (max-width:767px) {
    .featured-logo ul {
        flex-wrap: wrap;
    }
}
.featured-logo img {
    max-width: 220px;
    display: block;
}
@media (max-width:1450px) {
    .featured-logo img {
        max-width: 200px;
    }
}
@media (max-width:1280px) {
    .featured-logo img {
        max-width: 160px;
    }
}
@media (max-width:960px) {
    .featured-logo img {
        max-width: 130px;
    }
}
.featured-logo h2 {
    font-family: var(--primary-font);
    text-align: center;
    font-size: 28px;
    color: var(--info-color);
    margin-bottom: 15px;
}
@media (max-width:767px) {
    .featured-logo h2 {
        font-size: 24px;
    }
}
@media (max-width:575px) {
    .featured-logo h2 {
        font-size: 20px;
    }
}
.featured-section {
    padding: 100px 0;
}
@media (max-width:1540px) {
    .featured-section {
        padding: 60px 0;
    }
}
@media (max-width:1280px) {
    .featured-section {
        padding: 50px 0;
    }
}
@media (max-width:767px) {
    .featured-section {
        padding: 40px 0;
    }
}
/* .featured-left-panel {
    width: 40%;
} */

.featured-right-panel {
    /* width: 60%; */
    display: flex;
    flex-wrap: wrap;
}

.featured-left-panel {
    text-align: center;
}
@media (max-width:1199.99px) {
    .featured-left-panel {
        margin-bottom: 40px;
    }
}
@media (max-width:767px) {
    .featured-left-panel {
        margin-bottom: 30px;
    }
}

.featured-left-panel img {
    max-width: 80px;
}
@media (max-width:960px) {
    .featured-left-panel img {
        max-width: 60px;
    }
}

.featured-left-panel h4 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 40px;
    font-weight: 600;
    line-height: 37px;
    margin-top: 10px;
    margin-bottom: 15px;
}
@media (max-width:1280px) {
    .featured-left-panel h4 {
        font-size: 30px;
        margin-bottom: 5px;
        margin-top: 15px;
    }
}
@media (max-width:1140px) {
    .featured-left-panel h4 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .featured-left-panel h4 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .featured-left-panel h4 {
        font-size: 26px;
    }
}
.featured-left-panel p {
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 25px;
    color: #808080;
}
@media (max-width:1140px) {
    .featured-left-panel p {
        margin: 0 auto 20px;
        max-width: 630px;
    }
}
.featured-section .services-left-panel {
    padding-left: 60px;
    padding-right: 60px;
}

.featured-col {
    width: 50%;
    padding: 20px;
}
@media (max-width:1540px) {
    .featured-col {
        padding: 10px;
    }
}
@media (max-width:767px) {
    .featured-col {
        padding: 5px;
    }
}
@media (max-width:575px) {
    .featured-col {
        width: 100%;
    }
}
.featured-card {
    background: #1a1a1a;
    padding: 40px 40px 35px;
    text-align: center;
    height: 100%;
    border-radius: 5px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .featured-card {
        padding: 40px 30px 35px;
    }
}
@media (max-width:1280px) {
    .featured-card {
        padding: 35px 20px 30px;
    }
}
@media (max-width:960px) {
    .featured-card {
        padding: 35px 30px 30px;
        text-align: left;
    }
}
@media (max-width:767px) {
    .featured-card {
        padding: 30px 25px 20px;
    }
}
@media (max-width:575px) {
    .featured-card {
        padding: 40px;
    }
}
@media (max-width:480px) {
    .featured-card {
        padding: 35px 25px 30px;
    }
}
.featured-card:hover,
.featured-card:focus {
    background: var(--info-color);
    transform: translateY(-10px);
}

.featured-card h3 {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    margin-top: 26px;
    line-height: 34px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .featured-card h3 {
        font-size: 21px;
        font-weight: 600;
    }
}
@media (max-width:1450px) {
    .featured-card h3 {
        font-size: 19px;
    }
}
@media (max-width:767px) {
    .featured-card h3 {
        font-size: 18px;
        line-height: 30px;
        margin-top: 20px;
    }
}
.featured-card p {
    color: var(--secondary-color);
    font-weight: 300;
    line-height: 29px;
    min-height: 145px;
    margin-bottom: 0;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1280px) {
    .featured-card p {
        font-size: 16px;
    }
}
@media (max-width:575px) {
    .featured-card p {
        min-height: auto;
    }
}
.featured-card img {
    height: 45px;
}
@media (max-width:767px) {
    .featured-card img {
        height: 40px;
    }
}
/* our service section css start */
.our-services-section {
    padding: 60px 0;
    overflow: hidden;
}
@media (max-width: 1540px) {
    .our-services-section {
        padding: 60px 0 40px;
    }
}
@media (max-width: 1367px) {
    .our-services-section {
        padding: 50px 0 40px;
    }
}
@media (max-width: 575px) {
    .our-services-section {
        padding: 40px 0;
    }
}
.our-services-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    overflow: hidden;
    background: rgb(250 235 233 / 26%);
    height: 100%;
}
@media (max-width: 1280px) {
    .our-services-card {
        flex-direction: column;
    }
}
.our-services-img {
    width: 45%;
}
@media (max-width: 1280px) {
    .our-services-img {
        width: 100%;
    }
}

.our-services-img img {
    display: block;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1280px) {
    .our-services-img img {
        height: 400px;
        width: 100%;
    }
}
@media (max-width: 960px) {
    .our-services-img img {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .our-services-img img {
        height: 300px;
    }
}
.our-services-info {
    width: 55%;
    padding: 40px 26px;
    position: relative;
}
@media (max-width: 1450px) {
    .our-services-info {
        padding: 25px;
    }
}
@media (max-width: 1280px) {
    .our-services-info {
        width: 100%;
    }
}

.our-services-info img {
    position: absolute;
    width: 400px;
    right: -180px;
    bottom: 0;
    opacity: 0.015;
    opacity: 0;
}
.our-services-info h2 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 34px;
    line-height: 36px;
}
@media (max-width: 1450px) {
    .our-services-info h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width: 1280px) {
    .our-services-info h2 {
        font-size: 24px;
        line-height: 1.2;
    }
}
@media (max-width: 575px) {
    .our-services-info h2 {
        font-size: 22px;
    }
}
.our-services-info p {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}
@media (max-width: 1450px) {
    .our-services-info p {
        font-size: 17px;
        line-height: 26px;
    }
}
.our-services-info ul li {
    display: inline-block;
    position: relative;
    margin-bottom: 6px;
}
@media (max-width: 1450px) {
    .our-services-info ul li a {
        padding: 3px 5px;
        font-size: 15px;
    }
}
.our-services-info ul li a {
    color: #212529;
    opacity: 0.8;
    font-weight: 300;
    border: 1px solid #ccc;
    padding: 4px 7px;
    display: block;
    border-radius: 2px;
    background: transparent;
}
.our-services-info ul li a:hover, .our-services-info ul li a:focus {
    background: #212529;
    color: #fff;
    opacity: 1;
}

/* services css start */
.service-section {
    margin: 100px 0;
}
@media (max-width: 1540px) {
    .service-section {
        margin: 60px 0;
    }
}
@media (max-width: 1367px) {
    .service-section {
        margin: 60px 0 50px;
    }
}
@media (max-width: 575px) {
    .service-section {
        margin: 40px 0;
    }
}

.services-info-panel {
    width: 55%;
    padding-left: 15px;
}

.services-image-panel {
    width: 45%;
    padding-right: 15px;
}
@media (max-width: 767px) {
    .services-image-panel {
        width: 100%;
        padding-left: 15px;
    }
}
.service-section .slick-list {
    overflow: hidden;
}
.services-info-panel h2 {
    font-family: var(--primary-font);
    font-size: 50px;
    clear: var(--primary-color);
    font-weight: 700;
    line-height: 60px;
    margin-top: 15px;
    margin-bottom: 15px;
}
@media (max-width: 1540px) {
    .services-info-panel h2 {
        font-size: 50px;
    }
}
@media (max-width: 1280px) {
    .services-info-panel h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width: 960px) {
    .services-info-panel h2 {
        font-size: 36px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .services-info-panel h2 {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 575px) {
    .services-info-panel h2 {
        font-size: 26px;
    }
}
.services-info-panel p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: #808080;
}
@media (max-width: 767px) {
    .services-info-panel p {
        font-size: 17px;
    }
}
.services-info-panel .subheaing {
    color: var(--info-color);
    letter-spacing: 1px;
    font-size: 16px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 20px 8px;
    font-weight: 500;
    color: var(--primary-color);
    /* color: var(--info-color); */
    font-family: var(--primary-font);
    margin-bottom: 10px;
    text-align: center;
}
@media (max-width: 767px) {
    .services-info-panel .subheaing {
        font-size: 14px;
        padding: 8px 18px 7px;
        margin-bottom: 0;
    }
}
.services-image-panell ul {
    margin-top: 20px;
}

.services-info-panel li+li {
    margin-top: 5px;
}

.services-info-panel li a {
    display: inline-block;
    font-family: var(--primary-font);
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 3px;
    position: relative;
    padding: 6px 0 6px 60px;
    transform: translateX(0);
}
@media (max-width: 1540px) {
    .services-info-panel li a {
        font-size: 21px;
    }
}
@media (max-width: 1140px) {
    .services-info-panel li a {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .services-info-panel li a {
        font-size: 16px;
        padding: 4px 0 4px 45px;
    }
}
.services-info-panel li a:after {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.35s ease-in-out 0s;
}
@media (max-width: 1140px) {
    .services-info-panel li a:after {
        top: 18px;
    }
}
@media (max-width: 767px) {
    .services-info-panel li a:after {
        top: 15px;
        width: 30px;
        height: 1px;
    }
}
.services-info-panel li a:hover,
.services-info-panel li a:focus {
    color: var(--primary-color);
    transform: translateX(30px);
}

.services-info-panel li a:hover:after,
.services-info-panel li a:focus:after {
    background: var(--primary-color);
}

.services-slide .services-info-panel {
    padding-right: 100px;
}
@media (max-width: 1280px) {
    .services-slide .services-info-panel {
        padding-right: 80px;
    }
}
@media (max-width: 1140px) {
    .services-slide .services-info-panel {
        padding-right: 40px;
    }
}
@media (max-width: 767px) {
    .services-slide .services-info-panel {
        width: 100%;
        padding-right: 15px;
        order: 2;
        margin-top: 35px;
    }
}
.services-slide {
    display: inline-block;
    vertical-align: top;
}

/* .services-info-panel ul {
    margin-bottom: 25px;
} */

.service-section .container {
    position: relative;
}

.service-section .slick-arrow {
    position: absolute;
    right: 15px;
    top: -48px;
    z-index: 3;
    font-size: 0;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border: 0;
    cursor: pointer;
}
@media (max-width: 1367px) {
    .service-section .slick-arrow {
        top: -58px;
    }
}
.service-section .slick-arrow.slick-prev {
    margin-right: 50px;
}

.service-section .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}

.service-section .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
}

.services-image-panel.hair-treatment-img {
    text-align: right;
}

.services-image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/*  */
.treatment-section {
    padding: 80px 0;
}
@media (max-width:1540px) {
    .treatment-section {
        padding: 60px 0;
    }
}
@media (max-width:1367px) {
    .treatment-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .treatment-section {
        padding: 40px 0;
    }
}
/* @media (max-width:767px) {
    .treatment-section {
        padding: 40px 0;
    }
} */
/* .treatment-col {
    width: 50%;
} */
@media (max-width:960px) {
    .treatment-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .treatment-col + .treatment-col {
        margin-top: 30px;
    }
}
.treatment-card.skin-card {
    background: #dfd5d3;
}

.treatment-card.hair-card {
    background: #e8dbd1;
}

.treatment-section .treatment-card h3 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 15px;
}
@media (max-width:1450px) {
    .treatment-section .treatment-card h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width:1280px) {
    .treatment-section .treatment-card h3 {
        font-size: 24px;
    }
}
@media (max-width:575px) {
    .treatment-section .treatment-card h3 {
        font-size: 22px;
    }
}
.treatment-section .treatment-card h3,
.treatment-section .treatment-card p {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    min-height: auto;
}

.treatment-section .treatment-card p {
    font-size: 20px;
    font-weight: 300;
    color: #333030;
    line-height: 34px;
}
@media (max-width:1450px) {
    .treatment-section .treatment-card p {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width:575px) {
    .treatment-section .treatment-card p {
        font-size: 17px;
    }
}
.treatment-section .treatment-card ul {
    z-index: 1;
    position: relative;
    margin-top: 30px;
}
@media (max-width:1450px) {
    .treatment-section .treatment-card ul {
        margin-top: 20px;
    }
}

.treatment-section .treatment-card li+li {
    margin-top: 20px;
}
@media (max-width:1450px) {
    .treatment-section .treatment-card li+li {
        margin-top: 10px;
    }
}
.treatment-section .treatment-card li a {
    font-family: var(--primary-font);
    font-size: 24px;
    /* text-transform: uppercase; */
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding-left: 50px;
    display: inline-block;
    transform: translateX(0);
}
@media (max-width:1540px) {
    .treatment-section .treatment-card li a {
        font-size: 20px;
    }
}
@media (max-width:575px) {
    .treatment-section .treatment-card li a {
        font-size: 18px;
        padding-left: 35px;
    }
}
@media (max-width:480px) {
    .treatment-section .treatment-card li a {
        font-size: 16px;
        padding-left: 25px;
    }
}
.treatment-section .treatment-card li a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}
@media (max-width:1540px) {
    .treatment-section .treatment-card li a:after {
        top: 13px;
    }
}
@media (max-width:575px) {
    .treatment-section .treatment-card li a:after {
        top: 14px;
        width: 25px;
        height: 1px;
    }
}
@media (max-width:480px) {
    .treatment-section .treatment-card li a:after {
        top: 10px;
        width: 17px;
    }
}
.treatment-section .treatment-card li a:hover {
    transform: translateX(10px);
}

.treatment-section .treatment-card {
    border-radius: 10px;
    text-align: left;
    position: relative;
    padding: 40px 60px 45px;
    height: 100%;
    overflow: hidden;
}
@media (max-width:1367px) {
    .treatment-section .treatment-card {
        padding: 40px 40px 45px;
    }
}
@media (max-width:575px) {
    .treatment-section .treatment-card {
        padding: 35px;
    }
}
@media (max-width:767px) {
    .treatment-section .treatment-card {
        padding: 25px;
    }
}
.treatment-section .treatment-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.9;
}

.treatment-section .treatment-card.skin-card:after {
    background: #dfd5d3;
}

.treatment-section .treatment-card.hair-card:after {
    background: #e8dbd1;
}

.treatment-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    line-height: 60px;
}
@media (max-width:1540px) {
    .treatment-section h2 {
        font-size: 50px;
        line-height: 50px;
    }
}
@media (max-width:1280px) {
    .treatment-section h2 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (max-width:960px) {
    .treatment-section h2 {
        font-size: 36px;
        line-height: 36px;
    }
}
@media (max-width:767px) {
    .treatment-section h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }
}
@media (max-width:575px) {
    .treatment-section h2 {
        font-size: 26px;
    }
}
.treatment-section .container>p {
    /* font-family: var(--primary-font); */
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width:1367px) {
    .treatment-section .container>p {
        font-size: 18px;
    }
}
@media (max-width:767px) {
    .treatment-section .container>p {
        margin-bottom: 30px;
    }
}
@media (max-width:575px) {
    .treatment-section .container>p {
        font-size: 17px;
    }
}
/* counter css start */
.counter-section {
    padding: 100px 0;
    background-color: #dfd5d338;
    position: relative;
}
@media (max-width:1540px) {
    .counter-section {
        padding: 70px 0;
    }
}
@media (max-width:1367px) {
    .counter-section {
        padding: 50px 0;
    }
}
@media (max-width:960px) {
    .counter-section {
        padding: 35px 0;
    }
    .counter-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.counter-section .container {
    position: relative;
    z-index: 1;
}

.counter-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    /* background-image: url(../img/pattern.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-card span {
    font-family: var(--primary-font);
    font-size: 80px;
    font-weight: 500;
    /* color: var(--info-color); */
    margin: 30px 0 0px;
    text-align: center;
    display: inline-block;
    line-height: 70px;
}
@media (max-width:1540px) {
    .counter-card span {
        font-size: 60px;
        line-height: 50px;
    }
}
@media (max-width:1367px) {
    .counter-card span {
        font-size: 50px;
        line-height: 40px;
    }
}
@media (max-width:1280px) {
    .counter-card span {
        font-size: 40px;
        line-height: 30px;
    }
}
@media (max-width:767px) {
    .counter-card span {
        font-size: 36px;
        line-height: 20px;
        margin-top: 25px;
    }
}
@media (max-width:480px) {
    .counter-card span {
        font-size: 30px;
    }
}
.counter-card {
    text-align: center;
}

.counter-card p {
    /* color: var(--info-color); */
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 24px;
    color: #808080;
}
@media (max-width:1540px) {
    .counter-card p {
        font-size: 20px;
    }
}
@media (max-width:1280px) {
    .counter-card p {
        font-size: 18px;
        margin-bottom: 0;
    }
}
@media (max-width:575px) {
    .counter-card p {
        font-size: 17px;
    }
}
@media (max-width:480px) {
    .counter-card p {
        font-size: 16px;
        font-weight: 400;
    }
}
/* .counter-col {
    width: 25%;
} */
@media (min-width:961px) {
    .counter-col+.counter-col {
        border-left: 1px solid rgb(0 0 0 / 10%);
    }
}
@media (max-width:960px) {
    .counter-col {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .counter-col:nth-child(2n+2) {
        border-left: 1px solid rgb(0 0 0 / 10%);
    }
    .counter-col:nth-child(n + 3) {
        border-top: 1px solid rgb(0 0 0 / 10%);
    }
}
@media (max-width:575px) {
    .counter-col {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.counter-card img {
    height: 80px;
}
@media (max-width:1540px) {
    .counter-card img {
        height: 70px;
    }
}
@media (max-width:1367px) {
    .counter-card img {
        height: 60px;
    }
}
@media (max-width:767px) {
    .counter-card img {
        height: 50px;
    }
}
@media (max-width:480px) {
    .counter-card img {
        height: 45px;
    }
}
/* achivement css start */
.achievement-section {
    padding: 100px 0;
    background: url(../img/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
@media (max-width:1540px) {
    .achievement-section {
        padding: 70px 0;
    }
}
@media (max-width:1280px) {
    .achievement-section {
        padding: 60px 0;
    }
}
@media (max-width:960px) {
    .achievement-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .achievement-section {
        padding: 40px 0;
    }
}
/* @media (max-width:767px) {
    .achievement-section {
        padding: 40px 0;
    }
} */
.achievement-top-panel {
    text-align: center;
}

.achievement-top-panel h2 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
@media (max-width:1540px) {
    .achievement-top-panel h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .achievement-top-panel h2 {
        font-size: 40px;
    }
}
@media (max-width:960px) {
    .achievement-top-panel h2 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .achievement-top-panel h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .achievement-top-panel h2 {
        font-size: 26px;
    }
}
@media (max-width:575px) {
    .achievement-top-panel p br {
        display: none;
    }
}
.achievement-top-panel p {
    color: var(--secondary-color);
    /* opacity: 0.8; */
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
    margin-bottom: 60px;
}
@media (max-width:1540px) {
    .achievement-section.training-section p {
        font-size: 18px;
    }
}
@media (max-width:575px) {
    .achievement-section.training-section p {
        font-size: 17px;
    }
}
@media (max-width:1450px) {
    .achievement-top-panel p {
        font-size: 18px;
        margin-bottom: 45px;
    }
}
@media (max-width:960px) {
    .achievement-top-panel p {
        margin-bottom: 35px;
    }
    .achievement-top-panel p br {
       display: none;
    }
}
@media (max-width:575px) {
    .achievement-top-panel p {
        font-size: 17px;
        line-height: 28px;
    }
}
/* .achievement-col {
    width: 33.33%;
} */

.achievement-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.35s ease-in-out;
}



@media (max-width:767px) {
    .achievement-card {
        display: flex;
        margin-bottom: 15px;
    }
}
@media (max-width:480px) {
    .achievement-card {
        flex-direction: column;
    }
}
/* .achievement-card:hover {
    background: #fbfaf8;
} */
.achievement-info {
    padding: 35px;
    min-height: 267px;
}
@media (max-width:1280px) {
    .achievement-info {
        padding: 30px;
        min-height: auto;
    }
}
@media (max-width:960px) {
    .achievement-info {
        padding: 20px;
    }
}
@media (max-width:480px) {
    .achievement-info {
        order: 2;
    }
}
.achievement-img {
    overflow: hidden;
}
@media (max-width:480px) {
    .achievement-img {
        order: 1;
    }
}
.achievement-img img {
    display: block;
    width: 100%;
    transition: all 0.35s ease-in-out;
}
@media (max-width:767px) {
    .achievement-img img {
        height: 100%;
        object-fit: cover;
    }
}
.achievement-card:hover .achievement-img img {
    transform: scale(1.1);
}

.achievement-card h3 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 40px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .achievement-card h3 {
        font-size: 28px;
    }
}
@media (max-width:1450px) {
    .achievement-card h3 {
        font-size: 26px;
        line-height: 34px;
    }
}
@media (max-width:1367px) {
    .achievement-card h3 {
        font-size: 24px;
    }
}
@media (max-width:1140px) {
    .achievement-card h3 {
        font-size: 19px;
        line-height: 25px;
    }
}
.achievement-card p {
    color: #808080;
    line-height: 30px;
    font-size: 18px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1367px) {
    .achievement-card p {
        margin-bottom: 0;
    }
}
@media (max-width:1140px) {
    .achievement-card p {
        line-height: 25px;
        font-size: 16px;
    }
}
/* .achievement-card:hover h3,
.achievement-card:hover p {
    color: var(--primary-color);
} */
/* .achievement-card.light-card .achievement-info{
    background: #e8dbd1;
}
.achievement-card.light-card .achievement-info h3,
.achievement-card.light-card .achievement-info p {
    color: var(--primary-color);
} */

/* client css start */
.client-section {
    padding: 100px 0;
}
@media (max-width:1540px) {
    .client-section {
        padding: 70px 0;
    }
}
@media (max-width:960px) {
    .client-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .client-section {
        padding: 40px 0;
    }
}
.client-result {
    /* width: 70%; */
    overflow: hidden;
    position: relative;
}

/* .client-info {
    width: 30%;
} */

.client-col {
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
}
@media (max-width:575px) {
    .client-col {
        padding: 0 8px;
    }
}
.client-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 4px;
}

.client-card::before {
    display: block;
    content: "";
    padding-top: 107.25%;
}

.client-card iframe,
.client-card video,
.client-card>img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}
@media (max-width:991px) {
    .client-info {
        margin-bottom: 30px;
        text-align: center;
    }
}
.client-info .subheading {
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 14px;
}
@media (max-width:1540px) {
    .client-info .subheading {
        margin-bottom: 20px;
    }
}
.client-info h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 70px;
}
@media (max-width:1540px) {
    .client-info h2 {
        font-size: 50px;
        line-height: 55px;
    }
}
@media (max-width:1280px) {
    .client-info h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:960px) {
    .client-info h2 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width:767px) {
    .client-info h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }
}
@media (max-width:575px) {
    .client-info h2 {
        font-size: 26px;
    }
}
.client-info p {
    color: #808080;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 10px;
    /* opacity: 0.5; */
}
.client-info p:last-of-type {
    margin-bottom: 30px;
}
@media (max-width:1280px) {
    .client-info p {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
@media (max-width:575px) {
    .client-info p {
        font-size: 17px;
    }
}
.client-card .play-icon {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    opacity: 0.8;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in-out;
}
@media (max-width:767px) {
    .client-card .play-icon {
        width: 50px;
        height: 50px;
    }
}
.client-card:hover .play-icon {
    opacity: 1;
}

.client-card .play-icon img {
    width: 20px;
}
@media (max-width:767px) {
    .client-card .play-icon img {
        width: 15px;
    }
}
.client-result .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    opacity: 1;
    transition: all 0.35s ease-in-out 0s;
}

.client-result:hover .slick-arrow {
    opacity: 1;
}

.client-result .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}

.client-result .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
}

.client-result .slick-arrow.slick-next {
    right: 10px;
}
@media (max-width: 1280px) {
    .client-result .slick-arrow {
        opacity: 1;
    }
}
.celebrities-client-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 25px;
}
@media (max-width: 1540px) {
    .celebrities-client-section h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .celebrities-client-section h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:960px) {
    .celebrities-client-section h2 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width:767px) {
    .celebrities-client-section h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .celebrities-client-section h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
.celebrities-client-section .slick-list {
    overflow: hidden;
}
.cele-client-col {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}
.cele-client-col img {
    width: 100%;
}
/* celebrities css start */
.celebrities-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    /* background: #faebe9; */
    padding: 0 50px 20px;
}
@media (max-width:1540px) {
    .celebrities-section h2 {
        font-size: 50px;
        line-height: 60px;
    }
}
@media (max-width:1280px) {
    .celebrities-section h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:1140px) {
    .celebrities-section h2 {
        font-size: 36px;
        line-height: 45px;
    }
}
@media (max-width:960px) {
    .celebrities-section h2 {
        font-size: 30px;
        line-height: 40px;
        padding: 0 40px 15px;
        margin-bottom: 0;
    }
}
@media (max-width:767px) {
    .celebrities-section h2 {
        font-size: 23px;
        line-height: 30px;
        padding: 0 25px 15px;
    }
}
.celebrities-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
@media (max-width:480px) {
    .celebrities-profiles {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}
.celebrities-col:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}
@media (max-width:480px) {
    .celebrities-col:nth-child(1) {
        grid-area: 1 / 1 / 2 / 5;
    }
}
.celebrities-col:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}
@media (max-width:480px) {
    .celebrities-col:nth-child(2) {
        grid-area: 2 / 1 / 2 / 3;
    }
}
.celebrities-col:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}
@media (max-width:480px) {
    .celebrities-col:nth-child(3) {
        grid-area: 2 / 3 / 3 / 5;
    }
}
.celebrities-col:nth-child(4) {
    grid-area: 1 / 3 / 3 / 4;
}
@media (max-width:480px) {
    .celebrities-col:nth-child(4) {
        grid-area: 3 / 1 / 3 / 5;
    }
}

.celebrities-col {
    overflow: hidden;
}

.celebrities-card {
    cursor: pointer;
    height: 100%;
    position: relative;
}

.celebrities-card>img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1280px) {
    .celebrities-card>img {
        height: 560px;
    }
}
@media (max-width:1140px) {
    .celebrities-card>img {
        height: 440px;
    }
}
@media (max-width:767px) {
    .celebrities-card>img {
        height: 350px;
    }
}
@media (max-width:480px) {
    .celebrities-card>img {
        height: 280px;
        object-position: 0 -80px;
    }
    .celebrities-skin .celebrities-card>img {
        object-position: 0 -10px;
    }
}


.celebrities-card:hover>img {
    transform: scale(1.1);
}

.celebrities-col:nth-child(2) .celebrities-card>img,
.celebrities-col:nth-child(3) .celebrities-card>img {
    height: 325px;
    object-position: 0 -130px;
}
@media (min-width: 1280.98px) {
    .celebrities-skin .celebrities-col:nth-child(2) .celebrities-card>img,
    .celebrities-skin .celebrities-col:nth-child(3) .celebrities-card>img {
        object-position: 0 -90px;
    }
}
@media (max-width:1280px) {
    .celebrities-col:nth-child(2) .celebrities-card>img, .celebrities-col:nth-child(3) .celebrities-card>img {
        height: 280px;
        object-position: 0 -70px;
    }
}
@media (max-width:1140px) {
    .celebrities-col:nth-child(2) .celebrities-card>img, .celebrities-col:nth-child(3) .celebrities-card>img {
        height: 220px;
    }
}
@media (max-width:767px) {
    .celebrities-col:nth-child(2) .celebrities-card>img, .celebrities-col:nth-child(3) .celebrities-card>img {
        height: 175px;
        object-position: 0 -30px;
    }
    .celebrities-skin .celebrities-col:nth-child(2) .celebrities-card>img, 
    .celebrities-skin .celebrities-col:nth-child(3) .celebrities-card>img {
        object-position: 0 0;
    }
}
@media (max-width:480px) {
    .celebrities-col:nth-child(2) .celebrities-card>img, .celebrities-col:nth-child(3) .celebrities-card>img {
        height: 215px;
    }
}
.celebrities-info {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 1;
}
@media (max-width:1540px) {
    .celebrities-info {
        bottom: 10px;
        left: 25px;
    }
}
@media (max-width:1140px) {
    .celebrities-info {
        bottom: 5px;
        left: 20px;
    }
}
.celebrities-info h3 {
    font-family: var(--primary-font);
    color: #fbfaf8;
    font-size: 40px;
    font-weight: 500;
}
@media (max-width:1540px) {
    .celebrities-info h3 {
        font-size: 30px;
    }
}
@media (max-width:1140px) {
    .celebrities-info h3 {
        font-size: 24px;
    }
}
@media (max-width:767px) {
    .celebrities-info h3 {
        font-size: 20px;
    }
}
@media (max-width:575px) {
    .celebrities-info h3 {
        font-size: 18px;
    }
}
.celebrities-card .play-icon {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    opacity: 0;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease-in-out;
}
@media (max-width:767px) {
    .celebrities-card .play-icon {
        width: 50px;
        height: 50px;
    }
}
.celebrities-card:hover .play-icon {
    opacity: 0.8;
}

.celebrities-card .play-icon img {
    width: 20px;
}
@media (max-width:767px) {
    .celebrities-card .play-icon img {
        width: 16px;
    }
}
/* testimonial css start */
.testimonial-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
}
@media (max-width:1540px) {
    .testimonial-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .testimonial-section {
        padding: 40px 0;
    }
}
.testimonial-pattern {
    position: absolute;
    z-index: -1;
    max-width: 660px;
    bottom: 0;
    left: -250px;
    opacity: 0.02;
}

.testimonial-section .container {
    max-width: 800px;
}

.google-review {
    opacity: 0.8;
    max-width: 170px;
    margin-bottom: -10px;
}
@media (max-width:960px) {
    .google-review {
        max-width: 130px;
    }
}

.testimonial-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 70px;
}
@media (max-width:1540px) {
    .testimonial-section h2 {
        font-size: 50px;
        line-height: 60px;
    }
}
@media (max-width:1280px) {
    .testimonial-section h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:960px) {
    .testimonial-section h2 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width:767px) {
    .testimonial-section h2 {
        font-size: 30px;
    }
}
.testimonial-section h3 {
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    line-height: 30px;
    padding-top: 30px;
    position: relative;
}
@media (max-width:575px) {
    
.testimonial-section h3 {
    font-size: 18px;
}
}
.testimonial-section h3 img {
    display: block;
    width: 210px;
    margin: 0 auto;
    opacity: 0.05;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-section h4,
.testimonial-section span {
    font-weight: 400;
    font-size: 20px;
}

.testimonial-section span {
    color: var(--info-color);
}

.testimonial-section .slider {
    overflow: hidden;
}

.testimonial-section .slick-slide {
    display: inline-block;
    vertical-align: top;
}

.testimonial-section .slider.slider-nav {
    max-width: 500px;
    margin: 50px auto 0;
    position: relative;
}
@media (max-width:767px) {
    .testimonial-section .slider.slider-nav {
        margin-top: 10px;
    }
}
.testimonial-section .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: all 0.35s ease-in-out 0s;
}

.testimonial-section .slick-arrow:hover,
.testimonial-section .slick-arrow:focus {
    background: var(--info-color);
}

.testimonial-section .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}

.testimonial-section .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
}

.testimonial-section .slick-arrow.slick-next {
    right: 0;
}

.testimonial-section .slick-arrow.slick-prev {
    left: 0;
}

.testimonial-img img {
    border-radius: 50px;
    height: 100px;
    width: 100px;
    border: 10px solid #e6e5e480;
}

/* instagram css start */
.instagram-section {
    overflow: hidden;
}
@media (max-width:480px) {
    .instagram-section .d-flex  {
        flex-wrap: wrap;
    }
}

.instagram-card {
    width: 16.6%;
    overflow: hidden;
    position: relative;
}
@media (max-width:480px) {
    .instagram-card {
        width: 33.33%;
    }
}
.instagram-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.35s ease-in-out;
}

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

.instagram-card .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.35s ease-in-out;
}
@media (max-width:575px) {
    .instagram-card .icon {
        width: 20px;
        height: 20px;
    }
}
.instagram-card:hover .icon {
    opacity: 1;
}

.instagram-card img {
    display: block;
    transition: all 0.35s ease-in-out;
}

.instagram-card:hover>img {
    transform: scale(1.05);
}

/* footer css start */
.site-footer {
    padding: 80px 0 25px;
    background: url(../img/footer-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
@media (max-width: 1367px) {
    .site-footer {
        padding: 50px 0 25px;
    }
}
@media (max-width:1280px) {
    .site-footer {
        padding: 50px 0 25px;
    }
}
.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0.9;
}

.site-footer .container {
    position: relative;
}

/* .footer-col {
    width: 25%;
} */

.footer-logo {
    display: inline-block;
    width: 210px;
}
@media (max-width:1450px) {
    .footer-logo {
        width: 180px;
    }
}
@media (max-width:1199.99px) {
    /* .site-footer .footer-col:first-child {
        border-bottom: 1px solid var(--secondary-color);
    } */
    .footer-logo {
        margin-bottom: 40px;
    }
}
.footer-heading {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 30px;
    border-bottom: 2px solid;
    display: inline-block;
    padding-bottom: 11px;
    padding-right: 7px;
}
@media (max-width:1450px) {
    .footer-heading {
        font-size: 20px;
        margin-bottom: 25px;
        border-bottom: 1px solid;
        padding-bottom: 7px;
    }
}
@media (max-width:767px) {
    .footer-heading {
        margin-bottom: 25px;
        border-bottom: 1px solid #ffffff5c;
        padding-bottom: 20px;
        display: block;
    }
    .footer-links {
        margin-bottom: 35px;
    }
}
@media (max-width:575px) {
    .footer-heading {
        margin-bottom: 19px;
        padding-bottom: 15px;
        font-size: 18px;
    }
}
.footer-links a {
    position: relative;
    padding-left: 30px;
    display: inline-block;
}
@media (max-width:1450px) {
    .footer-links a {
        padding-left: 24px;
        font-size: 16px;
    }
}
.footer-links a::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 1px;
    background: var(--secondary-color);
    top: 11px;
    left: 0;
    transition: all 0.35s ease-in-out;
}

.footer-links a:hover {
    color: var(--info-color);
    transform: translateX(10px);
}

.footer-links a:hover::before {
    background: var(--info-color);
}

.footer-links a,
.footer-col address {
    color: var(--secondary-color);
    font-weight: 300;
}

.footer-col .footer-address {
    color: var(--secondary-color);
    font-weight: 300;
    line-height: 30px;
    display: inline-block;
    max-width: 280px;
}
@media (max-width:1450px) {
    .footer-col .footer-address {
        font-size: 16px;
    }
}
@media (max-width:767px) {
    .footer-col .footer-address {
        max-width: 100%;
        margin-bottom: 35px;
    }
}
.footer-col .footer-address:hover {
    color: var(--info-color);
}

.footer-links li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin: 0 -1px 20px;
}
@media (max-width:1367px) {
    .footer-links li {
        margin: 0 -1px 12px;
    }
}
@media (max-width:1280px) {
    .footer-links li {
        display: block;
        width: 100%;
    }
}
.footer-contact li {
    margin-bottom: 20px;
}
@media (max-width:1367px) {
    .footer-contact li {
        margin-bottom: 12px;
    }
}
.footer-contact a {
    color: var(--secondary-color);
    font-weight: 300;
    display: inline-block;
}
@media (max-width:1450px) {
    .footer-contact a {
        font-size: 16px;
    }
}

.footer-contact .lnr {
    margin-right: 6px;
}

.footer-contact a:hover,
.footer-contact .lnr:hover {
    color: var(--info-color);
    transform: translateX(10px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgb(255 255 255 / 20%);
    margin-top: 25px;
}

.copyright p {
    color: var(--secondary-color);
    font-weight: 300;
    margin-bottom: 0;
}
@media (max-width:1450px) {
    .copyright p {
        font-size: 16px;
    }
}

/* expert css start */
.expert-section {
    /* background: var(--primary-color); */
    background: #1a1a1a;
    padding: 80px 0;
}
@media (max-width:1540px) {
    .expert-section {
        padding: 60px 0;
    }
}
@media (max-width:960px) {
    .expert-section {
        padding: 50px 0;
    }
}
.expert-top-panel {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.expert-top-panel h2 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
@media (max-width:1540px) {
    .expert-top-panel h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .expert-top-panel h2 {
        font-size: 40px;
    }
}
@media (max-width:960px) {
    .expert-top-panel h2 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .expert-top-panel h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .expert-top-panel h2 {
        font-size: 26px;
    }
}

.expert-top-panel p {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
    margin-bottom: 60px;
}
@media (max-width:1540px) {
    .expert-top-panel p {
        font-size: 18px;
        margin-bottom: 45px;
    }
}
@media (max-width:575px) {
    .expert-top-panel p {
        font-size: 17px;
        margin-bottom: 35px;
    }
}
.expert-card {
    padding: 0 20px;
}
@media (max-width: 1660px) {
    .expert-card {
        padding: 0 10px;
    }
}
@media (max-width:1450px) {
    .expert-card {
        padding: 0;
    }
}
.expert-img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.expert-img img {
    display: block;
    width: 100%;
}
.expert-info {
    text-align: center;
    padding: 40px 7px 0;
}

.expert-info li {
    color: var(--secondary-color);
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}
@media (max-width:1540px) {
    .expert-info li {
        font-size: 15px;
    }
}
@media (max-width:1450px) {
    .expert-info li {
        font-size: 14px;
    }
}
@media (max-width:1280px) {
    .expert-info li {
        font-weight: 400;
        margin-bottom: 14px;
        margin-top: 14px;
    }
}
@media (max-width:575px) {
    .expert-info li {
        margin-bottom: 9px;
        margin-top: 9px;
    }
}
.expert-info li+li {
    margin-left: 9px;
    padding-left: 9px;
    border-left: 2px solid #ffffffb8;
}
@media (max-width:1540px) {
    .expert-info li+li {
        margin-left: 8px;
        padding-left: 8px;
        border-left: 1px solid #ffffffb8;
    }
}
@media (max-width:1367px) {
    .expert-info li+li {
        margin-left: 7px;
        padding-left: 7px;
    }
}

.expert-info h3,
.expert-info h3 span {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 30px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .expert-info h3,
    .expert-info h3 span {
        font-size: 26px;
    }
}
@media (max-width:1280px) {
    .expert-info h3,
    .expert-info h3 span {
        font-size: 20px;
        line-height: 20px;
    }
}
.expert-info h3 span {
    display: block;
    font-weight: 600;
}

.expert-info p {
    color: var(--secondary-color);
    line-height: 30px;
    font-size: 17px;
    transition: all 0.35s ease-in-out;
    font-weight: 300;
    margin-bottom: 10px;
}

.expert-info .view-more {
    color: var(--info-color);
    line-height: 30px;
    font-size: 18px;
    transition: all 0.35s ease-in-out;
    margin-top: 10px;
    font-weight: 500;
}
@media (max-width:1540px) {
    .expert-info .view-more {
        font-size: 16px;
    }
}
.expert-info .view-more .lnr {
    margin-left: 5px;
    vertical-align: middle;
}

/* faq css start */
.faq-section {
    padding: 80px 0;
}
@media (max-width:1540px) {
    .faq-section {
        padding: 60px 0 50px;
    }
}
@media (max-width:960px) {
    .faq-section {
        padding: 50px 0;
    }
}
@media (max-width:767px) {
    .faq-section {
        padding: 50px 0 25px;
    }
}
@media (max-width:575px) {
    .faq-section {
        padding: 40px 0 20px;
    }
}
/* .faq-section .faq-content {
    width: 50%;
} */

.faq-section .faq-img {
    /* width: 50%; */
    padding-left: 60px;
}

.faq-content .subheading {
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 14px;
}
@media (max-width:1540px) {
    .faq-content .subheading {
        margin-bottom: 10px;
    }
}
@media (max-width:575px) {
    .faq-content .subheading {
        margin-bottom: 15px;
    }
}
.faq-content h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 70px;
}
@media (max-width:1540px) {
    .faq-content h2 {
        font-size: 40px;
        margin-bottom: 20px;
        line-height: 60px;
    }
}
@media (max-width:1280px) {
    .faq-content h2 {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 50px;
    }
}
@media (max-width:575px) {
    .faq-content h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 20px;
    }
}
.accordion-title {
    position: relative;
    background: #fff;
    /* border: 1px solid #000; */
    padding: 20px 30px;
    /* font-family: var(--primary-font); */
    font-size: 24px;
    font-weight: 500;
    color: #242424;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .accordion-title {
        font-size: 20px;
        padding-right: 60px;
    }
}
@media (max-width:575px) {
    .accordion-title {
        font-size: 18px;
    }
}
.accordion-title:after {
    content: "";
    position: absolute;
    right: 30px;
    top: 22px;
    width: 15px;
    height: 15px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
}
@media (max-width:1540px) {
    .accordion-title:after {
        top: 23px;
        width: 12px;
        height: 12px;
    }
}
.accordion-title:hover,
.accordion-title:focus {
    background: var(--info-color);
    color: var(--secondary-color);
}

.accordion-title.open {
    color: var(--secondary-color);
    background: var(--primary-color);
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-title.open:after {
    transform: rotate(135deg);
    top: 30px;
}

.accordion-content {
    padding: 20px 30px;
    background: #fbfaf8;
    margin-bottom: 25px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accordion-content p {
    font-size: 20px;
    line-height: 35px;
    color: #242424;
}
@media (max-width:1540px) {
    .accordion-content p {
        font-size: 18px;
        line-height: 29px;
    }
}
@media (max-width:575px) {
    .accordion-content p {
        font-size: 17px;
        line-height: 27px;
    }
}
/* contact css start */
.contact-section {
    overflow: hidden;
}

.conatct-info,
.contact-from {
    width: 50%;
    padding: 60px 100px;
    position: relative;
}
@media (max-width:1540px) {
    .conatct-info, .contact-from {
        padding: 60px 55px;
    }
}
@media (max-width:1450px) {
    .conatct-info, .contact-from {
        padding: 50px 55px;
    }
}
@media (max-width:960px) {
    .conatct-info, .contact-from {
        width: 100%;
    }
}
@media (max-width:575px) {
    .conatct-info, .contact-from {
        padding: 40px 45px;
    }
}
@media (max-width:480px) {
    .conatct-info, .contact-from {
        padding: 35px;
    }
}
.contact-from {
    background: #1a1a1a;
}

.contact-from h2 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media (max-width:1540px) {
    .contact-from h2 {
        font-size: 40px;
    }
}
@media (max-width:1280px) {
    .contact-from h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .contact-from h2 {
        font-size: 26px;
    }
}

.contact-from p {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 25px;
}
@media (max-width:1540px) {
    .contact-from p {
        font-size: 18px;
    }
}
@media (max-width:575px) {
    .contact-from p {
        font-size: 17px;
        margin-bottom: 15px;
    }
}
.conatct-info {
    background: #fbfaf8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width:960px) {
    .conatct-info {
        min-height: 350px;
    }
}

.conatct-info::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    bottom: 0;
    right: 100%;
    background: #fbfaf8;
    z-index: -1;
}
@media (max-width:960px) {
    .conatct-info::before {
        right: -100%;
    }
}

.contact-from::before {
    content: "";
    position: absolute;
    right: -100%;
    top: 0;
    bottom: 0;
    left: 100%;
    background: #1a1a1a;
    z-index: -1;
}
@media (max-width:960px) {
    .contact-from::before {
        left: -100%;
    }
}

/* .conatct-info h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
} */
.conatct-info h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    line-height: 50px;
}
@media (max-width:1540px) {
    .conatct-info h2 {
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 48px;
    }
}
@media (max-width:1280px) {
    .conatct-info h2 {
        font-size: 28px;
        margin-bottom: 8px;
        line-height: 37px;
    }
}
@media (max-width:1199.99px) {
    .conatct-info h2 {
        font-size: 22px;
    }
    
}
@media (max-width:960px) {
    .conatct-info h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .conatct-info h2 {
        font-size: 24px;
    }
}
@media (max-width:480px) {
    .conatct-info h2 {
        font-size: 20px;
        line-height: 28px;
    }
}
.conatct-info p {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width:1199.99px) {
    .conatct-info p {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
@media (max-width:575px) {
    .conatct-info p {
        font-size: 17px;
    }
}
.contact-social-media li+li {
    margin-left: 15px;
}

.contact-social-media a {
    padding: 10px 5px;
    /* opacity: 0.6; */
    border: 1px solid var(--info-color);
    width: 45px;
    height: 45px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social-media a img {
    display: block;
    height: 18px;
}

.form-row+.form-row {
    margin-top: 20px;
}
@media (max-width:767px) {
    .form-row+.form-row {
        margin-top: 15px;
    }
}

.form-row:last-child {
    margin-top: 30px;
}

.form-control {
    border-width: 0 0 1px 0;
    border-color: var(--secondary-color);
    border-style: solid;
    color: var(--secondary-color);
    background: transparent;
    font-weight: 300;
    width: 100%;
    outline: 0;
    height: 50px;
    background: transparent;
    border-radius: 0;
}

.form-control:focus {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: none;
}

::placeholder {
    color: var(--secondary-color);
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: var(--secondary-color);
}

textarea.form-control {
    height: 120px;
    resize: none;

}
@media (max-width:767px) {
    textarea.form-control {
        height: 80px;
    }
}
.contact-from .primary-button {
    background: var(--info-color);
}

.contact-from .primary-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* whatsapp css */
.social-li-nks {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 25px;
    width: 40px;
    animation: bounce2 2s ease infinite 1s;
}
.call-us {
    position: fixed;
    z-index: 999;
    bottom: 25px;
    right: 80px;
    width: 40px;
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

    60% {
        transform: translateY(-15px);
    }
}

.side-form {
    position: fixed;
    z-index: 999;
    width: 400px;
    top: 50%;
    right: 0;
    background: #fbfaf8;
    padding: 30px 40px 30px 30px;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    transform: translate(100% ,-50%);
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .side-form {
        top: 50%;
    }
}
@media (max-width:767px) {
    .side-form {
        width: 300px;
    }
}
.side-form.form-open {
    transform: translate(0% ,-50%);
    right: -10px;
}

.side-form .form-control {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.side-form .form-control::placeholder {
    color: var(--primary-color);
}

.side-form .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: var(--primary-color);
}

.side-form-btn {
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateX(-50%) rotate(-90deg);
}

.side-form-btn .primary-button {
    font-weight: 600;
    background: #1a1a1a;
    box-shadow: 0 0 70px 20px rgba(255, 255, 255, 0.1);
}

.side-form-btn .primary-button:hover,
.side-form-btn .primary-button:focus {
    background: var(--primary-color);
}

.side-form h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 10px;
}
@media (max-width:767px) {
    .side-form h4 {
        font-size: 20px;
    }
}

/* search bar css start */
.site-search-bar {
    padding: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(255 255 255 / 96%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: translateY(-100%);
    transition: all 0.35s ease-in-out;
}
@media (max-width: 767px) {
    .site-search-bar {
        transform: translate(-100%, 0);
    }
}
.show-search .site-search-bar {
    transform: none;
}
.site-search-bar form {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.site-search-bar .form-control {
    width: 400px;
    border-bottom: 1px solid var(--primary-color);
    color: #000;
    font-size: 21px;
}
@media (max-width: 767px) {
    .site-search-bar .form-control {
        width: 280px;
        font-size: 18px;
    }
}
.site-search-bar .primary-button {
    line-height: 16px;
    padding: 18px 19px 14px;
    margin-left: 10px;
    border-radius: 2px;
}
@media (max-width: 767px) {
    .site-search-bar .primary-button {
        padding: 16px 17px 12px;
    }
}
.site-search-bar .primary-button .lnr {
    font-size: 19px;
    color: var(--secondary-color);
}
.site-search-bar .search-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--primary-color);
    border: 0;
    padding: 10px;
    border-radius: 2px;
    line-height: 1;
    transition: all 0.35s ease-in-out;
}
.site-search-bar .search-close .lnr {
    font-size: 22px;
    color: var(--secondary-color);
}
.site-search-bar .search-close:hover,
.site-search-bar .search-close:focus {
    background: var(--info-color);
}


/* contact us css */
.site-innerbanner {
    position: relative;
    text-align: center;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (max-width:1540px) {
    .site-innerbanner {
        padding: 90px 0;
    }
}
@media (max-width:1367px) {
    .site-innerbanner {
        padding: 70px 0;
    }
}
@media (max-width:1280px) {
    .site-innerbanner {
        padding: 50px 0;
    }
}
@media (max-width:1140px) {
    .site-innerbanner {
        padding: 40px 0;
    }
}
.site-innerbanner:after {
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    /* background: rgb(232 219 209 / 93%); */
    background: rgb(234 234 234 / 93%);
    /* background: #e8dbd1; */
    /* background: #fafafa; */
}
.site-innerbanner .container {
    position: relative;
    z-index: 2;
}
.blog-top-info {
    margin-top: 10px;
}
.blog-top-info li div, .blog-top-info li div b {
    font-size: 21px;
}
@media(max-width:767px) {
    .blog-top-info li div, .blog-top-info li div b {
        font-size: 18px;
    }  
}
.blog-top-info li {
    padding: 0 15px;
    position: relative;
}
.blog-top-info li + li:before {
    content: "";
    position: absolute;
    left: -4px;
    top: 13px;
    width: 8px;
    height: 8px;
    background: #242424;
    border-radius: 10px;
}
.site-innerbanner h1 {
    font-family: var(--primary-font);
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}
@media (max-width:1540px) {
    .site-innerbanner h1 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .site-innerbanner h1 {
        font-size: 40px;
    }
}
@media (max-width:991px) {
    .site-innerbanner h1 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .site-innerbanner h1 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .site-innerbanner h1 {
        font-size: 26px;
    }
}
.site-innerbanner p {
    line-height: 30px;
    font-size: 21px;
    font-weight: 300;
    margin-bottom: 24px;
    margin-top: 10px;
    color: #242424;
}
@media (max-width:1540px) {
    .site-innerbanner p {
        font-size: 20px;
    }
}
@media (max-width:1140px) {
    .site-innerbanner p {
        font-size: 18px;
        line-height: 24px;
    }
}
.page-breadcrumb li, .page-breadcrumb li a {
    font-weight: 300;
    color: var(--primary-color);
}
.page-breadcrumb li .lnr {
    font-size: 12px;
    margin: 0 7px;
    font-weight: 600;
}
.contactUs-section {
    padding: 80px 0;
}
@media (max-width: 1540px) {
    .contactUs-section {
        padding: 60px 0;
    }
}
@media (max-width: 960px) {
    .contactUs-section {
        padding: 50px 0;
    }
}
.contactUs-section .container,
.faq-contact-us .container {
    max-width: 1280px;
}
.contactUs-content .subheading {
    font-size: 14px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 9px 20px 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--primary-font);
    margin-bottom: 15px;
}
.contactUs-content h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}
@media (max-width: 1540px) {
    .contactUs-content h2 {
        font-size: 50px;
    }
}
@media (max-width: 1280px) {
    .contactUs-content h2 {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    .contactUs-content h2 br {
        display: none;
    }
}
@media (max-width: 960px) {
    .contactUs-content h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .contactUs-content h2 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .contactUs-content h2 {
        font-size: 26px;
    }
}
.contactUs-content p {
    color: #808080;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 40px;
}
@media (max-width: 1540px) {
    .contactUs-content p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .contactUs-content p {
        font-size: 17px;
    }
}
.contact-details .lnr-envelope:before {
    margin-right: -3px;
    position: relative;
    top: -1px;
}
.contact-details .lnr-smartphone:before {
    margin-right: -3px;
    position: relative;
    top: 1px;
}
/* .business-hours h3 {
    font-size: 24px;
    margin-top: 30px;
    font-family: var(--primary-font);
    margin-bottom: 10px;
    font-weight: 600;
}
.business-hours td {
    border-top: 0;
    padding: 0;
    color: #808080;
    font-size: 20px;
} */
.contactUs-content .contact-details table {
    margin-bottom: 0;
}
.contactUs-content .contact-details td:first-child {
    padding-left: 0;
}
.contactUs-content .contact-details td {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-family: var(--primary-font);
    font-size: 20px;
    position: relative;
    display: inline-block;
    color: #808080;
}
.contactUs-content .contact-details a {
    font-family: var(--primary-font);
    font-size: 20px;
    position: relative;
    padding: 6px 0 6px 60px;
    display: inline-block;
    color: #808080;
}
@media (max-width: 991px) {
    .contactUs-content .contact-details a {
        font-size: 18px;
    }
}
.contactUs-content .contact-details .lnr {
    position: absolute;
    left: 0;
    top: -4px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--info-color);
    color: var(--info-color);
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
    line-height: 43px;
}
.contactUs-content .contact-details li + li {
    margin-top: 25px;
}

.contact-map iframe {
    width: 100%;
    height: 500px;
    display: block;
}
.contactUs-form .form-control {
    border-width: 0 0 1px 0;
    border-color: #ccc;
    border-style: solid;
    color: var(--primary-color);
    background: transparent;
    font-weight: 300;
    width: 100%;
    outline: 0;
    height: 50px;
    background: transparent;
    border-radius: 0;
    padding: 0;
}
.contactUs-form textarea.form-control {
    height: 120px;
}
.contactUs-form {
    /* background: var(--primary-color); */
    /* background: url(../img/bannerImg1.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
@media (max-width:991px) {
    .contactUs-form {
        padding: 35px;
    }
}
.contactUs-form::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #ffffff;
}
.contactUs-form form {
    padding-left: 5px;
    padding-right: 5px;
}
.contactUs-form > * {
    position: relative;
    z-index: 1;
}
.contactUs-form .primary-button {
    background: var(--info-color);
    font-size: 20px;
    letter-spacing: 1px;
    padding: 18px 40px 14px;
}
.contactUs-content {
    padding-right: 80px;
}
@media (max-width:1280px) {
    .contactUs-content {
        padding-right: 0;
    }
}
.contactUs-form h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 32px;
    /* font-weight: 700; */
    margin-bottom: 10px;
    line-height: 31px;
}
@media (max-width:960px) {
    .contactUs-form h2 {
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .contactUs-form h2 {
        font-size: 24px;
    }
}
.contactUs-form p {
    color: #808080;
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 20px;
}
@media (max-width: 1540px) {
    .contactUs-form p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .contactUs-form p {
        font-size: 17px;
    }
}

.contactUs-form .form-row:last-child {
    margin-top: 50px;
}

/* blog page css */
.blog-section {
    padding: 80px 0;
}
@media (max-width:1367px) {
    .blog-section {
        padding: 60px 0;
    }
}
@media (max-width:767px) {
    .blog-section {
        padding: 40px 0;
    }
}
.blog-img {
    display: block;
    overflow: hidden;
    position: relative;
}
.blog-img img {
    transition: all 0.35s ease-in-out;
}
.blog-img .blog-date {
    position: absolute;
    z-index: 1;
    background: var(--info-color);
    color: var(--secondary-color);
    padding: 6px 11px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--primary-font);
    top: 10px;
    left: 10px;
    text-transform: uppercase;
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-info {
    padding-top: 30px;
}
.blog-info h4 a {
    color: var(--primary-color);
    font-size: 28px;
    font-family: var(--primary-font);
}
@media (max-width:960px) {
    .blog-info h4 a {
        font-size: 24px;
    }
}
.blog-info h4 a:hover,
.blog-info h4 a:focus {
    color: var(--info-color);
}
.blog-info p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 300;
}
.blog-info .read-more {
    color: var(--info-color);
    font-size: 16px;
}
.blog-info .read-more .lnr {
    color: var(--info-color);
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
}
.blog-side-heading {
    margin-bottom: 20px;
    background: var(--info-color);
    color: var(--secondary-color);
    font-size: 20px;
    padding: 12px 20px;
    border-bottom: 2px solid #000;
}
.popular-article-list li {
    position: relative;
    padding-left: 100px;
}
@media(max-width:1199.98px) {
    .popular-article-list li {
        min-height: 90px;
        margin-bottom: 20px;
    }
    .popular-article-list li a {
        min-height: 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.popular-article-list li img {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    border-radius: 4px;
}
.popular-article-list h5 {
    font-family: var(--primary-font);
    font-size: 18px;
    margin-bottom: 3px;
    transition: all 0.35s ease-in-out;
}
.popular-article-list h5:hover,
.popular-article-list h5:focus {
    color: var(--info-color);
}
.popular-article-list p {
    line-height: 21px;
    font-size: 15px;
    color: #979393;
}
@media(max-width:1199.98px) {
    .popular-article-list p {
        margin-bottom: 0;
    }
}
.blog-category-list a {
    padding-top: 6px;
    padding-bottom: 6px;
    font-family: var(--primary-font);
    font-size: 18px;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}
.blog-category-list a:hover,
.blog-category-list a:focus {
    transform: translateX(10px);
    color: var(--info-color);
}
.blog-category-list a .lnr {
    font-size: 13px;
    font-weight: 600;
    color: var(--info-color);
    margin-right: 2px;
    position: absolute;
    left: 0;
    top: 11px;
}
.blog-instagram-list img {
    width: 100%;
    display: block;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}
.blog-instagram-list .form-row {
    margin-top: 20px;
}
.sticky-div {
    position: sticky;
    top: 20px;
}
.blog-search {
    overflow: hidden;
    position: relative;
    border: 1px solid var(--info-color);
    border-radius: 50px;
    padding-right: 60px;
}
@media(max-width:1199.98px) {
    .blog-search {
        margin-top: 40px;
    }
}
.blog-search .form-control {
    color: var(--primary-color);
    padding: 10px 20px;
}
.blog-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    border: 0;
    background: var(--info-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-search button .lnr { 
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}
/* blog detail css start */
.detail-img {
    border-radius: 5px;
}
.blog-detail-info h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 28px;
    margin-top: 1.5rem;
    font-family: var(--primary-font);
}
@media (max-width:767px) {
    .blog-detail-info h3 {
        font-size: 24px;
    }
}
.blog-detail-info p {
    color: #808080;
    font-size: 18px;
    margin-top: 0.7rem;
    margin-bottom: 1rem;
}
.blog-detail-info p + p {
    margin-top: 0;
}
.blog-button {
    display: flex;
    align-items: center;
    max-width: 450px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px;
}
.blog-button:hover {
    box-shadow: 0 0 40px rgb(224 181 105 / 20%);
}
.blog-button-img img {
    max-width: 140px;
    min-height: 100px;
    object-fit: cover;
}
.blog-button-text {
    padding-left: 15px;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-color);
}
.blog-button-text span:not(.lnr) {
    display: block;
    color: var(--info-color);
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: 18px;
    letter-spacing: 1px;
}
.blog-button-text .lnr {
    font-size: 12px;
    font-weight: 600;
    position: relative;
    top: -1px;
}
.blog-navigation {
    margin-top: 60px;
}
/* profile page css start */
.profile-section {
    padding: 100px 0;
}
@media (max-width:1660px) {
    .profile-section {
        padding: 80px 0;
    } 
}
@media (max-width: 1540px) {
    .profile-section {
        padding: 60px 0;
    } 
}
@media (max-width:1140px) {
    .profile-section {
        padding: 50px 0;
    } 
}
@media (max-width:575px) {
    .profile-section {
        padding: 40px 0;
    } 
}
.profile-img {
    position: relative;
}
.profile-img .profile-description {
    padding: 25px;
    background: rgb(238 238 238);
}
.profile-img .profile-description p {
    color: var(--primary-color);
    line-height: 29px;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 400;
}
.profile-img img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.profile-info {
    padding-left: 40px;
}
@media (max-width:1280px) {
    .profile-info {
        padding-left: 0;
    } 
}
.profile-info h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 10px;
}
@media (max-width: 1540px) {
    .profile-info h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .profile-info h2 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (max-width:960px) {
    .profile-info h2 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .profile-info h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .profile-info h2 {
        font-size: 26px;
        line-height: 30px;
    }
}
.profile-info h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 40px;
    /* opacity: 0.5; */
}
@media (max-width:1280px) {
    .profile-info h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}
@media (max-width:575px) {
    .profile-info h3 {
        font-size: 17px;
    }
}
.profile-info li {
    display: flex;
    flex-wrap: wrap;
}
.profile-info li + li {
    margin-top: 7px;
    border-top: 1px solid #e3e3e3;
    padding-top: 12px;
}
.profile-info label {
    font-size: 21px;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    margin-bottom: 0;
    margin-right: 10px;
    color: var(--primary-color);
}
@media (max-width:1280px) {
    .profile-info label {
        font-size: 18px;
    }
}
.profile-info p, .profile-info a {
    color: #808080;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 0;
}
@media (max-width:575px) {
    .profile-info p, .profile-info a {
        font-size: 17px;
    }
}
.expertise-section {
    padding: 0 0 80px;
}
@media (max-width:960px) {
    .expertise-section {
        padding: 0 0 60px;
    }
}
.expertise-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
@media (max-width: 1540px) {
    .expertise-section h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .expertise-section h2 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (max-width:960px) {
    .expertise-section h2 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .expertise-section h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .expertise-section h2 {
        font-size: 26px;
        line-height: 30px;
    }
}
.expertise-top-panel p {
    color: #808080;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 60px;
}
@media (max-width: 1540px) {
    .expertise-top-panel p {
        font-size: 18px;
    }
}
@media (max-width:1450px) {
    .expertise-top-panel p {
        margin-bottom: 30px;
    }
}
@media (max-width:575px) {
    .expertise-top-panel p {
        font-size: 17px;
    }
}
.expertise-img {
    overflow: hidden;
}
.expertise-img img {
    transition: all 0.35s ease-in-out;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
@media (max-width:1280px) {
    .expertise-img img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}
.expertise-card:hover .expertise-img img {
    transform: scale(0.96);
}
.expertise-info {
    padding: 30px 20px 0;
}
@media (max-width:1280px) {
    .expertise-info {
        padding: 20px 10px 0;
    }
}
.expertise-info h3 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 77px;
}
@media (max-width: 1540px) {
    .expertise-info h3 {
        font-size: 26px;
        padding-left: 67px;
    }
}
@media (max-width:1280px) {
    .expertise-info h3 {
        font-size: 24px;
        padding-left: 37px;
        line-height: 31px;
    }
}
@media (max-width:767px) {
    .expertise-info h3 {
        font-size: 22px;
    }
}
@media (max-width:575px) {
    .expertise-info h3 {
        font-size: 20px;
        padding-left: 42px;
    }
}
.expertise-section .col-md-3:first-child h3 {
    padding-left: 58px;
}
.expertise-info h3 span {
    font-family: var(--primary-font);
    color: #faebe9;
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 10px;
    position: absolute;
    left: -20px;
    top: 10px;
    z-index: -1;
}
@media (max-width: 1540px) {
    .expertise-info h3 span {
        font-size: 65px;
    }
}
@media (max-width:1280px) {
    .expertise-info h3 span {
        font-size: 45px;
        top: 5px;
    }
}
@media (max-width:575px) {
    .expertise-info h3 span {
        font-size: 36px;
        top: 4px;
        left: -4px;
    }
}
.expertise-info p {
    color: #808080;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}
@media (max-width: 1540px) {
    .expertise-info p {
        font-size: 18px;
    }
}
@media (max-width:575px) {
    .expertise-info p {
        font-size: 17px;
        line-height: 28px;
    }
}
.feedback-section .celebrities-col:nth-child(2) .celebrities-card>img, 
.feedback-section .celebrities-col:nth-child(3) .celebrities-card>img {
    height: 325px;
    object-position: 0 0px;
}

.achievement-section.training-section {
    padding: 80px 0;
}
@media (max-width: 1540px) {
    .achievement-section.training-section {
        padding: 60px 0;
    }
}
@media (max-width: 991px) {
    .achievement-section.training-section .achievement-card,
    .achievement-section.hair-lose-section .achievement-card {
        display: flex;
    }
    .achievement-section.training-section .achievement-info,
    .achievement-section.hair-lose-section .achievement-info {
        max-width: 50%;
        flex-basis: 50%;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .achievement-section.training-section .achievement-img,
    .achievement-section.hair-lose-section .achievement-img {
        max-width: 50%;
        flex-basis: 50%;
        width: 50%;
    }
}
@media (max-width:575px) {
    .achievement-section.training-section,
    .achievement-section.hair-lose-section {
        padding: 40px 0;
    }
    .achievement-section.training-section .achievement-card,
    .achievement-section.hair-lose-section .achievement-card {
       flex-wrap: wrap;
    }
    .achievement-section.training-section .achievement-info,
    .achievement-section.training-section .achievement-img,
    .achievement-section.hair-lose-section .achievement-info,
    .achievement-section.hair-lose-section .achievement-img {
        max-width: 100%;
        flex-basis: 100%;
        width: 100%;
    }
    .achievement-section.training-section .achievement-info,
    .achievement-section.hair-lose-section .achievement-info {
        order: 2;
    }
    .achievement-section.training-section .achievement-img,
    .achievement-section.hair-lose-section .achievement-img {
        order: 1;
    }
}
.recognition-section {
    padding: 80px 0;
}
@media (max-width:1540px) {
    .recognition-section {
        padding: 60px 0;
    }
}
@media (max-width:960px) {
    .recognition-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .recognition-section {
        padding: 40px 0;
    }
}
.recognition-content h2 {
    font-family: var(--primary-font);
    font-size: 60px;
    font-weight: 600;
    margin: 0 auto 10px;
    max-width: 810px;
}
@media (max-width:1540px) {
    .recognition-content h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .recognition-content h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:960px) {
    .recognition-content h2 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width:767px) {
    .recognition-content h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .recognition-content h2 {
        font-size: 26px;
    }
}
.recognition-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 30px;
    color: #808080;
}
@media (max-width:575px) {
    .recognition-content p {
        font-size: 17px;
        line-height: 30px;
    }
}
.recognition-img {
    overflow: hidden;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 20px 20px 20px rgb(80 80 80 / 10%);
}
.recognition-img img {
    display: block;
    width: 100%;
}
.recognition-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.recognition-content li {
    font-family: var(--primary-font);
    position: relative;
    border-width: 1px;
    border-style: dashed;
    border-color: #dddd;
    width: 100%;
    margin-bottom: 20px;
    background: #f6f6f6;
    display: flex;
    border-radius: 6px;
    align-items: center;
}
@media (max-width:575px) {
    .recognition-content li {
        flex-direction: column;
        text-align: center;
    }
}
.recognition-content li:last-child {
    margin-bottom: 0;
}
.recognition-content li span {
    min-width: 110px;
    height: 100%;
    display: flex;
    border-right: 1px dashed #c3c0c0;
    align-items: center;
    justify-content: center;
}
@media (max-width:1280px) {
    .recognition-content li span {
        min-width: 100px;
    }
}
@media (max-width:575px) {
    .recognition-content li span {
        border-right: 0;
        border-bottom: 1px dashed #c3c0c0;
        width: 90%;
        padding-bottom: 20px;
        padding-top: 20px;
    }
}
.recognition-content li div {
    font-size: 18px;
    padding: 24px 36px;
    color: #242424;
    line-height: 31px;
    font-weight: 500;
}
@media (max-width:1280px) {
    .recognition-content li div {
        font-size: 16px;
        padding: 14px 26px;
        line-height: 25px;
    }
}
.recognition-content li span img {
    max-width: 55px;
    opacity: 0.9;
}
@media (max-width:1280px) {
    .recognition-content li span img {
        max-width: 45px;
    }
}
.success-stories-section h2 {
    font-family: var(--primary-font);
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -2px;
}
@media (max-width:1540px) {
    .success-stories-section h2 {
        font-size: 50px;
    }
}
@media (max-width:1280px) {
    .success-stories-section h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:960px) {
    .success-stories-section h2 {
        font-size: 36px;
        line-height: 40px;
    }
}
@media (max-width:767px) {
    .success-stories-section h2 {
        font-size: 30px;
    }
}
.success-videos {
    position: relative;
    overflow: hidden;
}
.success-videos:before {
    content: "";
    padding-top: 57%;
    display: block;
}
.success-videos iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
}
.success-stories-section {
    padding: 60px 0;
    background: #f8f8f8;
}
@media (max-width:960px) {
    .success-stories-section {
        padding: 50px 0;
    }
}
@media (max-width:575px) {
    .success-stories-section {
        padding: 40px 0;
    }
}
/* service detail page css start */
.cara-clinic-section {
    padding: 80px 0;
}
@media (max-width:1450px) {
    .cara-clinic-section {
        padding: 60px 0;
    }
}
@media (max-width:1140px) {
    .cara-clinic-section {
        padding: 50px 0;
    }
}
.cara-clinic-content h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media (max-width:1540px) {
    .cara-clinic-content h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media (max-width:1280px) {
    .cara-clinic-content h2 {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width:1140px) {
    .cara-clinic-content h2 {
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .cara-clinic-content h2 {
        font-size: 24px;
        line-height: 28px;
    }
}
.cara-clinic-content {
    padding: 60px;
}
@media (max-width:1450px) {
    .cara-clinic-content {
        padding: 45px;
    }
}
@media (max-width:1367px) {
    .cara-clinic-content {
        padding: 30px;
    }
}
@media (max-width:1280px) {
    .cara-clinic-content {
        padding: 25px;
    }
}
@media (max-width:960px) {
    .cara-clinic-content {
        padding: 30px 0 0;
    }
}
@media (max-width:767px) {
    .cara-clinic-content {
        padding: 20px 0 0;
    }
}
.cara-clinic-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 0;
    color: #808080;
}
@media (max-width:1140px) {
    .cara-clinic-content p {
        font-size: 17px;
        line-height: 28px;
    }
}
.cara-clinic-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
@media (max-width:1450px) {
    .cara-clinic-section img {
        height: 510px;
    }
}
@media (max-width:1140px) {
    .cara-clinic-section img {
        height: 480px;
    }
}
@media (max-width:960px) {
    .cara-clinic-section img {
        height: 500px;
        object-position: 0 -120px;
    }
}
@media (max-width:575px) {
    .cara-clinic-section img {
        height: auto;
        object-position: inherit;
    }
}
@media (max-width:1450px) {
    .client-section.hair-transplant-result-section {
        padding: 60px 0;
    }
}
@media (max-width:1140px) {
    .client-section.hair-transplant-result-section {
        padding: 30px 0 50px;
    }
}
.hair-transplant-result-section .client-card::before {
    padding-top: 95.25%;
}
.hair-transplant-result-section .client-info {
    padding: 50px;
    position: relative;
    display: flex;
    align-items: center;
}
@media (max-width:1367px) {
    .hair-transplant-result-section .client-info {
        padding: 20px;
    }
}
.hair-transplant-result-section .client-info h2 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 65px;
}
@media (max-width:1540px) {
    .hair-transplant-result-section .client-info h2 {
        font-size: 40px;
        line-height: 52px;
    }
}
@media (max-width:1280px) {
    .hair-transplant-result-section .client-info h2 {
        font-size: 30px;
        line-height: 42px;
    }
}
@media (max-width:1140px) {
    .hair-transplant-result-section .client-info h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 14px;
    }
}
@media (max-width:767px) {
    .hair-transplant-result-section .client-info h2 {
        font-size: 24px;
    }
}
.client-info-inner {
    position: relative;
    z-index: 1;
}
.book-appointment-section {
    background: var(--primary-color);
    padding: 70px 0;
}
@media (max-width:1540px) {
    .book-appointment-section {
        padding: 50px 0;
    }
}
@media (max-width:1140px) {
    .book-appointment-section {
        padding: 40px 0;
    }
}
@media (max-width:767px) {
    .book-appointment-section {
        text-align: center;
    }
}
.appointment-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width:960px) {
    .appointment-right {
        display: block;
        padding-left: 40px;
    }
}
@media (max-width:767px) {
    .appointment-right {
        padding-left: 0;
        margin-top: 10px;
    }
}
.appointment-content {
    position: relative;
    padding-left: 80px;
}
@media (max-width:1140px) {
    .appointment-content {
        padding-left: 65px;
    }
}
@media (max-width: 767px) {
    .appointment-content {
        display: inline-block;
        text-align: left;
    }
}
.appointment-content img {
    position: absolute;
    left: 0;
    top: -2px;
    width: 65px;
}
@media (max-width:1140px) {
    .appointment-content img {
        width: 50px;
    }
}
.appointment-content span {
    display: block;
    color: var(--secondary-color);
    font-weight: 300;
    margin-bottom: 3px;
}
@media (max-width:1140px) {
    .appointment-content span {
        font-size: 15px;
    }
}
.appointment-content a {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid;
    font-family: var(--primary-font);
}
@media (max-width:1140px) {
    .appointment-content a {
        font-size: 18px;
    }
}
.appointment-right h2 {
    color: var(--secondary-color);
    text-transform: capitalize;
    margin-right: 200px;
    margin-bottom: 0;
    font-family: var(--primary-font);
    position: relative;
}
@media (max-width:1540px) {
    .appointment-right h2 {
        font-size: 28px;
        margin-right: 170px;
    }
}
@media (max-width:1367px) {
    .appointment-right h2 {
        margin-right: 120px;
    }
}
@media (max-width:1280px) {
    .appointment-right h2 {
        font-size: 24px;
        margin-right: 90px;
    }
}
@media (max-width:1140px) {
    .appointment-right h2 {
        font-size: 20px;
        margin-right: 62px;
    }
}
@media (max-width:960px) {
    .appointment-right h2 {
        margin-bottom: 20px;
        line-height: 38px;
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .appointment-right h2 {
        margin-bottom: 25px;
        font-size: 24px;
        margin-right: 0;
    }
}
.appointment-right h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background: #fff;
    top: 20px;
    right: -120px;
}
@media (max-width:1540px) {
    .appointment-right h2:after {
        width: 90px;
        top: 16px;
        right: -110px;
    }
}
@media (max-width:1367px) {
    .appointment-right h2:after {
        width: 70px;
        right: -86px;
    }
}
@media (max-width:1280px) {
    .appointment-right h2:after {
        width: 50px;
        right: -66px;
    }
}
@media (max-width:1140px) {
    .appointment-right h2:after {
        width: 40px;
        right: -46px;
        top: 12px;
    }
}
@media (max-width:767px) {
    .appointment-right h2:after {
        display: none;
    }
}


.appointment-right .primary-button {
    background: var(--info-color);
}
@media (max-width:1140px) {
    .appointment-right .primary-button {
        font-size: 16px;
        padding: 15px 22px 12px;
    }
}
/* benefit css start */
.benefit-section {
    padding: 80px 0;
    background: url(../img/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
@media (max-width:1450px) {
    .benefit-section {
        padding: 60px 0;
    }
}
@media (max-width:1140px) {
    .benefit-section {
        padding: 50px 0;
    }
}
.benefit-section .subheading {
    letter-spacing: 1px;
    display: block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 auto;
    font-size: 14px;
    width: 150px;
    text-align: center;
}
.benefit-section h2 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width:1540px) {
    .benefit-section h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }
}
@media (max-width:1280px) {
    .benefit-section h2 {
        font-size: 30px;
    }
}
@media (max-width:1140px) {
    .benefit-section h2 {
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .benefit-section h2 {
        font-size: 24px;
    }
}
.benefit-card {
    overflow: hidden;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.35s ease-in-out;
    display: flex;
    height: 100%;
    /* margin-bottom: 30px; */
}
@media (max-width:1140px) {
    .benefit-card {
        display: block;
    }
}
.benefit-content {
    padding: 50px;
    min-height: auto;
}
@media (max-width:1540px) {
    .benefit-content {
        padding: 35px;
    }
}
@media (max-width:1367px) {
    .benefit-content {
        padding: 30px;
    }
}
@media (max-width:767px) {
    .benefit-content {
        padding: 20px;
    }
}
.benefit-img img {
    display: block;
    height: 100%;
    min-width: 320px;
    object-fit: cover;
}
@media (max-width:1540px) {
    .benefit-img img {
        min-width: 270px;
    }
}
@media (max-width:1280px) {
    .benefit-img img {
        min-width: 200px;
    }
}
@media (max-width:1140px) {
    .benefit-img img {
        min-width: auto;
        height: auto;
    }
}
@media (max-width:767px) {
    .benefit-img img {
        width: 100%;
    }
}
.benefit-content h3 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 30px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .benefit-content h3 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 5px;
    }
}
@media (max-width:767px) {
    .benefit-content h3 {
        font-size: 20px;
    }
}
.benefit-content p {
    margin-bottom: 0;
    color: #808080;
    line-height: 30px;
    font-size: 18px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .benefit-content p {
        font-size: 17px;
        line-height: 25px;
    }
}

.work-section {
    padding: 80px 0 40px;
}
@media (max-width:1450px) {
    .work-section {
        padding: 60px 0 20px;
    }
}
@media screen and (max-width: 1367px) and (min-width: 1200px) {
    .work-section .col-xl-3 {
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
@media (max-width:1280px) {
    .work-section {
        padding: 50px 0 10px;
    }
}
@media (max-width: 575px) {
    .work-section {
        padding-top: 40px;
    }
}
.work-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 720px;
}
@media (max-width:1540px) {
    .work-section h2 {
        font-size: 40px;
    }
}
@media (max-width:960px) {
    .work-section h2 {
        font-size: 36px;
    }
}

@media (max-width:767px) {
    .work-section h2 {
        font-size: 30px;
        max-width: 470px;
    }
}
@media (max-width: 575px) {
    .work-section h2 {
        font-size: 26px;
    }
}
.work-section .subheading {
    letter-spacing: 1px;
    display: block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 auto;
    font-size: 14px;
    width: 140px;
    text-align: center;
}
.work-section .row {
    counter-reset: list;
}
.work-section .work-card::after {
    counter-increment: list;
    content: "0" counter(list);
    position: absolute;
    right: 40px;
    top: -40px;
    color: #d3ae6c;
    font-family: var(--primary-font);
    font-size: 140px;
    z-index: -1;
    font-weight: 700;
    opacity: 0.1;
}
@media (max-width:1540px) {
    .work-section .work-card::after {
        top: -20px;
        font-size: 100px;
    }
}
@media (max-width:1280px) {
    .work-section .work-card::after {
        top: -10px;
        font-size: 80px;
    }
}
.work-card {
    height: 100%;
    margin-bottom: 40px;
    position: relative;
}
@media (max-width:767px) {
    .work-card {
        margin-bottom: 30px;
        text-align: center;
    }
}
.work-card h3 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 35px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1540px) {
    .work-card h3 {
        font-size: 24px;
    }
}
@media (max-width:1280px) {
    .work-card h3 {
        font-size: 22px;
        line-height: 30px;
    }
}
@media (max-width:767px) {
    .work-card h3 {
        font-size: 20px;
    }
}
.work-card p {
    font-size: 17px;
    margin-bottom: 0;
    color: #808080;
    line-height: 32px;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .work-card p {
        font-size: 17px;
    }
}
.work-card img {
    height: 80px;
    margin-bottom: 20px;
    opacity: 0.85;
}
@media (max-width:1280px) {
    .work-card img {
        height: 70px;
    }
}
.transplant-steps {
    position: relative;
    padding: 80px 0;
    background-image: url(../img/footer-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media (max-width:1450px) {
    .transplant-steps {
        padding: 60px 0;
    }
}
@media (max-width:1140px) {
    .transplant-steps {
        padding: 50px 0;
    }
}
.transplant-steps::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 80%);
}
.transplant-steps .container {
    position: relative;
    z-index: 1;
}
.transplant-top-panel {
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width:1540px) {
    .transplant-top-panel {
        max-width: 690px;
    }
}
@media (max-width:1280px) {
    .transplant-top-panel {
        max-width: 620px;
    }
}
@media (max-width:1140px) {
    .transplant-top-panel {
        max-width: 570px;
    }
}
.transplant-top-panel h2 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    text-transform: capitalize;
}

@media (max-width:1280px) {
    .transplant-top-panel h2 {
        font-size: 40px;
    }
}
@media (max-width:060px) {
    .transplant-top-panel h2 {
        font-size: 36px;
    }
}
@media (max-width:767px) {
    .transplant-top-panel h2 {
        font-size: 30px;
    }
}
@media (max-width:575px) {
    .transplant-top-panel h2 {
        font-size: 26px;
    }
}
.transplant-top-panel p {
    color: #d9d9d9;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 60px;
}
@media (max-width:1140px) {
    .transplant-top-panel p {
        font-size: 17px;
        margin-bottom: 45px;
    }
}
.transplant-card {
    background: var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}


.transplant-img {
    overflow: hidden;
}
.transplant-img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .transplant-img img {
        height: 320px;
    }
}
.transplant-card:hover img {
    transform: scale(1.05);
}
.transplant-info {
    padding: 40px;
}
@media (max-width:1540px) {
    .transplant-info {
        padding: 30px;
    }
}
.transplant-info h3 {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--primary-color);
}
@media (max-width:1540px) {
    .transplant-info h3 {
        font-size: 24px;
    }
}
@media (max-width:1280px) {
    .transplant-info h3 {
        font-size: 22px;
    }
}
@media (max-width:767px) {
    .transplant-info h3 {
        font-size: 20px;
    }
}
.transplant-info p {
    font-size: 18px;
    color: #808080;
    line-height: 30px;
    margin-bottom: 0;
}
@media (max-width:1140px) {
    .transplant-info p {
        font-size: 17px;
        line-height: 26px;
    }
}
.transplant-steps .slick-track {
    display: flex;
}
.transplant-slider {
    overflow: hidden;
    position: relative;
}
.transplant-col {
    padding: 0 15px;
}
.transplant-slider .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    opacity: 1;
    transition: all 0.35s ease-in-out 0s;
}
.transplant-slider .slick-arrow.slick-prev {
    left: 0;
}
.transplant-slider .slick-arrow.slick-next {
    right: 0;
}
.transplant-slider .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    transform: rotate(45deg);
}
.transplant-slider .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(-45deg);
}
.target-section {
    padding: 80px 0 65px;
    position: relative;
    overflow: hidden;
}
@media (max-width:1450px) {
    .target-section {
        padding: 60px 0 45px;
    }
}
@media (max-width:1140px) {
    .target-section {
        padding: 50px 0 35px;
    }
}
@media (max-width:960px) {
    .target-section {
        padding-top: 40px;
    }
}
.target-section .target-col {
    width: 33.33%;
    padding: 15px;
}
@media (max-width:1280px) {
    .target-section .target-col {
        width: 50%;
    }
}
@media (max-width:767px) {
    .target-section .target-col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.target-section .target-top-panel h2 {
    font-size: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}
@media (max-width:1540px) {
    .target-section .target-top-panel h2 {
        font-size: 40px;
    }
}
@media (max-width:1280px) {
    .target-section .target-top-panel h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width:1140px) {
    .target-section .target-top-panel h2 {
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .target-section .target-top-panel h2 {
        font-size: 24px;
    }
}
.target-section .target-top-panel p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #808080;
}
@media (max-width:1140px) {
    .target-section .target-top-panel p {
        font-size: 17px;
    }
}
.target-section .target-top-panel {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
@media (max-width:1540px) {
    .target-section .target-top-panel {
        max-width: 800px;
    }
}
.target-section .target-card {
    text-align: left;
    padding: 35px 32px 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #d3ad69;
}
@media (max-width:1540px) {
    .target-section .target-card {
        padding: 35px;
        border-radius: 22px;
    }
}
@media (max-width:1140px) {
    .target-section .target-card {
        padding: 25px;
        border-radius: 12px;
        border-top-width: 4px;
    }
}
.target-section .target-card h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 35px;
    color: var(--primary-color);
}
@media (max-width:1540px) {
    .target-section .target-card h3 {
        font-size: 24px;
    }
}
@media (max-width:1280px) {
    .target-section .target-card h3 {
        font-size: 22px;
    }
}
@media (max-width:767px) {
    .target-section .target-card h3 {
        font-size: 20px;
    }
}
.target-section .target-card p {
    line-height: 32px;
    color: #808080;
    font-size: 18px;
    font-weight: 400;
}
@media (max-width:1140px) {
    .target-section .target-card p {
        line-height: 26px;
        font-size: 17px;
    }
}
.target-section .target-card img {
    height: 85px;
    background: #d3ad6963;
    border-radius: 40px;
}
@media (max-width:1140px) {
    .target-section .target-card img {
        height: 75px;
    }
}
.target-bg-pattern {
    position: absolute;
    left: -480px;
    top: -260px;
    max-width: 1310px;
    opacity: 0.03;
}
@media (max-width:960px) {
    .target-bg-pattern { 
        display: none;
    }
}
.risk-secton {
    overflow: hidden;
}
.risk-slider {
    position: relative;
}
.risk-secton h2 {
    font-family: var(--primary-font);
    color: #000;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    padding: 14px 20px 25px;
    line-height: 50px;
}
@media (max-width:1540px) {
    .risk-secton h2 {
        font-size: 40px;
    }
}
@media (max-width:1280px) {
    .risk-secton h2 {
        font-size: 30px;
        line-height: 40px;
        padding: 14px 20px 20px;
    }
}
@media (max-width:1140px) {
    .risk-secton h2 {
        font-size: 28px;
    }
}
@media (max-width:767px) {
    .risk-secton h2 {
        font-size: 24px;
    }
}
.risk-secton .slick-track {
    display: flex;
}
.risk-slide {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0;
    background-position: left center;
}
@media (max-width:1540px) {
    .risk-slide {
        padding: 90px 0;
    }
}
@media (max-width:1280px) {
    .risk-slide {
        background-position: center center;
    }
}
@media (max-width:767px) {
    .risk-slide {
        padding: 0;
        background-image: none!important;
    }
}
.risk-content {
    max-width: 600px;
    margin-left: auto;
}
@media (max-width:1367px) {
    .risk-content {
        max-width: 600px;
        background: rgb(255 255 255 / 77%);
        padding: 26px 40px;
        border-radius: 5px;
        margin-right: 40px;
    }
}
@media (max-width:1140px) {
    .risk-content {
        margin-right: 0;
    }
}
@media (max-width:767px) {
    .risk-content {
        padding: 0;
    }
    .risk-content img {
        height: 400px;
        margin-bottom: 30px;
        width: 100%;
        object-fit: cover;
        object-position: -110px center;
    }
}
@media (max-width:480px) {
    .risk-content {
        background-position: 45% center;
    }
}
.risk-content h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 600;
    line-height: 37px;
    margin-bottom: 20px;
}
@media (max-width:1540px) {
    .risk-content h3 {
        font-size: 30px;
        margin-bottom: 15px;
    }
}
@media (max-width:1280px) {
    .risk-content h3 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 30px;
    }
}
@media (max-width:767px) {
    .risk-content h3 {
        font-size: 22px;
        line-height: 20px;
    }
}
.risk-content p {
    color: #808080;
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;
    margin-bottom: 0;
    transition: all 0.35s ease-in-out;
}
@media (max-width:1140px) {
    .risk-content p {
        font-size: 17px;
        line-height: 28px;
    }
}
.risk-secton .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    opacity: 1;
    transition: all 0.35s ease-in-out 0s;
}
.risk-secton .slick-arrow.slick-prev {
    left: 60px;
}
@media (max-width:767px) {
    .risk-secton .slick-arrow.slick-prev {
        left: 10px;
    }
}
.risk-secton .slick-arrow.slick-next {
    right: 60px;
}
@media (max-width:767px) {
    .risk-secton .slick-arrow.slick-next {
        right: 10px;
    }
}

.risk-secton .slick-arrow.slick-prev:after {
    content: "";
    position: absolute;
    left: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: rotate(45deg);
}
.risk-secton .slick-arrow.slick-next:after {
    content: "";
    position: absolute;
    right: 17px;
    top: 15px;
    width: 9px;
    height: 9px;
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: rotate(-45deg);
}
.final-result-section {
    padding: 100px 0;
}
@media (max-width:1450px) {
    .final-result-section {
        padding: 80px 0;
    }
}
@media (max-width:1280px) {
    .final-result-section {
        padding: 60px 0;
    }
}
@media (max-width:1140px) {
    .final-result-section {
        padding: 50px 0;
    }
}
.final-result-img {
    height: 100%;
}
.final-result-img img {
    height: 100%;
    object-fit: cover;
}
@media (min-width:1140.98px) {
    .final-result-content {
        padding-left: 30px;
    }
}
.final-result-content li {
    position: relative;
    padding-left: 100px;
}
.final-result-content li + li {
    margin-top: 35px;
}
.final-result-content li .icon {
    width: 80px;
    height: 80px;
    display: block;
    position: absolute;
    left: 0;
    top: -10px;
    background: #d3ad6959;
    border-radius: 50px;
    text-align: center;
    line-height: 80px;
}
.final-result-content li .icon img {
    height: 50px;
}
@media (max-width:767px) {
    .final-result-content li .icon img {
        height: 40px;
    }
}
.final-result-content h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    line-height: 62px;
    margin-top: 15px;
}

@media (max-width:1280px) {
    .final-result-content h2 {
        font-size: 40px;
        line-height: 52px;
    }
}
@media (max-width:960px) {
    .final-result-content h2 {
        font-size: 36px;
        line-height: 42px;
    }
}
@media (max-width:767px) {
    .final-result-content h2 {
        font-size: 30px;
        line-height: 36px;
        margin-top: 0;
    }
}
@media (max-width:575px) {
    .final-result-content h2 {
        font-size: 26px;
        line-height: 30px;
    }
}
.final-result-content > p {
    color: #808080;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 40px;
}
@media (max-width:1140px) {
    .final-result-content > p {
        font-size: 17px;
    }
}
.final-result-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 30px;
    color: var(--primary-color);
    font-family: var(--primary-font);
}
@media (max-width:1280px) {
    .final-result-content h3 {
        font-size: 22px;
    }
}
@media (max-width:767px) {
    .final-result-content h3 {
        font-size: 20px;
        line-height: 24px;
    }
}
.final-result-content li p {
    font-size: 18px;
    line-height: 32px;
    color: #808080;
    margin-bottom: 0;
}
@media (max-width:1140px) {
    .final-result-content li p {
        font-size: 17px;
    }
}

/* hair treatment css start */
.hair-transplant-section {
    padding: 60px 0 20px;
    /* background: #fbf5f1; */
}
@media (max-width:1280px) {
    .hair-transplant-section {
        padding: 50px 0 20px;
    }
}
@media (max-width: 575px) {
    .hair-transplant-section {
        padding-top: 40px;
    }
}
.hair-transplant-section .expertise-top-panel {
    max-width: 810px;
    margin: 0 auto;
}
.hair-transplant-section .expertise-info {
    padding-top: 30px;
}
.hair-transplant-section .expertise-card {
    margin-bottom: 40px;
}
.hair-transplant-section .expertise-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
}
@media (max-width: 1540px) {
    .hair-transplant-section .expertise-info h3 {
        font-size: 26px;
        margin-bottom: 10px;
        padding-left: 55px;
    }
}
@media (max-width: 1280px) {
    .hair-transplant-section .expertise-info h3 {
        font-size: 24px;
        padding-left: 45px;
    }
}
@media (max-width: 767px) {
    .hair-transplant-section .expertise-info h3 {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .hair-transplant-section .expertise-info h3 {
        font-size: 20px;
    }
}

.hair-transplant-section .expertise-info h3 span {
    color: #eadfdd;
    z-index: 1;
    top: 2px;
    font-size: 65px;
}
@media (max-width: 1540px) {
    .hair-transplant-section .expertise-info h3 span {
        font-size: 55px;
    }
}
@media (max-width: 1280px) {
    .hair-transplant-section .expertise-info h3 span {
        font-size: 45px;
    }
}
@media (max-width: 575px) {
    .hair-transplant-section .expertise-info h3 span {
        font-size: 36px;
        left: -4px;
    }
}

@media (min-width: 1540px) {
    .hair-lose-section {
        padding: 80px 0;
    }
}
.hair-lose-section .achievement-top-panel {
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}
@media (min-width: 1280.98px) {
    .hair-lose-section .achievement-top-panel h2 {
        font-size: 50px;
    }
}
.transplant-steps.skin-treatment-section {
    background-image: url(../img/skin-bg.jpg);
}
.transplant-steps.skin-treatment-section::before {
    background: rgb(0 0 0 / 5%);
}

.skin-treatment-section .transplant-top-panel p {
    color: #ffffff;
}
.skin-treatment-section .read-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}
.skin-treatment-section .read-more .lnr {
    font-weight: 600;
    margin-left: 5px;
    position: relative;
    top: 2px;
}
@media (min-width: 1280.98px) {
    .choose-section .final-result-content h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }
}
.choose-section .final-result-content li + li {
    margin-top: 45px;
}

.skin-slider {
    overflow: hidden;
}
.skin-slider .slick-track {
    display: flex;
}
@media (min-width: 1540.98px) {
    .skin-testimonial h2 {
        font-size: 50px;
    }
}

.breadcrumb {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background-color: transparent;
  }
  
  .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .breadcrumb a:hover {
    color: var(--info-color);
    text-decoration: underline;
  }
  
  .breadcrumb .current {
    color: #333;
    font-weight: bold;
  }

  .gallery-detail-section {
    padding: 80px 0;
  }
  @media (max-width: 1540px) {
    .gallery-detail-section {
        padding: 60px 0;
    }
  }
  @media (max-width: 960px) {
    .gallery-detail-section {
        padding: 50px 0;
    }
  }

.gallery-detail-card {
    display: inline-block;
    padding: 20px 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    /* background: var(--secondary-color); */
}
.gallery-detail-card:hover {
    background: var(--primary-color);
    transform:scale(1.02);
}
.gallery-detail-info h3 {
    margin-bottom: 0;
    padding: 20px 0 0;
    font-size: 25px;
    color: var(--primary-color);
    transition: all 0.35s ease-in-out;
    font-family: var(--primary-font);
}
@media (max-width: 960px) {
    .gallery-detail-info h3 {
        font-size: 22px;
    }
}
@media (max-width: 1367px) {
    .gallery-detail-info h3 {
        font-size: 20px;
    }
  }
.gallery-detail-card:hover .gallery-detail-info h3 {
    color: var(--secondary-color);
}

.gallery-detail-img {
    border-radius: 8px;
    overflow: hidden;
}
.gallery-detail-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 36px;
}
@media (max-width: 1280px) {
    .gallery-detail-section h2 {
        font-size: 28px;
    }
}
@media (max-width: 1140px) {
    .gallery-detail-section h2 {
        font-size: 24px;
        line-height: 32px;
    }
}
.gallery-detail-section p {
    color: #808080;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 15px;
}
@media (max-width: 1540px) {
    .gallery-detail-section p {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .gallery-detail-section p {
        font-size: 17px;
    }
}

.work-section-style2,
.testimonial-bg-variation1 {
    background: #fbfaf8;
}

.work-section-style2 .work-card img {
    height: 90px;
    margin-bottom: 20px;
}

.transplant-with-bg {
    background: no-repeat;
}
.transplant-with-bg::before {
    background: none;
}
.transplant-with-bg .transplant-top-panel h2 {
    color: #242424;
}
.transplant-with-bg .transplant-top-panel p {
    color: #808080;
}
.transplant-slider .slick-arrow {
    background: var(--primary-color);
}
.transplant-slider .slick-arrow.slick-prev:after,
.transplant-slider .slick-arrow.slick-next:after {
    border-color: var(--secondary-color);
}
.transplant-slider .transplant-card {
    background: #f7f7f7;
}

.founder-section {
    padding-top: 80px;
}
@media (max-width: 1540px) {
    .founder-section {
        padding-top: 50px;
    }
}
@media (max-width: 991px) {
    .founder-section {
        padding-bottom: 50px;
    }
}
@media (max-width: 575px) {
    .founder-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
.founder-content .subheading {
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid;
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 14px;
}
@media (max-width: 1280px) {
    .founder-content .primary-button {
        padding: 15px 24px 12px;
    }
}
.founder-content h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media (max-width: 1280px) {
    .founder-content h2 {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 767px) {
    .founder-content h2 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .founder-content h2 {
        font-size: 26px;
    }
}
.founder-content p {
    color: #808080;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}
@media (max-width: 1540px) {
    .founder-content p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .founder-content p {
        font-size: 17px;
    }
}


.founder-content {
    padding-left: 60px;
}
@media (max-width: 1450px) {
    .founder-content {
        padding-left: 0;
    }
}
.gallery-section {
    padding: 80px 0;
    overflow: hidden;
}
@media (max-width: 1540px) {
    .gallery-section {
        padding: 50px 0;
    }
}
@media (max-width: 575px) {
    .gallery-section {
        padding: 40px 0;
    }
}
.gallery-section h2 {
    font-family: var(--primary-font);
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width: 1280px) {
    .gallery-section h2 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (max-width: 960px) {
    .gallery-section h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .gallery-section h2 {
        font-size: 30px;
    }
}
@media (max-width: 575px) {
    .gallery-section h2 {
        font-size: 26px;
        line-height: 30px;
    }
}


.gallery-col {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}
.about-cara {
    padding-top: 80px;
}
@media (max-width: 1540px) {
    .about-cara {
        padding-top: 50px;
    }
}
@media (max-width: 575px) {
    .about-cara {
        padding-top: 40px;
    }
}


.about-cara p {
    color: #808080;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 0;
}
@media (max-width: 1540px) {
    .about-cara p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .about-cara p {
        font-size: 17px;
    }
}
