html, body {
    /* height: 100%; */
    overflow-x: hidden;
}
html {
    font-family: 'HeadingNow-74Regular',sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 14px;
    color: #212027;
    font-weight:400;
    background: #fff;
    font-family: 'HeadingNow-74Regular',sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 150vh;
    padding-bottom: 375px;
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}
@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.header {
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    position: absolute;
    left: 0;
    top: 0;
}
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}
.navbar .navbar__left {
    display: flex;
    align-items: center;
    /* flex: 0 0 60%; */
    /* padding-top: 30px; */
}
@media (max-width: 992px) {
    .navbar .navbar__left {
        flex: 0 0 auto;
        /* order: 3; */
        padding-top: 40px;
    }
}
.navbar .navbar__center {
    display: flex;
}
@media (max-width: 992px) {
    .navbar .navbar__center {
        flex: 0 0 30%;
        /* order: 3; */
        align-items: center;
        justify-content: center;
    }

}
.navbar .navbar__right {
    display: flex;
    /* flex: 0 0 20%; */
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}
@media (max-width: 992px) {
    .navbar .navbar__right {
        flex: 0 0 auto;
        align-items: center;
        column-gap: 10px;
    }

.search-box button {
    right: -15px!important;
}
}

.brand {
    display: flex;
    align-items: center;
    order: 1;
}
.brand svg {
    width: 60px;
    height: 60px;
}

@media (max-width: 992px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        /* max-width: 85%; */
        height: 100%;
        z-index: 100;
        overflow: hidden;
        background-color: #fff;
        transform: translateX(100vw);
        transition: all 0.4s ease-in-out;
    }
    .menu.is-active {
        transform: translate(calc(100vw - 300px));
    }
}
.menu .menu__header {
    display: none;
    box-shadow: var(--shadow-medium);
}
@media (max-width: 992px) {
    .menu .menu__header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
    }
    .menu .menu__header.is-active {
        visibility: visible;
        background-color: #fff;
    }
    .menu .menu__header.is-active > .menu__arrow {
        display: flex;
    }
}
@media (max-width: 992px) {
    .menu .menu__header .menu__arrow {
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 3rem;
    }
    .menu .menu__header .menu__arrow:hover i {
        color: var(--color);
    }
    .menu .menu__header .menu__arrow > i {
        font-size: 1.5rem;
        color: #000;
        transition: all 0.25s ease;
    }
}
@media (max-width: 992px) {
    .menu .menu__header .menu__title {
        cursor: pointer;
        font-weight: 500;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease;
    }
    .menu .menu__header .menu__title:hover {
        color: var(--color);
    }

}
@media (max-width: 992px) {
    .menu .menu__inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
}
.menu .menu__inner .menu__item {
    position: static;
    display: inline-block;
    padding-right: 20px;
    padding: 0px 20px 0px 0;
}

.menu .menu__inner .menu__item.active a,.menu .menu__inner .menu__item:hover a {
    color: #a48a7b;
}

.menu .menu__inner .menu__item .menu__link:after {
    content: '';
    width: 25px;
    height: 2px;
    position: absolute;
    bottom: -10px;
    left: 0;
    background: transparent;
    transition: all 0.25s ease;
}
.menu .menu__inner .menu__item.active a:after,.menu .menu__inner .menu__item:hover a:after {
    background:#a48a7b;
}
.menu .menu__inner .menu__item:last-child {
    padding-right: 0;
}
.menu .menu__inner .menu__item:hover > .menu__link {
    color: #a48a7b;
}

