@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    overflow-x: hidden;
}


/* 
.container {
    max-width: 1315px !important;
} */


/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #D7A790;
    --primary-color: #93292d;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

h2 {
    font-family: 'Playfair Display', serif;
}

h3 {
    font-family: 'Anton', sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--theme-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--theme-color);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    padding: 1.084em 1.96em;
    border-radius: 50px;
    line-height: normal;
    border: 1px solid #FFFFFF;
    align-items: center;
    position: relative;
    user-select: none;
    padding-right: 4.5rem;
}

.themeBtn.brdrBtn {
    border-color: var(--theme-color);
    background: transparent;
}

.themeBtn.brdrBtn span {
    background: var(--theme-color);
}

.themeBtn span {
    transition: 0.5s;
}

.themeBtn:hover span {
    animation: arrow 0.5s infinite alternate;
}

@keyframes arrow {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(-3px);
    }
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* navigation css */

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}


/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */

.an-navbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0rem;
    margin: auto;
    z-index: 11;
    padding: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 50%, transparent);
}


/* navigation css */


/* slider css */

.main-slider {
    min-height: 800px;
    height: 100vh;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
    padding: 0;
}

.main-slider video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    /* display: flex; */
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContent {
    text-align: center;
}

.homeSlider.swiper-container .swiper-button-next {
    width: auto;
    height: auto;
    background: none;
    right: 33px;
    font-weight: 800;
    color: #fff;
    transform: rotate(90deg);
    margin-top: 20px;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-button-next * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.homeSlider.swiper-container .swiper-button-next span {
    position: relative;
    display: inline-block;
}

.homeSlider.swiper-container .swiper-button-next span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
}

.homeSlider.swiper-container .swiper-button-next span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.homeSlider.swiper-container .swiper-button-next:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    color: var(--theme-color);
}

.homeSlider.swiper-container .swiper-button-prev {
    width: auto;
    height: auto;
    background: none;
    left: auto;
    right: 33px;
    font-weight: 800;
    color: #fff;
    transform: rotate(90deg);
    margin-top: -40px;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-button-prev * {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.homeSlider.swiper-container .swiper-button-prev span {
    position: relative;
    display: inline-block;
}

.homeSlider.swiper-container .swiper-button-prev span:before {
    position: absolute;
    top: 100%;
    content: attr(data-hover);
}

.homeSlider.swiper-container .swiper-button-prev span:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.homeSlider.swiper-container .swiper-button-prev:hover span {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    color: var(--theme-color);
}

.homeSlider.swiper-container .swiper-pagination-fraction {
    width: auto;
    position: absolute;
    left: auto;
    right: 5rem;
    bottom: 0;
    color: #fff;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0;
    justify-content: center;
    gap: 6rem;
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    font-size: 4.375rem;
    font-weight: 400;
    color: var(--color);
}

.homeSlider.swiper-container .swiper-pagination-fraction .swiper-pagination-total {
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 50%;
    color: #fff;
}

.mainSlider h2 {
    margin: 0 0 1.5rem;
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-rtl .swiper-button-prev:after {
    display: none;
}

.homeSlider .swiper-button-prev:after,
.homeSlider .swiper-rtl .swiper-button-next:after {
    display: none;
}

.topHeading {
    position: absolute;
    top: 14rem;
    left: 0;
    font-size: 7.1875rem;
    color: var(--white);
    margin: 0;
}

.bottomHeading {
    position: absolute;
    top: 34rem;
    right: 0;
    font-size: 7.1875rem;
    color: var(--white);
    margin: 0;
}


/* slider css */

.brandingSec {
    position: relative;
}

.brandingSec:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: var(--theme-color);
    width: 100%;
    height: 1026px;
}

.brandImg figure {
    display: flex;
    align-items: center;
    margin-top: -4rem;
}

.brandImg figure img {
    border: 15px solid var(--white);
    width: 100%;
}

.title {
    position: relative;
    text-align: center;
}

.subHeading {
    font-size: 1.875rem;
    color: var(--white);
}

.heading {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: 400;
}

.title h4 {
    margin: 0 0 12px;
}

.title h2 {
    margin: 0 0 1.5rem;
    background-color: #d7a790;
    position: relative;
}

.title p {
    font-size: 1.125rem;
    color: var(--white);
    width: 89%;
    margin: auto;
}

.title.borderLine {
    position: relative;
    padding-bottom: 8rem;
}

.title.borderLine:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    border: 1px solid rgb(255 255 255 / 53%);
    width: 93%;
    height: 100%;
    margin: auto;
    border-bottom: transparent;
}

.brandImg .brdrSecnd {
    margin-left: -10rem;
    transform: rotate(-20deg);
    margin-right: -7rem;
    margin-bottom: 6.5rem;
    justify-content: flex-end;
}

.brandImg .brdrSecnd img {
    border: 10px solid var(--white);
}

.livingContent {
    background: var(--theme-color);
    margin-left: -4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.livingImg {
    position: relative;
    z-index: 11;
    transform: rotate(-2deg);
}

.livingImg img {
    width: 100%;
    border: 15px solid var(--white);
}

.livingWidth {
    padding: 4.5rem 3rem 3rem 7rem;
}

.livingWidth .heading {
    margin-bottom: 1.8rem;
}

.livingWidth p {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.8;
    margin: 0 0 2rem;
}

.themeBtn span {
    width: 54px;
    height: 54px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    right: 6px;
}

.livingSec {
    padding: 3rem 0;
}

.colectionSec {
    background: rgb(215 167 144 / 10%);
}

.colectionSec .subHeading {
    color: var(--theme-color);
}

.colectionSec .title.borderLine .heading {
    background-color: rgb(251 246 244);
    color: var(--black);
    width: 50%;
    margin: auto;
}

.colectionSec .title.borderLine:before {
    border-color: rgb(0 0 0 / 20%);
}

.colectionSec .title.borderLine {
    padding-bottom: 0rem;
    margin-bottom: 5rem;
}

.colectionImg.leftImg {
    margin-left: -16rem;
}

.colectionImg.rightImg {
    margin-right: -16rem;
}

.colectionImg.leftImg img {
    border: 15px solid var(--white);
}

.collcetionContent .heading {
    color: var(--black);
    margin: 0;
}

.collcetionContent h4 {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 2rem 0;
    line-height: 1.5;
}

.collcetionContent ul li {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.collcetionContent ul li+li {
    margin: 10px 0 0;
}

.collcetionContent ul {
    margin: 0 0 2rem;
}

.collcetionContent {
    padding-left: 1rem;
}

.collcetionContent p {
    font-size: 1.375rem;
    color: var(--black);
    line-height: 1.5;
    margin: 15px 0 25px;
}

.colectionSec .row+.row {
    margin-top: 3rem;
}

.uplevelSec {}

.uplevelSec .title h2 {
    background: transparent;
    color: var(--black);
}

.uplevelSec .title.borderLine:before {
    border-color: rgb(0 0 0 / 20%);
    top: 94px;
    height: 60%;
}

.uplevelSec .title h4 {
    color: var(--black);
    width: 85%;
    margin: auto;
}

.uplevelSec .title.borderLine {
    padding-bottom: 0;
    margin-bottom: 6rem;
}

.uplevelSec .title h2 span {
    width: 64%;
    margin: auto;
    background: #fff;
    display: block;
}

.levelBox {
    text-align: center;
}

.levelBox figure {
    margin: 0 0 1.7rem;
}

.levelBox h2 {
    font-size: 1.875rem;
    margin: 0;
}

.coachSec {
    background: url(../images/coachbg.webp) no-repeat top center/ cover;
    height: 1080px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0;
}

.coachSec .livingWidth {
    background: var(--theme-color);
    text-align: center;
    padding: 3rem 4rem;
    margin-bottom: -3rem;
}

.coachSec .livingWidth h4 {
    font-size: 1.125rem;
    color: var(--white);
}

.uplevelSec.deserveSec .title.borderLine:before {
    top: 68px;
    height: 100%;
    border-color: rgb(0 0 0 / 53%);
}

.uplevelSec.deserveSec .title p {
    color: var(--black);
    margin: 4rem auto 2rem;
    width: 75%;
}

.uplevelSec.deserveSec .title h2 {
    background: #fff;
    width: 45%;
    margin: 0 auto 1.5rem;
}

.uplevelSec.deserveSec .title.borderLine {
    margin-bottom: 2rem;
    padding-top: 1.25rem;
}

.gallerySec {
    background: #FBF6F4;
}

.gallerySec .heading {
    color: var(--black);
    text-align: center;
    margin: 0 0 3rem;
    letter-spacing: 13px;
}

.galleryBox {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-bottom: 6px;
}

.galleryBox h2 {
    font-size: 6.25rem;
    margin: 0;
    font-weight: 400;
    writing-mode: tb-rl;
    transform: scale(-1);
}

.galleryBox div figure {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.gallery2Box {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.gallery2Box img {
    width: 100%;
}

.gallery2Box div {
    /* flex: 0 0 716px; */
}

.gallery2Box .setImg {
    /* height: 908px; */
    object-fit: cover;
    object-position: top;
    /* flex-shrink: 0; */
    /* width: 53%; */
    /* margin-left: -6rem; */
}

.gallery2Box .d-flex {
    align-items: center;
    justify-content: space-between;
}

.gallery2Box .d-flex a {
    font-size: 3.125rem;
    color: var(--black);
    text-align: center;
}

.uplevelSec.teamSec .title h4 {
    color: var(--theme-color);
    background: #fff;
    width: 19%;
    margin: 0 auto 1.5rem;
}

.uplevelSec.teamSec .title.borderLine:before {
    top: 18px;
    height: 100%;
}

.uplevelSec.teamSec .title.borderLine {
    margin-bottom: 2rem;
}

.teamContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem 0;
}

.teamContent h4 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
}

.teamContent h5 {
    font-size: 1.375rem;
    margin: 0;
}

.teamContent ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.teamContent ul li a {
    font-size: 1.2rem;
    color: var(--black);
}

.teamContent ul li a:hover {
    color: var(--theme-color);
}

.mySwiper {
    padding: 2rem 0;
}

.mySwiper .swiper-wrapper {
    justify-content: center;
}

.mySwiper .swiper-slide {
    margin: 0 -40px;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mySwiper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active {
    z-index: 11;
    transform: scale(1.2);
}

.mySwiper .swiper-slide-next+.swiper-slide img {}

.mySwiper .swiper-slide img {
    border: 10px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.mySwiper .swiper-slide:nth-child(even) {
    z-index: 1;
}

.mySwiper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active img {
    border-color: var(--theme-color);
}

.testimonialContent {
    text-align: center;
    padding-top: 2rem;
}

.testimonialContent i {
    font-size: 3.5rem;
    color: var(--theme-color);
}

.testimonialContent p {
    font-size: 1.375rem;
    color: var(--black);
    font-style: italic;
    margin: 1.5rem 0;
}

.testimonialContent h4 {
    font-size: 1.875rem;
    color: var(--theme-color);
    font-weight: 600;
}

.testimonialContent h5 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
}

.logoSlider figure {
    position: relative;
}

.logoSlider figure a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    width: 243px;
    height: 48px;
    margin: auto;
    font-size: 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    gap: 0.5rem;
    opacity: 0;
}

.logoSlider figure a i {
    font-size: 1.4rem;
    color: var(--theme-color);
}

.logoSlider .swiper-slide.swiper-slide-active figure a {
    opacity: 1;
}

footer {
    background: var(--black);
    padding-top: 5rem;
}

.foterNavigation {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.foterNavigation ul li a {
    font-size: 1.25rem;
    color: var(--white);
    display: table;
    font-weight: 500;
}

.foterNavigation ul li+li {
    margin: 15px 0 0;
}

.copyRight {
    border-top: 1px solid #707070;
    align-items: center;
    padding: 2.5rem 0;
    margin-top: 2rem;
}

.copyRight p {
    color: var(--white);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.copyRight form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.copyRight form input {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #707070;
    padding-bottom: 17px;
}

.copyRight form button {
    background: transparent;
    border: 0;
    color: var(--white);
    position: absolute;
    right: 0;
    transform: scale(2);
}

.copyRight form input::placeholder {
    color: #fff;
}

.foterNavigation ul li a:hover {
    color: var(--theme-color);
}

.instaSec {
    padding: 0;
}

.uplevelSec.deserveSec {
    padding-top: 10rem;
}

.uplevelSec.deserveSec .title h4.subHeading {
    color: var(--theme-color);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    background: #fff;
}

.gallery2Box .d-flex a:hover {
    color: var(--theme-color);
}

.themeBtn.brdrBtn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.themeBtn.brdrBtn:hover span {
    background: var(--black);
}

.themeBtn:hover {
    background: var(--black);
    color: var(--white);
}

.themeBtn:hover span {
    background: var(--theme-color);
}


/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 52%;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 5rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
    text-align: center;
}

.innerBan {
    position: relative;
}

.brandImg.brndimg2 .brdrSecnd img {
    border: unset;
}

.brandImg.brndimg2 .brdrSecnd {
    transform: rotate(355deg);
    margin-bottom: 0.5rem;
}

section.servicesinner .heading {
    color: #000;
}

section.servicesinner p {
    color: #000;
}

section.servicesinner {
    background: #FBF6F4;
}

.blogcntnt h2 {
    font-size: 3.125rem;
    color: #D7A790;
    margin-top: 10px;
}

.blogcntnt p {
    color: #000;
    margin-bottom: 05px;
}

.blogcntnt a {
    color: #000;
    font-weight: 600;
}

.contactWraps {
    text-align: center;
    background: #D7A790;
    width: 270px;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 100%;
    margin: auto;
    position: relative;
}

.contactWraps:before {
    content: "";
    position: absolute;
    border: 2px dashed #3A3A3A;
    width: 340px;
    height: 340px;
    border-radius: 100%;
    z-index: -1;
}

.contactForm .form-group .form-control {
    height: 65px;
    border-radius: unset;
    background: #EEEEEE;
    /* border: 1px solid #303030; */
    padding-left: 2.3rem;
}

.contactForm .form-group {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.contactForm .form-group i {
    position: absolute;
    left: 1rem;
    color: #fff;
}

.contactForm .form-group .form-control::placeholder {
    color: #000000;
}

.contactForm .form-group textarea {
    min-height: 230px;
    padding-top: 1rem;
}

.contactInner .row+.row {
    padding-top: 9rem;
}

.contactInner {
    padding: 7rem 0 7rem 0;
}

.contactWraps h4 {
    font-size: 1rem;
    font-weight: 600;
    padding-top: 1rem;
    color: #fff;
}

.contactWraps a,
.contactWraps p {
    color: var(--white);
    font-weight: 600;
    word-break: break-word;
}

.contactInner h5 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Playfair Display';
}

.contactImg img {
    transform: rotate(358deg);
}

.contactInner h2 {
    font-size: 4.375rem;
    margin-bottom: 8rem;
}

.basiccntct {
    background: #FAF5F3;
    padding: 2rem;
    border-radius: 20px;
}

.basiccntct h4 {
    font-size: 3.125rem;
    color: #D7A790;
    font-family: 'Playfair Display';
    text-align: center;
}

.basiccntct h5 {
    font-size: 1.875rem;
    text-align: center;
}

.basiccntct p {
    color: #000;
    text-align: center;
}

ul.packeglist li a {
    font-size: 16px;
    color: #000000;
    line-height: 2;
}

ul.packeglist li a i {
    display: inline-grid;
    place-content: center;
    background: #D7A790;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    width: 16px;
    height: 16px;
    margin-right: 7px;
}

.basicbox h3 {
    font-size: 1.875rem;
    text-align: center;
    background: #D7A790;
    color: #fff;
    border-radius: 20px 20px 0 0;
    padding: 11px 6rem;
    width: fit-content;
    margin: auto;
    font-family: 'Playfair Display';
}

a.blckbt {
    font-size: 16px;
    color: #fff;
    background: #000;
    padding: 1rem 3rem;
    margin: auto;
    border-radius: 30px;
    margin-left: 6rem;
}

ul.packeglist {
    margin-bottom: 10px;
    padding-left: 1rem;
}

.basicspackegs {
    padding-bottom: 8rem;
}

.basicspackegs h4 {
    font-family: 'Playfair Display';
    text-align: center;
    font-size: 3.125rem;
    margin-bottom: 3rem;
}

.howSection h2 {
    font-family: 'Playfair Display';
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

section.howSection {
    background: #FBF6F4;
    position: relative;
}

.howbox {
    width: 80%;
    margin: auto;
}

.howbox h3 {
    background: #D7A790;
    width: 164px;
    height: 164px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    font-size: 1.375rem;
    font-family: 'Montserrat';
    margin: auto;
}

.howcntnt h4 {
    font-size: 1.75rem;
    font-family: 'Playfair Display';
    margin-top: 1rem;
}

.howcntnt p {
    font-size: 16px;
    color: #000;
}

.howbox {
    text-align: center;
}

.imgphoto img {
    position: absolute;
    top: 30%;
}

.line11 {
    left: 29.6%;
}

.line22 {
    left: 47%;
}

.line33 {
    right: 29%;
}

.basiccntct.basicservis {
    background: unset;
    border: 1px solid #D6D6D6;
    padding: 2rem;
    min-height: 518px;
    /* overflow-y: scroll; */
}

ul.packeglist.servicepkg li {
    list-style: circle;
}

.basiccntct.basicservis h5 {
    font-size: 1.875rem;
    font-family: 'Playfair Display';
    text-align: inherit;
}

.basiccntct.basicservis p {
    text-align: inherit;
}

.pinkbtn {
    background: #D7A790;
    font-size: 16px;
    color: #fff;
    margin: auto;
    border-radius: 30px;
    width: 90%;
    display: inline-block;
    /* height: 60px; */
    text-align: center;
    padding: 1rem;
    margin: auto;
    margin-top: -1rem;
    /* margin-left: 1.2rem; */
}

.pinkbtn:hover {
    color: var(--white);
}

.basicbox.box4 p {
    font-size: 1.375rem;
}

.basicbox:hover h3 {
    background: #FBF6F4;
    color: #000;
}

.basicbox:hover .basiccntct {
    background: #D7A790;
}

.basicbox:hover .basiccntct h4 {
    color: #fff;
}

.basicbox:hover ul.packeglist li a i {
    color: #D7A790;
    background: #fff;
}

.basicbox:hover .pinkbtn {
    background: #000;
}

.servicesinner .title.borderLine:before {
    border-color: rgb(0 0 0 / 20%);
    top: 22%;
    height: 60%;
    width: 65%;
}

.servicesinner .title.borderLine .heading {
    background-color: rgb(251 246 244);
    color: var(--black);
    width: 50%;
    margin: auto;
}

.pararight {
    padding-right: 0;
}

.paraleft {
    padding-left: 0rem;
}

.uplevelSec.deserveSec .title.borderLine:before {
    top: 37px;
}

.wrkSect {
    /* margin-top: -15rem; */
    z-index: 1;
    background: var(--theme-color) !important;
    padding: 0 0 2rem 0;
    position: relative;
    min-height: 18rem;
}

.stepCard {
    background: var(--white);
    padding: 4rem 2rem 2rem;
    box-shadow: 0 0 2rem 0 rgb(0 0 0 / 20%);
    /* border-radius: 1rem; */
    position: absolute;
    max-width: 50rem;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
}

.stepCard .swiper {
    width: 100%;
}

.stepCard .swiper .swiper-button-prev,
.stepCard .swiper .swiper-button-next {
    background-color: var(--theme-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: 0.5s ease;
}

.stepCard .swiper .swiper-button-prev::after,
.stepCard .swiper .swiper-button-next::after {
    display: none;
}

.stepCard .swiper .swiper-button-prev:hover,
.stepCard .swiper .swiper-button-next:hover {
    background-color: var(--theme-color);
}

.wrkSect .howbox h3 {
    background: var(--theme-color);
}

.bgClrs .themeBtn {
    background: var(--black);
    color: var(--white);
}

.bgClrs .themeBtn:hover {
    background: var(--white);
    color: var(--black);
}

.bgClrs .themeBtn span {
    background: var(--theme-color) !important;
}

.stepCard .swiper .swiper-button-prev i,
.stepCard .swiper .swiper-button-next i {
    color: #fff;
}

.socialLinkks {
    display: flex;
    /* justify-content: end; */
    gap: 0.875rem;
    margin-left: 3rem;
}

.socialLinkks li a {
    background: var(--white);
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--black);
    font-size: 1.125rem;
    transition: 0.5s ease-in-out;
}

.socialLinkks li a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.innerBan.blogDetail h2 {
    font-size: 3rem;
}

.detailsBlog h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blogcntnt h2 {
    font-size: 2rem;
}

.servicesinner.photoBooth {
    background: rgb(215 167 144 / 10%);
}

.servicesinner.photoBooth .title.borderLine {
    padding-bottom: 4rem;
}

.servicesinner.photoBooth .title.borderLine:before {
    height: 80%;
    width: 94%;
}

.borderimg img {
    border: 15px solid #FFFFFF;
}

.boothPackge span {
    background: #D7A790;
    width: 265px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 20px 20px 0 0;
    font-size: 1.875rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.boothpckageContent {
    background: rgb(215 167 144 / 10%);
    border-radius: 20px;
    padding: 20px 0 0;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.boothpckageContent h2 {
    text-align: center;
    font-size: 3.125rem;
    color: #D7A790;
    margin: 0 0 0.7rem;
}

.boothpckageContent h4 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 400;
    margin: 0 0 0.7rem;
}

.boothpckageContent h5 {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    margin: 0 0 1rem;
}

.boothpckageContent ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 3rem 5rem 5rem;
}

.boothpckageContent ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.boothpckageContent ul li i {
    color: #D7A790;
}

.boothpckageContent ul li+li {
    margin: 5px 0 0;
}

.boothpckageContent .themeBtn {
    justify-content: center;
    background: var(--black);
    color: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 66%;
    text-align: center;
    padding: 1.084em 0;
    bottom: -2rem;
}

.boothPackge {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.boothPackge:hover span {
    background: #FBF6F4;
    color: #000000;
}

.boothPackge:hover .boothpckageContent {
    background: #D7A790;
}

.boothPackge:hover .boothpckageContent h2 {
    color: var(--white);
}

.boothPackge:hover .boothpckageContent ul li i {
    color: var(--white);
}

.photboothPackages .heading {
    text-align: center;
    color: var(--black);
    margin-bottom: 3rem;
}

.photoBanner {
    background: #0F0F0F url(../images/photoBan.webp) left/contain no-repeat;
    height: 850px;
}

.photoBanner .overlay {
    top: 0;
    text-align: center;
}

.photoHead h2 {
    font-size: 2.8125rem;
    margin-bottom: 1.5rem;
}

.photoHead .themeBtn {
    font-size: 1rem;
    border: unset;
    padding: 1.084em 3em;
}

.captureSec {
    background: var(--theme-color);
    padding: 3rem 0;
}

.gallerySect h2 {
    color: var(--black);
}

.galleryWraps {
    position: relative;
}

.galleryWraps figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.galleryWraps figure img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.videoIcon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: fit-content;
    margin: auto;
}

.videoIcon i {
    background: rgb(255 255 255 / 30%);
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
}

.gallerySect {
    padding: 2rem 0 0 0;
}

.photoContact {
    background: #FBF6F4;
}

.photoContact .contactImg img {
    border: 15px solid var(--white);
}

.photoContact .contactForm .form-group .form-control {
    background: var(--white);
    padding-left: 1rem;
}

.photoContact .contactForm .form-group .form-control::placeholder {
    color: rgb(0 0 0 / 50%);
}

.photoContact .contactForm .form-group textarea {
    min-height: 150px;
}

.centerLogo img {
    width: 300px;
    filter: drop-shadow(2px 2px 10px black);
}














/* Wordpress & Woocommerce CSS Start */





.navbar-nav .list-unstyled {
  display: contents !important;
}
.form button {
  max-width: 50px !important;
}
.contactForm .themeBtn.brdrBtn {
  max-width: 200px;
}
#loom-companion-mv3 {
    display: none;
}













.container {
  padding: 0px !important;
}
.list-unstyled.links .nav-link {
  padding: 0px !important;
}
.hf-form.hf-form-179 .hf-fields-wrap .themeBtn {
  max-width: 165px !important;
}
section#block-8 h2 {
    background-color: #000;
    display: inline-block;
    padding: 1.5em;
    font-size: 1.125rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #ebebeb;
    width: 100%;
    margin-bottom: 0;
}
section#block-8 {
    padding-top: 0;
}
.wpcr3_respond_1.wpcr3_in_content {
  display: none !important;
}
form .input-cont i {
  top: 8px !important;
}
.footerLinks .list-unstyled.links {
  display: contents !important;
}
.blogPagedetail h2 {
  color: #000 !important;
}
.single-product .col-md-12.col-xs-12.col-sm-12 h3 {
  display: none !important;
}
.single-product .woocommerce div.product div.images img {
  border: 2px solid #fff;
}
.single-product .summary.entry-summary .availability {
  color: #fff !important;
}
.single-product .summary.entry-summary .posted_in {
  color: #fff !important;
}
.pro_detail h3 {
  color: #fff;
}
.details_tab_area.woocommerce-tabs #tab-title-additional_information {
  padding: 20px;
  background: #d11a1f !important;
}
.details_tab_area.woocommerce-tabs #tab-title-additional_information a {
  color: #000 !important;
}
#tab-additional_information .shop_attributes {
  color: #000 !important;
}
.productSec.wer {
  display: none !important;
}
.woocommerce table.shop_table {
  background: #a4a4a4 !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: #a4a4a4 !important;
}