@media (max-width: 992px) {
    .menu .menu__inner .menu__item {
        display: block;
        padding: 0;
    }
}
@media (min-width: 992px) {
    .menu .menu__inner .menu__item:hover > .menu__link i {
        transform: rotate(-90deg);
    }
}
@media (min-width: 992px) {
    .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
        opacity: 1;
        visibility: visible;
        top: 95%;
    }
}
.menu .menu__inner .menu__item .menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    /* font-weight: 300; */
    color: #212026;
    text-transform: capitalize;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
}
@media (max-width: 992px) {
    .menu .menu__inner .menu__item .menu__link {
        justify-content: space-between;
        padding: 20px 0;
    }

.menu .menu__inner .menu__item .menu__link:after {
    bottom: 0;
}
}
.menu .menu__inner .menu__item .menu__link > i {
    margin-left: 5px;
    font-size: 1.35rem;
    transform: rotate(90deg);
    transition: 0.35s;
}
@media (max-width: 992px) {
    .menu .menu__inner .menu__item .menu__link > i {
        margin-left: 10px;
        transform: rotate(0deg);
    }
}


.submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-radius: 0.25rem;
    border-top: 2px solid var(--color);
    background-color: #fff;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 100px 15px 0 15px;
        border-radius: 0;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
    }
    .submenu.is-active {
        display: block;
    }
}
@media (min-width: 992px) {
    .submenu {
        -webkit-animation: none !important;
        animation: none !important;
    }
}
@media (min-width: 992px) {
    .submenu.megamenu__normal {
        left: 65%;
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        display: flex;
        flex-wrap: wrap;
        max-width: 95%;
        height: auto;
        margin: 0 auto;
    }
}
@media (min-width: 992px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        max-width: 992px;
    }
}
.submenu.megamenu__image .submenu__inner a {
    display: flex;
    flex-flow: column;
    align-items: center;
}
@media (max-width: 992px) {
    .submenu.megamenu__image .submenu__inner a {
        flex-flow: row;
        align-items: center;
        padding-bottom: 20px;
    }
}
.submenu.megamenu__image .submenu__inner a img {
    display: block;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .submenu.megamenu__image .submenu__inner a img {
        width: 30%;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
    }
}
.submenu .submenu__inner {
    width: 25%;
    padding: 0 15px;
}
@media (max-width: 992px) {
    .submenu .submenu__inner {
        width: 100%;
        padding: 0;
    }
}
.submenu .submenu__inner .submenu__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .submenu .submenu__list {
        margin-bottom: 20px;
    }
}
.submenu .submenu__list li {
    display: block;
    line-height: 1;
    margin: 0 auto;
}
.submenu .submenu__list li a {
    display: inline-block;
    padding: 10px 0;
    line-height: 1.4;
    text-transform: capitalize;
    color: #000;
    transition: all 0.25s ease-in-out;
}
.submenu .submenu__list li a:hover {
    color: var(--color);
}
@media (max-width: 992px) {
    .submenu .submenu__list li a {
        display: block;
    }
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}
@media (max-width: 992px) {
    .overlay {
        cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
        pointer-events: visible;
    }
    .overlay.is-active {
        opacity: 1;
        visibility: visible;
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 20px;
    margin-left: 5px;
    background: transparent;
}
@media (max-width: 992px) {
    .burger {
        opacity: 1;
        visibility: visible;
    }
}
.burger .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: #000;
}
.darkmode .burger .burger-line {
    background: #fff;
}
.burger .burger-line:nth-child(1) {
    top: 0px;
}
.burger .burger-line:nth-child(2) {
    top: 8px;
    /* width: 70%; */
}
.burger .burger-line:nth-child(3) {
    top: 16px;
}

.navbar-brand {
    margin: 0;
}

.btn-theme-one {
    background: #C99D66;
    border-radius: 22px;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    border: 2px solid #C99D66;
    font-weight: 500;
}

.btn-theme-one:hover {
    background: transparent;
    border: 2px solid #C99D66;
    color: #212026;
}

.header-search-btn {
    color: #212026;
}

.header-home-btn {
    color: #212026;
}