.error404 .page-title {
  color: #000 !important;
}
/* 404 Page */
.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #ecd6cd !important;
}
.page-title {
  color: #fff !important;
}
input.search-field {
    border: 2px solid #006b17;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #006b17;
    border: 2px solid #006b17;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #006b17 !important;
    color: #006b17;
}
#secondary {
  display: none !important;
}
.single-post h3 {
  font-size: 17px !important;
}
.search .wapper.ert.container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.search .wapper.ert.container .search-title {
  text-align: center !important;
  margin-bottom: 70px !important;
}
.search .wapper.ert.container h3 a {
  color: #000 !important;
}
.search .wapper.ert.container .h-readmore {
  margin-bottom: 50px !important;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #000;
  border: 1px solid var(--theme-color);
  padding: 0.75em 2em;
  min-width: 150px;
  margin: 0.5rem 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  display: inline-block;
}
.search .wapper.ert.container .h-readmore a{
	color: #fff !important;
}
.checkOutStyle h2 {
  color: #fff;
}
.checkout_form h3 {
  color: #fff;
}



.woocommerce-message .button.wc-forward {
  background: #555 !important;
}
.table-responsive.cart_table.woocommerce-cart-form .button {
  background: #555 !important;
}
.wc-proceed-to-checkout .checkout-button.button.alt.wc-forward {
  background: #555 !important;
}
#place_order {
  background: #555 !important;
}
.woocommerce .woocommerce-breadcrumb {
  display: none !important;
}