.bigTitle {
    line-height: normal;
    font-size: 31px;
    letter-spacing: -3px;
    /* font-weight: 600; */
    font-family: 'HeadingNow-75Medium';
    color: #a48a7b;
}
@media (min-width: 425px) {
    .bigTitle {
        font-size: 35px;
        line-height: 10px;
    }
}
@media (min-width: 1024px) {
    .bigTitle {
        font-size: 82px;
        line-height: 44px;
        letter-spacing: -5px;
    }
}
@media (min-width: 992px) and (max-width: 1230px) {
    .bigTitle {
        font-size: 45px;
        line-height: 14px;
    }
}
@media (min-width: 1231px) and (max-width: 1500px) {
    .bigTitle {
        font-size: 55px;
        line-height: 14px;
    }
}
@media (min-width: 1501px) and (max-width: 1860px) {
    .bigTitle {
        font-size: 65px;
        line-height: 24px;
    }
}
.bigTitle .orangeIcon {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background-color: #f7970e;
    display: inline-block;
    margin-left: 5px;
}
@media (min-width: 768px) {
    .bigTitle .orangeIcon {
        width: 13px;
        height: 13px;
    }
}
@media (min-width: 1440px) {
    .bigTitle .orangeIcon {
        width: 16px;
        height: 16px;
    }
}

.arrow-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    font-size: 12px;
}
.arrow-button svg {
    width: 33px;
    margin-left: 10px;
}
.arrow-button svg circle {
    transition: fill 0.75s ease;
    fill: transparent;
}
@media (min-width: 425px) {
    .arrow-button {
        font-size: 16px;
    }
    .arrow-button svg {
        width: 45px;
    }
}
@media (min-width: 1024px) {
    .arrow-button {
        font-size: 20px;
    }
    .arrow-button svg {
        width: 62px;
    }
    .arrow-button:hover {
        /* padding-left: 20px; */
    }
    .arrow-button:hover svg circle {
        fill: #8c97d0;
    }
}
@media (min-width: 1440px) {
    .arrow-button {
        font-size: 15px;
    }
    .arrow-button svg {
        width: 60px;
    }
}
@media (min-width: 1920px) {
    .arrow-button {
        font-size: 18px;
    }
    .arrow-button svg {
        width: 70px;
    }
}

.home-showcase {
    position: relative;
    height: 100vh;
}
.home-showcase .home-showcaseSlider {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    border-bottom: 1px solid rgb(112 112 112 / 20%);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    /* padding-top: 100px; */
    width: 100%;
    height: 100vh;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* display: flex; */
    /* align-items: flex-end; */
    /* flex-wrap: wrap; */
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    /* max-width: 100%; */
    margin: 0 0 5rem;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    font-family: 'HeadingNow-75Medium';
    /* transform: translate(-140%, 0); */
    transition: opacity 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
    color: #a48a7b;
    margin: 0 0 2.5rem;
    opacity: 0;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .subTitle {
    font-family: 'HeadingNow-75Medium';
    font-size: 37px;
    line-height: normal;
    color: #A27867;
    line-height: 33px;
    margin-bottom: 20px;
    transition: opacity 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
    opacity: 0;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .slideText {
    font-family: 'HeadingNow-73Book';
    font-size: 15px;
    color: #4D4D4D;
    line-height: 25px;
    transition: opacity 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
    opacity: 0;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
    /* transform: translate(-160%, 0); */
    transition: opacity 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
    width: fit-content;
    opacity: 0;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
    color: #A27867;
}

.btn-theme-two {
    background: #E6E6E6;
    border-radius: 22px;
    color: #A27867;
    padding: 10px 30px;
    font-size: 14px;
    border: 2px solid #A27867;
    /* font-weight: 500; */
    transition: all .4s;
    letter-spacing: 1px;
}

.btn-theme-two:hover {
    background: #A27867;
    color: #fff!important;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
    fill: #fff;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
    stroke: #fff;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
    stroke: #8c97d0;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
    width: 100%;
    height: 100%;
    background-color: #10112b;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.8s ease-in 0.5s;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .subTitle,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .slideText,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button {
    transform: translate(0, 0);
    opacity: 1;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
    opacity: 0;
}
.home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    top: 0;
    width: 40px;
    padding: 0;
    left: 20px;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    justify-content: center;
    flex-direction: column;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    color: #a48a7b;
    width: 18px;
    border-radius: 50px;
    height: 18px;
    /* background-color: #fff; */
    opacity: .3;
    transition: width 0.8s ease-in-out, 0.4s ease-in-out;
    margin: 0 4px !important;
    /* border: 1px solid #707070; */
    background: transparent;
    border: 0;
    margin: 20px 10px!important;
    position: relative;
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 0;
    background: #a48a7b;
    height: 2px;
    transition: all .3s;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    color: #a48a7b;
    opacity: 1;
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active:after {
    width: 25px;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
    display: flex;
    flex-direction: row;
    padding: 0;
    padding-right: 0;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    position: relative;
    display: flex;
    /* align-items: flex-end; */
    font-weight: 900;
    margin: 0;
    width: 50px;
    height: auto;
    padding: 5px;
    border-top: 2px solid #626262;
    border-bottom: 2px solid #626262;
    transition: all .4s;
    left: 0;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev:hover, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next:hover {
    color: #fff;
    background: #626262;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next span {
    color: #636363;
    font-weight: 300;
    margin-left: -20px;
    letter-spacing: 5px;
    font-size: 13px;
    transition: all .4s;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next:hover span {
    margin-left: 6px;
    color: #fff;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    border-right: 2px solid #626262;
}

.swiper-button-next.showcaseSlider-next:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 8px;
    width: 2px;
    background: #626262;
}

.swiper-button-next.showcaseSlider-next:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 8px;
    width: 2px;
    background: #626262;
}
.swiper-button-prev.showcaseSlider-prev:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 8px;
    width: 2px;
    background: #626262;
}

.swiper-button-prev.showcaseSlider-prev:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 8px;
    width: 2px;
    background: #626262;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev {
    border-left: 2px solid #626262;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev span {
    /* background: #eaeaea; */
    color: #636363;
    font-weight: 300;
    margin-right: -20px;
    letter-spacing: 5px;
    font-size: 13px;
    transition: all .4s;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev:hover span {
    color: #fff;
    margin-right: 0;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
    opacity: 1;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
    color: #8f9397;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 4vw;

}
.home-showcase .home-showcaseSlider #macaron {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    margin: 5%;
    width: 30%;
}
.home-showcase .home-showcaseSlider #macaron #text-circle {
    animation: rotate-360 12s linear 0s infinite reverse forwards;
    transform-origin: center;
}
.home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 0%);
    color: #fff !important;
    text-decoration: none;
    font-size: 3.5vw;
    height: 21vw;
    font-family: "CabinetGrotesk-light", sans-serif;
}
.home-showcase .scrollSliderButton .line {
    height: 15vw;
    width: 1px;
    background: #8c97d0;
    margin-top: 5px;
    animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
}
@media (min-width: 1024px) {

    .home-showcase .home-showcaseSlider {
        /* display: block; */
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
        /* height: clamp(45rem, 75vh, 5000px); */
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
        align-items: center;
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
        /* max-width: 75%; */
        margin: 0;
        /* padding-top: 100px; */
    }
    .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
        margin: 0 0 1.25rem;
    }


    .home-showcase .home-showcaseSlider .showcaseSlider-nav {
        position: absolute;
        bottom: 50%;
        right: calc(1.5rem * .5);
        z-index: 1;
        width: calc(100% - ((1.5rem * .5) * 2));
        justify-content: space-between;
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
        /* margin: 0 0.6vw; */
    }
    .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after, .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
        font-size: 1vw;
    }
    .home-showcase .home-showcaseSlider #macaron {
        width: fit-content;
        width: 8.4vw;
    }
    .home-showcase .scrollSliderButton {
        position: absolute;
        left: 50%;
        bottom: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translate(-50%, 40%);
        color: #fff !important;
        text-decoration: none;
        font-size: 0.9vw;
        height: 4.8vw;
        font-family: "CabinetGrotesk-light", sans-serif;
    }
    .home-showcase .scrollSliderButton .line {
        height: 4.8vw;
        width: 2px;
        background: #8c97d0;
        margin-top: 5px;
        animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
    }
}