.navbar-nav > li .dropdown-menu{
    min-width: 15rem;
    border: 0;
    border-radius: 0;
}
.navbar-nav > li:hover .dropdown-menu {
    display: block;
}
.navbar-nav > li {
    position: relative;
}
.navbar-nav > li.menu-item-has-children:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    top: 5px;
    right: -20px;
}
header .navbar .navbar-nav li .dropdown-menu .nav-link {
    font-size: 1rem;
    padding: 0.3rem 1rem;
}
.navbar-nav > li.menu-item-has-children::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 0px !important;
  right: -20px;
  color: white !important;
}
.dropdown-menu li .nav-link {
  color: #000 !important;
}


/*SubMenu DropDown*/
.dropdown-menu li > .dropdown-menu {
  position: relative;
}

.dropdown-menu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-menu li > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}



/ All Wocommerce Css /
@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 22%;
  }
  .woocommerce-account .woocommerce-MyAccount-content { 
    width: 75%;
  }
}
/ Style WC Account Endpoint Links /
nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  max-width:200px;
  font-size: 17px;
  line-height: 26px;
}
nav.woocommerce-MyAccount-navigation ul li {
  padding: 8px 20px;
  background-color: rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav.woocommerce-MyAccount-navigation ul li.is-active {
  background: #f25a29 !important;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fff !important; 
  cursor: default;
}
nav.woocommerce-MyAccount-navigation ul li {
	padding: 8px 20px;
	background: #000 !important;
	border-bottom: 2px solid #fff;
}
nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0,0,0,0.1);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
  background: #f25a29 !important;
}
.woocommerce-MyAccount-navigation-link a {
  color: #fff !important;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after { 
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0,0,0,0.07);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
.woocommerce-account #primary {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.u-columns.woocommerce-Addresses.col2-set.addresses .col-1, .u-columns.woocommerce-Addresses.col2-set.addresses .col-2 {
    max-width: 100%;
    width: 48%;
}
.woocommerce-form-row label {
  width: 100% !important;
}
.woocommerce-account .u-column1.col-1, .woocommerce-account .u-column2.col-2 {
  width: 100% !important;
  max-width: 48% !important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 5px solid #000 !important;
  box-shadow: 0px 0px 30px -2px #fff !important;
}
.single-product .woocommerce-breadcrumb a {
  color: #a24234 !important;
}
.single-product .woocommerce-breadcrumb {
  color: #a24234 !important;
}
.single-product .woocommerce-product-details__short-description p {
  font-size: 15px !important;
  margin-top: 20px !important;
}
.woocommerce div.product form.cart div.quantity {
  float: none !important;
}
.btn-warning {
  color: #fff;
  background-color: #a24234;
  border-color: #006b17;
  padding: 20px;
  max-width: 200px;
  width: 100% !important;
  margin-top: 40px;
}
.product_meta .posted_in a {
  color: #fff !important;
}
.posted_in {
  pointer-events: none !important;
}
.details_tab_area.woocommerce-tabs #tab-title-description {
  padding: 20px;
  background: #555 !important;
}
.details_tab_area.woocommerce-tabs #tab-title-description a {
  color: #fff !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews {
  padding: 20px;
  background: #939393 !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews a {
  color: #fff !important;
}
.details_tab_area.woocommerce-tabs #descrpt-sing {
  padding-left: 0px !important;
  padding-top: 20px !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews, #tab-reviews {
  padding-top: 20px !important;
}
#tab-reviews #submit {
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 1.125rem !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1 !important;
  z-index: 1;
  border-radius: 50px !important;
  color: var(--white) !important;
  background-color: var(--theme-color) !important;
  padding: 0.8em 1.25em !important;
  transition: all 0.5s ease !important;
}
.woocommerce-cart #primary {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 100% !important;
}
.coupon.couponarea {
  margin-bottom: 20px;
  margin-top: 10px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button{
    display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 1.125rem !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1 !important;
  z-index: 1;
  border-radius: 50px !important;
  color: var(--white) !important;
  background: #555 !important;
  padding: 0.8em 1.25em !important;
  transition: all 0.5s ease !important;
}
.coupon.couponarea #coupon_code {
  margin-bottom: 15px !important;
  border-radius: 40px !important;
}
.cart_item a {
  color: #006b17 !important;
}
.actions .button {
  max-width: 510px !important;
}
.btn-warning {
  color: #fff !important;
  background: #555 !important;
  border-color: #fff !important;
  padding: 20px !important;
} 



.container.result_cntt {
    display: none;
}

div#shp-filtr {
    position: absolute;
    top: -50px;
    right: 20px;
}

.summary.entry-summary h2, bdi {
  color: #fff;
}



/* Wordpress & Woocommerce CSS End */