.showcase-bg {
    background: #F5F5F5;
    height: 88vh;
    position: absolute;
    left: 1vw;
    top: 1vw;
    width: 98vw;
    /* z-index: -1; */
    overflow: hidden;
    border-radius: 26px;
}

.showcase-contact {
    position: absolute;
    left: calc((1.5rem * .5));
    bottom: 12%;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    z-index: 1;
    width: calc(100% - ((1.5rem * .5)*2));
}

.slider-container {
    width: 80%;
    margin: 0 auto;
}

.slider-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    padding: 0 50px;
    z-index: 0;
}

.home-showcase-whatsapp {
    position: fixed;
    right: calc(1.5rem  * .5);
    background: #1D262D;
    border-radius: 22px;
    color: #30BF39;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    z-index: 99;
    font-size: 60px;
    text-decoration: none;
    box-shadow: 20px 10px 15px -25px #1D262D;
}

.section-menu-item {
    text-decoration: none;
    color: #8F8F8F;
    padding: 10px 20px;
    font-weight: 500;
}

.section-menu-item.active {
    color: #B20F0F;
}

.text-purple {
    color: #B20F0F;
}

.text-light-gray {
    color: #5D5D5D;
}

.btn-theme-three {
    background: #ffffff;
    border-radius: 22px;
    color: #000000;
    padding: 10px 30px;
    font-size: 14px;
    border: 2px solid #000000;
    font-weight: 500;
    transition: all .4s;
}

.btn-theme-four {
    background: #B20F0F;
    border-radius: 22px;
    color: #fff;
    padding: 10px 30px;
    font-size: 14px;
    border: 2px solid #B20F0F;
    font-weight: 500;
    transition: all .4s;
}

.btn-theme-four:hover {
    background: #fff;
    color: #B20F0F;
    border-color: #B20F0F;
}

.btn-theme-three:hover {
    color: #fff;
    background: #000000;
}

.about-content {
    color: #8F8F8F;
}

.about-us:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #F2F2F2;
    height: 90%;
    width: 100%;
    z-index: -1;
}

.about-title {
    /* margin-top: 10%; */
    font-size: 50px;
}

.about-title h1 {
    font-size: 50px;
    margin: 0;
}

.about-image-margin {
    margin-top: -10%;
}

.no-after:after {
    display: none;
}

footer {
    /* background: #222222; */
    padding: 50px 0 0;
    color: #212026;
    font-family: 'HeadingNow-72Light';
    border-top: 1px solid rgb(112 112 112 / 20%);
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-social a {
    color: #8F8F8F;
    text-decoration: none;
}

.footer-menu a {
    color: #212026;
    text-decoration: none;
    font-size: 13px;
}

.footer-text {
}

.page-header {
    padding-top: 175px;
}

.page-title {
    font-size: 50px;
    font-weight: 600;
    color: #C99D66;
    position: relative;
    margin-bottom: 30px;
}

.page-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #C99D66;
}

.page-about .content {
    color: #5D5D5D;
}

.sub-title {
    color: #212027;
}

.google-map {
    border: 5px solid #fff;
}

.google-map iframe {
    width: 100%;
}

.contact-title {
    display: inline-block;
    color: #A27867;
    font-family: 'HeadingNow-76Bold',sans-serif;
    font-size: 14px;
}

.contact-text {
    display: inline-block;
    font-family: 'HeadingNow-72Light',sans-serif;
    font-size: 14px;
    color: #717171;
}

.contact-text b,.contact-text strong {font-family: 'HeadingNow-75Medium',sans-serif;}

.contact-text a {
    color: #717171;
    text-decoration: none;
}

.contact-item {
    /* margin-bottom: 20px; */
    color: #777474;
}

.form-control {border-radius: 28px;border-color: transparent;font-weight: 300;font-size: 14px;padding: 15px 20px;box-shadow: 0 10px 40px rgb(164 138 123 / 16%);font-family: 'HeadingNow-73Book',sans-serif;}

.btn-theme-five {
    background: #E6E6E6;
    border-radius: 22px;
    color: #A27867;
    padding: 10px 30px;
    font-size: 14px;
    border: 2px solid #A27867;
    font-weight: 500;
}

.btn-theme-five:hover {
    color: #ffffff;
    background: #A27867;
}

.category-menu {
    text-decoration: none;
    color: #7E7E7E;
    font-size: 16px;
    font-weight: 500;
    transition: all .4s;
}

.category-menu.active,.category-menu:hover {
    color: #000;
}

.rehber-search-input {
    background: transparent;
    outline: none;
    border: 0;
    color: #7E7E7E;
    font-weight: 500;
    font-size: 16px;
}

.rehber-search-button {
    color: #7E7E7E;
    border: transparent;
    background: transparent;
    font-size: 18px;
}

.breadcrumb-bg {
    background: #DADADA;
}

.breadcrumb {
    color: #727272;
    font-weight: 500;
}

.breadcrumb .seperator {
    margin: 0 3px;
}

.breadcrumb a {
    color: #727272;
    font-weight: 500;
    text-decoration: none;
}

.wp-support-head {
    background: #1D262D;
    border-radius: 14px;
    color: #fff;
    padding: 15px 20px;
}

.wp-support-title {
    font-weight: 600;
    margin: 0;
}

.wp-support-content {
    background: #E4DDD6;
    border-radius: 19px;
    padding: 40px 20px 20px;
    margin-top: -20px;
    position: relative;
    z-index: -1;
}

.wp-support-text {
    background: #E1F7CB;
    padding: 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #212027;
    text-decoration: none;
}

.wp-support {
    box-shadow: 0 12px 32px rgb(204 214 203 / 10%);
    border-radius: 19px;
    position: absolute;
    z-index: 2;
}

.detail-contents {
    padding: 20px;
    background: #fff;
    width: 100%;
    display: inline-block;
    color: #5D5D5D;
}

.detail-contents .title {
    color: #5D5D5D;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #707070;
    padding-bottom: 15px;
}

.health-guide-entry {
    color: #707070;
    font-family: 'HeadingNow-73Book',sans-serif;
}

.health-guide-author {
    color: #5D5D5D;
    font-weight: 300;
    border-top: 1px solid rgb(112 112 112 / 20%);
    display: inline-block;
    padding-top: 10px;
}

.photo-gallery-icon {
    display: flex;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    background: rgb(0 0 0 / 50%);
    justify-content: center;
    align-items: center;
    transition: all .4s;
    font-size: 30px;
    z-index: 1;
    left: 0;
    top: 0;
    pointer-events: none;
}

.photo-gallery-item:hover .photo-gallery-icon {
    opacity: 1;
    display: flex;
}

.photo-gallery-item {
    display: inline-block;
}
.search-box {
    margin: 0 10px;
    display: inline-block;
    position: relative;
    height: 45px;
    /* float: right; */
    padding: 0;
}

.search-box input[type="text"] {
    height: 45px;
    display: inline-block;
    border: none;
    outline: none;
    padding: 3px;
    padding-right: 60px;
    width: 0px;
    position: absolute;
    top: 0;
    right: -25px;
    background: none;
    z-index: 3;
    transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
    cursor: pointer;
}

.search-box input[type="text"]:focus:hover {
    border-bottom: 1px solid #BBB;
}

.search-box input[type="text"]:focus {
    width: 300px;
    z-index: 1;
    border-bottom: 1px solid #BBB;
    cursor: text;
    background: #e6e6e6;
}
.search-box button {
    height: 45px;
    /* width: 50px; */
    display: inline-block;
    /* float: right; */
    border: none;
    position: absolute;
    top: 0;
    right: -25px;
    z-index: 2;
    cursor: pointer;
    /* opacity: 0.4; */
    cursor: pointer;
    transition: opacity .4s ease;
}

.search-box button:hover {
    opacity: 0.8;
}

.footer-menu {
    font-family: 'HeadingNow-74Regular',sans-serif;
    justify-content: center;
    color: #212026;
}
@media screen and (max-width: 1199px) and (min-width: 993px){
    .menu__inner{
        padding: 0;
    }
    .menu .menu__inner .menu__item{
        padding-right: 5px;
    }
    .menu .menu__inner .menu__item .menu__link{
        font-size: 14px;
    }

.appointment-btn {
    font-size: 14px;
}
}

.new-blog {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: uppercase;
    background: #a48a7b;
    color: #fff;
    border-radius: 4px;
    z-index: 1;
}

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

.blog-item-image {
    /* transition: all .4s; */
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgb(164 138 123 / 16%);
}

.blog-item-image img {
    transition: all .4s;
}

.blog-item-content h5:hover {
    color: #a48a7b!important;
}

.blog-item-content h5 {
    transition: all .4s;
}

.contect-text > * {
    font-weight: 500!important;
}

.contect-text:before {
    content: '-';
    margin-right: 5px;
}

.contect-text.active,.contect-text:hover {
    color: #C99D66;
    padding-left: 10px;
}

.contect-text {
    cursor: pointer;
    transition: all .4s;
}

.subTitle {
    font-family: 'HeadingNow-75Medium';
    font-size: 37px;
    line-height: normal;
    color: #A27867;
    line-height: 45px;
}

.blog-item-title {
    color: #A27867;
    font-size: 22px;
    font-family: 'HeadingNow-75Medium',sans-serif;
}

.treatment-item-title {
    font-family: 'HeadingNow-76Bold',sans-serif;
    font-size: 16px;
}

.blog-item-text {
    color: #707070;
    font-size: 14px;
    font-family: 'HeadingNow-73Book',sans-serif;
}

.rehber-pagination .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    border: 1px solid #707070;
    background: #fff;
    opacity: 1;
}

.rehber-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #A27867;
}

.rehber-pagination {
    bottom: -10px!important;
    top: inherit;
}

.footer-title {
    color: #a48a7b;
    font-size: 24px;
    font-family: 'HeadingNow-75Medium',sans-serif;
    margin-bottom: 10px;
}

.footer-copyright {
    color: #9B9B9B;
    text-align: center;
    font-size: 13px;
}

.footer-bottom {border-top: 1px solid rgb(112 112 112 / 20%);margin-top: 15px;}

.page-content {
    padding-top: 180px;
    padding-bottom: 80px;
}

.rehber-detail-title {
    color: #A27867;
    font-size: 33px;
    font-family: 'HeadingNow-75Medium',sans-serif;
}

.detail-image img {
    border-radius: 30px;
    box-shadow: 0 10px 40px rgb(164 138 123 / 16%);
}

.bottom-bg {
    position: absolute;
    width: 100%;
    height: 800px;
    background: url('../images/bottom-bg.png');
    bottom: 0;
    right: -10%;
    z-index: -1;
    background-repeat: no-repeat;
}

.top-bg {
    position: absolute;
    width: 1579px;
    height: 1961px;
    background: url(../images/top-bg.png);
    top: -60%;
    left: -40%;
    z-index: -1;
    background-repeat: no-repeat;
}

.contact-title-medium {
    display: inline-block;
    color: #A27867;
    font-family: 'HeadingNow-75Medium', sans-serif;
    font-size: 14px;
}

.category-item {
    transition: all .4s;
    background: #fff;
    text-align: center;
    border-radius: 39px;
    box-shadow: 0 10px 40px rgb(164 138 123 / 16%);
    padding: 30px 20px;
}

.category-item:hover {
    background: #a48a7b;
}

.category-item:hover .category-item-title {
    color: #fff;
}

.category-item:hover .category-item-image img {
    filter: invert(100);
}

.category-item-title {
    font-family: 'HeadingNow-72Light',sans-serif;
    color: #777777;
    font-size: 20px;
}

.scroll {
    position: fixed;
    bottom: 100px;
    left: 40px;
    z-index: 2;
}

.scroll.right {
    right: 50px;
    left: inherit;
}