


@font-face {
    font-family: 'revicons';
    src: url('assets/css/xhtml/plugins/revolution/revolution/fonts/revicons/revicons.woff') format('woff'),
        url('assets/css/xhtml/plugins/revolution/revolution/fonts/revicons/revicons.ttf') format('truetype');
}

:root {
    --primary-color: #C9A089;
    --secondary-color: #000208;
    --white: #ffffff;
    /* --primary-color: #e2836a;
    --secondary-color: #000208;
    --white: #ffffff; */


}



.top-headar-area {
    background: var(--secondary-color);
    padding: 11px 50px 11px;
}

.top-info ul li {
    display: inline-block;
    color: var(--white);
    margin-right: 40px;
    position: relative;
}

.top-info ul li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 17px;
    background: #fff;
    right: -21px;
    top: 6px;
    opacity: 0.4;
}

.top-info ul li:last-child:before {
    background: transparent;
}

.top-info ul li i {
    display: inline-block;
    color: #ffcbb1;
    margin-right: 9px;
    position: relative;
    top: 2px;
}

.top-social-icon {
    text-align: right;
}

.top-social-icon ul li {
    display: inline-block;
    margin-left: 8px;
}

.top-social-icon ul li i {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.top-social-icon ul li i:hover {
    color: #ffcbb1;
}

.top-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--white);
    border-radius: 15px;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.top-social-icon ul li i:hover:after {
    transform: scale(1);
}




/*
<!-- =================================-->
<!-- spaclub Header Area Css  -->
<!-- =================================-->
*/
.header-area {
    padding: 0 46px 0;
    margin-bottom: -94px;
    border-bottom: 1px solid rgba(84, 31, 92, 0.1);
    position: relative;
    z-index: 1;
}

.header-menu {
    text-align: right;
}

.header-menu ul li {
    display: inline-block;
    margin-left: 45px;
}

.header-menu ul li a {
    display: inline-block;
    color: white;
    font-weight: 600;
    padding: 34px 0;
}

.header-menu ul li a:hover {
    color: #ffcbb1;
}

.header-right {
    text-align: right;
}

.header-contact-button img {
    margin-right: 10px;
}

.header-contact-button h4 {
    font-size: 18px;
    margin: 0;
    font-family: var(--body-fonts);
    font-weight: 800;
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    float: right;
    gap: 38px;
}

.header-button a {
    display: inline-block;
    font-size: 16px;
    color: #fefefe;
    font-weight: bold;
    background: #ffcbb1;
    padding: 12px 31px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #ffcbb1;
}

.header-button a:hover {
    color: #ffcbb1;
}

.header-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 30px;
}

.header-button a:hover:before {
    width: 100%;
    left: 0;
}

.header-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    left: 5px;
    transform: rotate(-59deg);
}


.header-menu ul li i {
    font-size: 11px;
    display: inline-block;
    position: relative;
    left: 5px;
}



/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 250px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #ffcbb1;
    border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li {
    margin-left: 0 !important;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 9px 19px;
    color: #1e1e1e;
    width: 250px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-menu ul li .sub-menu li a:hover {
    color: #fff;
}

.header-menu ul li .sub-menu li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: #ffcbb1;
    z-index: -1;
    transition: 0.5s;
}

.header-menu ul li .sub-menu li a:hover:before {
    height: 100%;
    top: 0;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}


/*--Project Button--*/
.project-button a {
    display: inline-block;
    font-size: 16px;
    color: #fefefe;
    font-weight: bold;
    background: #ffcbb1;
    padding: 14px 41px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #ffcbb1;
}

.project-button a:hover {
    color: #ffcbb1;
}

.project-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 30px;
}

.project-button a:hover:before {
    width: 100%;
    left: 0;
}

.project-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    left: 5px;
    transform: rotate(-59deg);
}








/*
<!-- =================================-->
<!-- spaclub Hero Area Css  -->
<!-- =================================-->
*/

.hero-area {
    background: url(../images/home-1/hero-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    padding-top: 148px;
    padding-bottom: 63px;
    position: relative;
}

.hero-area .project-button {
    margin-top: 38px;
}

.hero-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--body-fonts);
    background: #fff;
    display: inline-block;
    padding: 11px 21px;
    padding-left: 34px;
    text-transform: uppercase;
    border-radius: 30px;
    position: relative;
    margin-bottom: 18px;
}

.hero-content h4:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: 19px;
    top: 16px;
    background: #ffcbb1;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 72px;
    color: #0a132e;
    font-weight: bold;
}

.hero-content h1 span {
    display: inline-block;
    color: #ffcbb1;
}

.hero-content p {
    font-size: 18px;
    line-height: 28px;
    width: 80%;
    margin: 26px 0 0;
}

.hero-thumb {
    position: relative;
    left: -193px;
    top: 0;
}

.hero-shape {
    position: absolute;
    top: 11px;
    right: -63px;
}

.hero-thumb-2 {
    position: absolute;
    right: 57px;
    bottom: 85px;
}


/*
<!-- =================================-->
<!-- spaclub Feature Area Css  -->
<!-- =================================-->
*/
.featurea-area {
    padding: 118px 0 94px;
}

.featurea-area .section-title {
    position: relative;
    left: -36px;
    position: relative;
    margin: 0;
}

.section-title h4 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 14px 50px;
    position: relative;
    display: inline-block;
}

.section-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    left: -48px;
    top: 8px;
    background: black;
}

.section-title h1 {
    font-size: 42px;
    line-height: 42px;
    color: #0a132e;
    font-weight: 500;
}

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

.single-feature-box {
    text-align: center;
    background: #f8f5f0;
    padding: 25px 3px 18px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single-feature-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #0a132e;
    border-radius: 20px;
    z-index: -1;
    transition: 0.5s;
}

.single-feature-box:hover:before {
    width: 100%;
    left: 0;
}

.feature-content h4 {
    font-size: 28px;
    margin: 37px 0 10px;
    transition: 0.5s;
}

.single-feature-box:hover .feature-content h4 {
    color: #fff;
}

.feature-content p {
    transition: 0.5s;
}

.single-feature-box:hover .feature-content p {
    color: #a4a7b3;
}

.feature-shape {
    position: absolute;
    left: 0;
    bottom: -133px;
    animation: bns1 3s linear infinite;
}




/*
<!-- =================================-->
<!-- spaclub About Area Css  -->
<!-- =================================-->
*/
.about-area {
    padding: 0 0 121px;
    position: relative;
}

.about-area .project-button {
    margin-top: 49px;
}

.about-thumb {
    position: relative;
    left: -66px;
}

.about-right {
    border: 1px solid rgba(10, 19, 46, 0.10196078431372549);
    border-left: 0;
    border-right: 0;
    padding: 16px 0 27px;
    margin-top: 31px;
    margin-bottom: 25px;
}

.single-about-box {
    display: inline-block;
    width: 48%;
    margin-right: 6px;
}

.about-box-icon {
    float: left;
    margin-right: 25px;
    margin-top: 12px;
}

.about-content h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
}

.about-item p {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
}

.about-item i {
    color: #ffcbb1;
    margin-right: 14px;
}

.about-shape {
    position: absolute;
    right: 4%;
    top: -70px;
    animation: dance 2s alternate infinite;
}


/*
<!-- =================================-->
<!-- spaclub Service Area Css  -->
<!-- =================================-->
*/
.service-area {
    /* background: url(../images/home-1/service-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 119px 0 117px;
    margin: 0 63px 0;
}

.service-area .section-title {
    margin-bottom: 57px;
}

.single-service-box {
    text-align: center;
    position: relative;
}

.service-thumb img {
    width: 100%;
    position: relative;
        max-height: 400px;
    object-fit: cover;
    min-height:400px;
}

.service-thumb {
    position: relative;
}

.service-thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: url(../images/home-1/service-img-shape.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: 1s;
}

.single-service-box:hover .service-thumb:before {
    /* background: url(../images/home-1/service-img-shape2.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-content {
    padding: 0 19px 0;
    border-bottom: 1px solid rgba(10, 19, 46, 0.10196078431372549);
    position: relative;
    transition: 1s;
    margin: 0 21px 0;
}

.single-service-box:hover .service-content {
    border-bottom: 1px solid #ffcbb1;
}

.service-content a {
       display: inline-block;
    background: #ffcbb1;
    border-radius: 30px;
    color: #fff;
    line-height: 30px;
    font-size: 15px;
    padding: 10px;
    
}

.single-service-box:hover .service-content a {
    opacity: 1;
}

.service-content h4 {
    /* font-size: 32px; */
    margin: 22px 0 12px;
}

.service-content p {
    margin: 0 0 16px;
}

.service-time h6 {
    font-size: 20px;
    font-weight: 500;
    margin: 16px 0 0;
}

.service-shape {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    transition: 1s;
    opacity: 0;
}

.single-service-box:hover .service-shape {
    top: 0;
    opacity: 1;
}

.service-shape img {
    display: inline-block;
    width: 17% !important;
}

.service-area .owl-carousel .owl-item img {
    display: inline-block;
}

.service-area .owl-nav {
    position: relative;
}

.service-area .owl-prev {
    position: absolute;
    top: -433px;
    left: -54px;
}

.service-area .owl-next {
    position: absolute;
    top: -433px;
    right: -54px;
}

.service-area .owl-prev i {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(10, 19, 46, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: #222;
}

.service-area .owl-next i {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(10, 19, 46, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: #222;
}




/*
<!-- =====================================-->
<!-- spaclub Text Area Css-->
<!-- =====================================-->*/
.text-section {
    position: relative;
    z-index: 1;
    padding: 72px 0 72px;
}

.text-section .inner-container {
    max-width: 1812px;
    margin: 0 auto;
}

.text-section .marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 0px;
}

.text-section .marquee-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0;
    min-width: 87%;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.text-section .marquee-block .content-box {
    position: relative;
    margin-right: 0px;
}

.text-section .marquee-block .content-box:last-child {
    margin-right: 0px;
}

.text-section .marquee-block .content-box:last-child::before {
    display: none;
}

.text-section .marquee-block .content-box .title {
    margin: 0;
}

.text-section .marquee-block .content-box h6.title {
    display: inline-block;
    padding: 0 48px;
    font-size: 25px;
    text-transform: uppercase;
    color: #0a132e;
    font-weight: 500;
}

.text-section .marquee-block .content-box h6.title img {
    position: relative;
    left: -49px;
    animation: rotateme 20s linear infinite;
}

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

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


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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



/*
<!-- =====================================-->
<!-- spaclub Choose Us Area Css-->
<!-- =====================================-->
*/

.choose-us-area {
    padding: 120px 0 120px;
    background: #0a132e;
    margin: 0 60px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.choose-us-area .section-title {
    margin-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14901960784313725);
    padding-bottom: 35px;
}

.choose-us-area .section-title h1 {
    color: var(--white);
}

.choose-us-list-box ul li {
    font-size: 22px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.choose-us-list-box ul li img {
    margin-right: 9px;
}

.choose-us-thumb {
    position: relative;
    left: 4px;
}

.choose-us-area .project-button a {
    margin-top: 36px;
}

/*
<!-- =====================================-->
<!-- spaclub Portfolio Area Css-->
<!-- =====================================-->
*/
.portfolio-area {
    padding: 388px 48px 100px;
    background: #f8f5f0;
    margin-top: -268px;
}

.portfolio-area .section-title {
    margin-bottom: 48px;
}

/* portfolio menu */
.portfolio_nav {
    display: inline-block;
    border: 1px solid #1111111f;
    border-radius: 55px;
    padding: 15px 18px;
    margin-bottom: 52px;
}

.portfolio_menu {
    text-align: center;
    padding: 0 0 0;
}

li.current_menu_item {
    color: #fff !important;
    background: #ffcbb1;
    border: 1px solid #ffcbb1 !important;
}

.portfolio_menu ul li {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    padding: 7px 28px;
    color: #0a132e;
    position: relative;
    z-index: 1;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid #0a132e;
}

.portfolio_menu ul li:last-child {
    margin-right: 0;
}

.single-portfolio-box {
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 0 0 35px;
    position: relative;
    margin-bottom: 20px;
}

.portfolio-thumb img {
    width: 100%;
}

.portfolio-button {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 120px;
    opacity: 0;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-button {
    opacity: 1;
}

.portfolio-content {
    padding: 26px 0 0;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-content {
    padding: 40px 0 0;
}

.portfolio-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffcbb1;
    font-weight: 500;
}

.portfolio-content a {
    display: inline-block;
    font-size: 28px;
    color: #0a132e;
    font-weight: 500;
    font-family: var(--title-fonts);
    margin-top: 13px;
}

.portfolio-button i {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #e2836a;
    text-align: center;
    line-height: 56px;
    color: #fff;
    transform: rotate(-45deg);
}





/*
<!-- =====================================-->
<!-- spaclub Pricing Area Css-->
<!-- =====================================-->
*/
.pricing-area {
    padding: 120px 0 500px;
    position: relative;
}

.pricing-area .section-title {
    margin-bottom: 62px;
}

.single-pricing-img-box {
    background: url(../images/home-1/pricing-box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 47px 42px 296px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

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

.pricing-img-content h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    margin: 0;
}

.pricing-img-content h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 8px;
}

.pricing-img-content p {
    color: #fff;
    line-height: 24px;
    margin-top: 7px;
}

.pricing-img-content i {
    display: inline-block;
    width: 52px;
    height: 52px;
    border-radius: 26px;
    background-color: rgba(226, 131, 106, 0);
    border: 1px solid #ffffff;
    text-align: center;
    line-height: 52px;
    color: #fff;
    transform: rotate(-45deg);
    margin-top: 7px;
}

.pricing-img-shape {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -33px;
    margin: auto;
    text-align: center;
}

.single-pricing-box {
    background: #F7F5EF;
    text-align: center;
    padding: 28px 58px 39px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #e2836a;
    line-height: 70px;
    text-align: center;
    margin: auto;
}

.pricing-head h4 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 21px;
}

.pricing-head h1 {
    font-size: 60px;
    color: #0a132e;
    font-weight: 500;
    margin-top: 4px;
}

.pricing-head span {
    font-size: 18px;
    color: #0a132e;
    display: inline-block;
}

.pricing-body {
    text-align: left;
    border-top: 1px dashed #8b8b8a;
    margin-top: 24px;
    padding-top: 25px;
}

.pricing-body ul li {
    line-height: 35px;
}

.pricing-body ul li i {
    color: #ffcbb1;
    font-size: 22px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 2px;
}

.pricing-area .project-button {
    margin-top: 34px;
}

.pricing-shape {
    position: absolute;
    right: 138px;
    top: 10%;
}

.pricing-shape-2 {
    position: absolute;
    left: 113px;
    top: 6%;
}


/*
<!-- =====================================-->
<!-- spaclub Video Area Css-->
<!-- =====================================-->
*/

.video-area {
    background: url(../images/home-1/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 290px 0 290px;
    margin: 0 63px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.single-video-box a {
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 75px;
    background-color: #ffcbb1;
    font-size: 30px;
    color: #ffcbb1;
    line-height: 150px;
    position: relative;
    z-index: 1;
}

.single-video-box a:before {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #ffffff;
    left: 38px;
    top: 38px;
    text-align: center;
    z-index: -1;
}

.single-video-box a:after {
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    border-radius: 54px;
    border: 2px dashed #ffff;
    left: 25px;
    top: 25px;
    text-align: center;
    z-index: -1;
    animation: rotateme 20s linear infinite;
}



/*
<!-- =====================================-->
<!-- spaclub Teastimonial Area Css-->
<!-- =====================================-->
*/
.single-teastimonial-area {
    background: #f8f5f0;
    padding: 50px 0 120px;
    margin-top: -385px;
    position: relative;
}

.single-teastimonial-area .section-title {
    margin-bottom: 59px;
}

.single-teasti-box {
    margin: 0 13px 0;
}

.single-teasti-content {
    background: #fff;
    padding: 39px 31px 31px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.single-teasti-content:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 47px;
    bottom: -15px;
    background: #fff;
    transform: rotate(45deg);
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content:before {
    background: #ffcbb1;
}

.single-teasti-content:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content:after {
    width: 100%;
    left: 0;
}

.teasti-rating ul li {
    display: inline-block;
    color: #ffcbb1;
    margin: 0 0px 0 0;
    transition: 0.5s;
}

.single-teasti-box:hover .teasti-rating ul li {
    color: #ffff;
}

.teasti-rating ul li:last-child {
    color: #0a132e;
    font-weight: 600;
    margin-left: 5px;
}

.teasti-quote img {
    transition: 0.5s;
    width: 45px !important;
}

.single-teasti-box:hover .teasti-quote img {
    filter: brightness(0) invert(1);
}

.single-teasti-content p {
    font-size: 18px;
    line-height: 28px;
    color: #8b8b8a;
    margin: 23px 0 26px;
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content p {
    color: #fff;
}

.teasti-author {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 38px;
    margin-left: 32px;
}

.teasti-author-title h4 {
    font-size: 22px;
    font-weight: 500;
}

.teasti-author-title p {
    margin: 4px 0 0;
}


.single-teastimonial-area .owl-carousel .owl-item img {
    display: inline-block;
}

.teasti-shape {
    position: absolute;
    bottom: 46%;
    left: 10%;
    animation: dance 3s alternate infinite;
}

.teasti-shape-2 {
    position: absolute;
    bottom: 46%;
    right: 10%;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}




/*
<!-- =====================================-->
<!-- spaclub Blog Area Css-->
<!-- =====================================-->
*/
.blog-area {
    padding: 118px 0 90px;
}

.blog-area .project-button {
    text-align: right;
}

.blog-area .section-title {
    margin-bottom: 63px;
}

.single-blog-box {
    position: relative;
    margin-bottom: 30px;
}

.blog-thumb img {
    width: 100%;
}

.blog-date {
    display: inline-block;
    background: #ffcbb1;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    text-align: center;
    padding: 8px 0 0;
    position: absolute;
    top: 46%;
    left: 15px;
}

.blog-date h6 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.blog-date p {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.blog-author-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    margin-bottom: 22px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-author-title h4 {
    font-size: 17px;
    color: #8b8b8a;
    font-weight: 400;
    font-family: var(--body-fonts);
    margin: 0;
}

.blog-author-title strong {
    color: #0a132e;
}

.blog-link-button a {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    text-align: center;
    color: rgba(10, 19, 46, 0.5);
    font-size: 26px;
    line-height: 44px;
    transform: rotate(-45deg);
    border: 1px solid rgba(10, 19, 46, 0.1);
    transition: 0.5s;
}

.blog-link-button a:hover {
    background: #ffcbb1;
    border: 1px solid #ffcbb1;
    color: #fff;
}

.blog-content {
    background: #f8f5f0;
    padding: 24px 26px;
    border-radius: 10px;
}

.blog-content a {
    display: inline-block;
    font-size: 21px;
    line-height: 32px;
    color: #0a132e;
    font-weight: 600;
    transition: 0.5s;
}

.blog-content a:hover {
    color: #ffcbb1;
}


/*
<!-- =====================================-->
<!-- spaclub Subscribe Area Css-->
<!-- =====================================-->
*/

.subscribe-area .row.add-bg {
    background: url(assets/images/img435.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 70px 66px 80px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.subscribe-content h4 {
    font-size: 42px;
    line-height: 45px;
    color: #ffffff;
    font-weight: bold;
}

.subscribe-form {
    text-align: right;
    margin-top: 10px;
}

.subscribe-form input {
    height: 64px;
    background-color: #ffffff;
    width: 67%;
    border: transparent;
    border-radius: 30px 0 0 30px;
    padding: 0 36px;
    outline: 0;
}

.subscribe-form input::placeholder {
    font-size: 16px;
    color: #8b8b8a;
    font-weight: 400;
    font-family: var(--body-fonts);
}

.subscribe-form button {
    width: 64px;
    height: 64px;
    background-color: #0a132e;
    border: transparent;
    color: #ffff;
    position: relative;
    left: -5px;
}



/*
<!-- =====================================-->
<!-- spaclub Footar Area Css-->
<!-- =====================================-->
*/

.footar-area {
    background: #0a132e;
    padding: 240px 0 0px;
    margin-top: -125px;
    position: relative;
}

p.footer-desc {
    font-size: 18px;
    line-height: 26px;
    color: #a4a7b3;
    width: 90%;
    margin: 28px 0 26px;
}

.footar-contact p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    display: flex;
    gap: 14px;
    align-items: center;
}

.footar-social-icon {
    margin-top: 32px;
}

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

.footar-social-icon ul li i {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.10196078431372549);
    display: inline-block;
    text-align: center;
    color: #ffff;
    line-height: 44px;
    transition: 0.5s;
}

.footar-social-icon ul li i:hover {
    background: #ffcbb1;
}

.footar-title h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 25px;
}

.footar-list-item ul li a {
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 500;
}

.footar-list-item ul li a:hover {
    color: #ffcbb1;
}

.footar-working-list ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 82px;
}

.footar-working-list ul li:last-child {
    border-bottom: 0;
}

.footar-working-list ul li:last-child span {
    color: #ffcbb1;
    text-transform: uppercase;
}

.footar-area .row.add-bg {
    background: #172140;
    padding: 21px 27px 25px;
    margin-top: 113px;
}

.footer-bottom-content p {
    margin: 0;
    color: #a4a7b3;

}

.footer-bottom-content ul {
    text-align: right;
}

.footer-bottom-content ul li {
    display: inline-block;
}

.footer-bottom-content ul li a {
    display: inline-block;
    color: #a4a7b3;
    margin-left: 32px;
    transition: 0.5s;
}

.footer-bottom-content ul li a:hover {
    color: #ffcbb1;
}

.footer-shape-one {
    position: absolute;
    left: 65px;
    top: 149px;
    animation: bns1 3s linear infinite;
}

@keyframes bns1 {
    50% {
        transform: rotate(-5deg);
    }

    80% {
        transform: translateX(8px);
    }
}

.footer-shape-two {
    position: absolute;
    right: -38px;
    top: 23px;
    animation: bns2 5s linear infinite;
}

@keyframes bns2 {
    50% {
        transform: translateX(-50px);
    }

    80% {
        transform: translateX(20px);
    }
}



/*
<!-- =========================================================================-->
<!-- Start Home Two All Css -->
<!-- ==========================================================================-->
*/





/*
<!-- =================================-->
<!-- spaclub Header Area Css  Style Two-->
<!-- =================================-->
*/

.header-area.style-two {
    background: #0a132e;
    padding: 0 13px 0;
    border-bottom: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding-right: 90px;
}

.header-area.style-two.sticky {
    background: #0a132e !important;
}

.header-area.style-two:before {
    position: absolute;
    content: "";
    width: 5.2%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
}

.style-two .header-logo {
    position: relative;
    left: -5px;
}

.style-two .header-menu {
    text-align: left;
    margin-left: 70px;
}

.style-two .header-menu ul li a {
    color: #ffff;
}

.style-two .header-menu ul li a:hover {
    color: #ffcbb1;
}

.style-two .header-contact-button h4 {
    color: #fff;
}





/*
<!-- =================================-->
<!-- spaclub Hero Area Css  Style Two-->
<!-- =================================-->
*/

.hero-wallpaper {
    background-color: #0a132e;
    height: 1074px;
    position: relative;
}

.hero-area.style-two {
    margin: 0 98px 0;
    background: url(../images/home-2/hero-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 800px;
    padding: 0;
}

.style-two .hero-content h4 {
    font-size: 18px;
    color: #0a132e;
    font-weight: 600;
    margin: 0 0 9px;
    padding: 0;
}

.style-two .hero-content img {
    margin-right: 11px;
    margin-bottom: 9px;
}

.style-two .hero-content h4:before {
    display: none;
}

.style-two .hero-content h1 {
    font-size: 55px;
    line-height: 55px;
    font-weight: 700;
}

.style-two .hero-content p {
    opacity: 0.702;
    font-size: 18px;
    line-height: 28px;
    color: #0a132e;
    font-weight: 400;
    width: 40%;
    margin: 59px 0 0;
    position: relative;
}

.style-two .line {
    position: relative;
}

.style-two .line:before {
    position: absolute;
    content: "";
    width: 47%;
    height: 1px;
    left: 0;
    top: 35px;
    background: rgba(10, 19, 46, 0.10196078431372549);
}

.style-two .hero-shape {
    position: absolute;
    top: -1px;
    left: 0;
}

.style-two .hero-shape2 {
    position: absolute;
    left: 36%;
    top: 111px;
}

.style-two .hero-social-icon {
    position: absolute;
    left: -70px;
    top: 48%;
}

.hero-social-icon ul li:nth-child(1) {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    transform: rotate(90deg);
    position: relative;
    left: -22px;
    top: -52px;
}

.hero-social-icon ul li:nth-child(1):before {
    position: absolute;
    content: "";
    width: 83px;
    height: 1px;
    left: -98px;
    top: 11px;
    background: rgba(255, 255, 255, 0.2);
}

.style-two .hero-social-icon ul li i {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 40px;
    color: #ffff;
    font-size: 14px;
    margin-bottom: 9px;
    transition: 0.5s;
}

.style-two .hero-social-icon ul li i:hover {
    background: #ffcbb1;
}

.style-two .hero-video {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 61px 39px 40px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.style-two .hero-video a {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #0a132e;
    font-weight: 500;
    font-family: var(--title-fonts);
    display: flex;
    align-items: center;
    gap: 20px;
}

.style-two .hero-video i {
    display: inline-block;
    width: 77px;
    height: 77px;
    border-radius: 39px;
    border: 1px solid #ffcbb1;
    text-align: center;
    line-height: 77px;
    font-size: 20px;
    position: relative;
    color: #fff;
    z-index: 1;
}

.style-two .hero-video i:after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 30px;
    background-color: #ffcbb1;
    z-index: -1;
    margin: auto;
}

.style-two .hero-video p {
    font-size: 18px;
    line-height: 26px;
    color: #0a132e;
    font-weight: 500;
    margin: 0;
    font-family: var(--title-fonts);
}

.hero-single-box {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.hero-box-content h4 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 10px;
}

.hero-box-content p {
    margin: 0;
}

.hero-wallpaper .row.add-margin {
    margin-top: 89px;
}

.hero-wallpaper .hero-team-expt {
    display: flex;
    align-items: center;
    gap: 17px;
    float: right;
}

.hero-wallpaper .hero-team-expt-content h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

.hero-wallpaper .hero-team-expt-content p {
    color: #a4a7b3;
    margin: 8px 0 0;
}

.hero-wallpaper .hero-box-shape {
    position: absolute;
    left: -103px;
    top: -24px;
}

.hero-wallpaper .hero-flower-shape {
    position: absolute;
    left: 41%;
    bottom: -119px;
    z-index: 1;
}


/*
<!-- =================================-->
<!-- spaclub About Area Css  Style Two-->
<!-- =================================-->
*/
.about-area.style-two {
    padding: 120px 0 121px;
    background: #f8f5f0;
}

.style-two .about-thumb {
    position: relative;
    left: -108px;
}



/*
<!-- =================================-->
<!-- spaclub Feature Area Css  Style Two-->
<!-- =================================-->
*/
.featurea-area.style-two {
    position: relative;
}

.featurea-area.style-two .section-title {
    position: relative;
    left: 0;
    position: relative;
    margin: 0 0 38px;
}

.featurea-area.style-two .owl-carousel .owl-item img {
    display: inline-block;
    width: 35%;
}

.featurea-area.style-two .single-feature-box {
    margin: 0 12px 0;
}

.featurea-area.style-two .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.featurea-area.style-two .owl-dot {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(226, 131, 106, 0.5019607843137255);
    margin: 0 3px 0;
}

.featurea-area.style-two .owl-dot.active {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    background: #ffcbb1;
}

.featurea-area.style-two .feature-right {
    position: relative;
    left: 89px;
    top: 0;
}

.featurea-area.style-two .feature-thumb-shape {
    position: absolute;
    top: 37px;
    left: 0;
    animation: rotateme 20s linear infinite;
}

.featurea-area.style-two .feature-thumb-shape2 {
    position: absolute;
    right: 0;
    bottom: 167px;
    animation: bns2 5s linear infinite;
}

.featurea-area.style-two .feature-shape {
    position: absolute;
    left: 0;
    top: 0;
    animation: bns1 3s linear infinite;
}

.featurea-area.style-two .feature-shap2 {
    position: absolute;
    right: 74px;
    top: -132px;
}


/*
<!-- =================================-->
<!-- spaclub Service Area Css  Style Two-->
<!-- =================================-->
*/
.service-area.style-two {
    background: #0a132e;
    border-radius: 20px 20px 0 0;
}

.service-area.style-two .section-title h1 {
    color: #fff;
}

.service-area.style-two .single-service-box {
    text-align: center;
    position: relative;
    margin: 0 14px 0;
}

.service-area.style-two .service-box-content {
    background: #19233F;
    border-radius: 10px 10px 0 0;
    padding: 32px 15px 70px;
    position: relative;
    z-index: 1;
}

.service-area.style-two .service-box-content:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
    z-index: -1;
}

.service-area.style-two .single-service-box:hover .service-box-content:before {
    width: 100%;
    left: 0;
}

.service-area.style-two .service-icon img {
    transition: 0.5s;
    width: 18%;
}

.service-area.style-two .single-service-box:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-area.style-two .service-box-content h4 {
    font-size: 30px;
    color: #ffffff;
    margin: 28px 0 0;
    font-weight: 500;
}

.service-area.style-two .service-box-content p {
    color: #a4a7b3;
    margin: 11px 0 0;
    transition: 0.5s;
}

.service-area.style-two .single-service-box:hover .service-box-content p {
    color: #fff;
}

.service-area.style-two .service-thum img {
    width: 100%;
}

.service-area.style-two .massage-time {
    width: 74px;
    height: 74px;
    border-radius: 37px;
    background-color: #ffcbb1;
    text-align: center;
    position: absolute;
    bottom: 44%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 12px 0 0;
    z-index: 11;
    transition: 0.5s;
}

.service-area.style-two .single-service-box:hover .massage-time {
    background: #1a2340;
}

.service-area.style-two .massage-time h4 {
    font-size: 22px;
    color: #fff;
    margin: 0;
}

.service-area.style-two .massage-time p {
    font-size: 12px;
    color: #fff;
    margin: 0;
    line-height: 16px;
}

.service-area.style-two .owl-carousel .owl-item img {
    display: inline-block;
}

/*
<!-- =================================-->
<!-- spaclub Choose Us Area Css  Style Two-->
<!-- =================================-->
*/
.choose-us-area.style-two {
    background: transparent;
    margin: 0;
}

.choose-us-area.style-two .section-title h1 {
    color: #0a132e;
}

.choose-us-area.style-two .row.add-bg {
    background: #f8f5f0;
    border-radius: 10px;
    padding: 20px 14px;
    margin-left: 0;
    margin-bottom: 27px;
}

.choose-us-area.style-two .choose-us-list-box ul li {
    color: #0a132e;
}

.choose-us-area.style-two .choose-us-thumb {
    position: relative;
    left: -79px;
}

.choose-us-area.style-two .choose-us-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.choose-us-area.style-two .choose-us-conter-content h4 {
    font-size: 42px;
    display: inline-block;
    font-weight: 600;
}

.choose-us-area.style-two .choose-us-conter-content span {
    display: inline-block;
    font-size: 48px;
    opacity: 0.5;
    margin: 0;
}

.choose-us-area.style-two .choose-us-conter-content p {
    font-size: 18px;
    margin: 2px 0 0;
}


/*
<!-- =================================-->
<!-- spaclub Text Area Css  Style Two-->
<!-- =================================-->
*/
.text-section.style-two {
    background: #ffcbb1;
}

.text-section.style-two .marquee-block .content-box h6.title {
    color: #ffff;
}

.text-section.style-two .marquee-block .content-box h6.title img {
    filter: brightness(0) invert(1);
}

/*
<!-- =================================-->
<!-- spaclub Portfolio Area Css  Style Two-->
<!-- =================================-->
*/
.portfolio-area.style-two {
    padding: 120px 13px 110px;
    background: #f8f5f0;
    margin-top: 0;
}

.portfolio-area.style-two .single-port-thumb img {
    width: 100%;
}

.portfolio-area.style-two .single-port-box {
    position: relative;
    margin: 0 15px 77px;
}

.portfolio-area.style-two .port-content {
    display: flex;
    align-items: center;
    gap: 29px;
    background: #fff;
    width: 80%;
    padding: 0 15px 0 0;
    position: absolute;
    bottom: -58px;
    right: 0;
    border-radius: 10px 0 0 10px;
}

.portfolio-area.style-two .port-icon {
    background: #0a132e;
    padding: 29px 34px 29px;
    border-radius: 10px 0 0 10px;
    z-index: 1;
    position: relative;
}

.portfolio-area.style-two .port-icon:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
    border-radius: 10px 0 0 10px;
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-icon:before {
    width: 100%;
}

.portfolio-area.style-two .port-icon img {
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-icon img {
    filter: brightness(0) invert(1);
}

.portfolio-area.style-two .port-title h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffcbb1;
    margin: 0;
    margin-left: 16px;
    margin-bottom: 11px;
    position: relative;
}

.portfolio-area.style-two .port-title h4:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: -12px;
    top: 5px;
    background: #ffcbb1;
    border-radius: 30px;
}

.portfolio-area.style-two .port-title a {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.portfolio-area.style-two .port-title a:hover {
    color: #ffcbb1;
}

.portfolio-area.style-two .port-button a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #ffcbb1;
    text-align: center;
    line-height: 60px;
    color: #ffff;
    border-radius: 5px 0 0 0;
    position: absolute;
    bottom: 60px;
    right: 0;
    opacity: 0;
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-button a {
    opacity: 1;
}

.portfolio-area.style-two .port-button i {
    display: inline-block;
    transform: rotate(-45deg);
}

.portfolio-area.style-two .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 55px;
}

.portfolio-area.style-two .owl-dot {
    position: relative;
    background: rgba(226, 131, 106, 0.5);
    width: 10px;
    height: 10px;
    border-radius: 30px;
    display: inline-block;
    margin: 0 3px 0;
}

.portfolio-area.style-two .owl-dot.active {
    width: 13px;
    height: 13px;
    background: #ffcbb1;
}


/*
<!-- =============================================-->
<!-- spaclub Teastimonial Area Css  Style Two-->
<!-- =============================================-->
*/
.teasti-area.style-two {
    background: url(../images/home-1/teasti-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 115px 0 113px;
    position: relative;
}

.teasti-area.style-two .teasti-content p {
    font-size: 22px;
    line-height: 36px;
    color: #0a132e;
    font-weight: 400;
    font-style: italic;
    width: 64%;
    margin: auto;
    margin-top: 31px;
    margin-bottom: 30px;
}

.teasti-area.style-two .teasti-author-content {
    margin-top: 148px;
}

.teasti-area.style-two .teasti-quote img {
    transition: 0.5s;
    width: 45px !important;
    margin: auto;
}

.teasti-area.style-two .teasti-author-content h4 {
    font-size: 22px;
    margin: 0;
}

.teasti-area.style-two .teasti-author-content p {
    margin: 6px 0 0;
}

.teasti-area.style-two .owl-dots {
    position: absolute;
    bottom: 89px;
    left: 38%;
}

.teasti-area.style-two .owl-dot {
    background: url(../images/home-2/teasti-dotte1.png);
    width: 75px;
    height: 75px;
    display: inline-block;
    margin: 0 14px 0;
}

.teasti-area.style-two .owl-dot.active {
    transform: scale(1.2);
}

.teasti-area.style-two .owl-dot:nth-child(2) {
    background: url(../images/home-2/teasti-dotte2.png);
}

.teasti-area.style-two .owl-dot:nth-child(3) {
    background: url(../images/home-2/teasti-dotte3.png);
}

.teasti-area.style-two .owl-dot:nth-child(4) {
    background: url(../images/home-2/teasti-dotte4.png);
}

.teasti-area.style-two .teasti-shape {
    position: absolute;
    bottom: 21%;
    left: 12%;
    animation: dance 3s alternate infinite;
}

.teasti-area.style-two .teasti-shape-2 {
    position: absolute;
    bottom: 65%;
    right: 10%;
    animation: dance 2s alternate infinite;
}

.teasti-area.style-two .teasti-shape-3 {
    position: absolute;
    top: 9%;
    left: 7%;
}

.teasti-area.style-two .teasti-shape-4 {
    position: absolute;
    bottom: 85px;
    right: 4%;
}

/*
<!-- =============================================-->
<!-- spaclub Team Area Css  Style Two-->
<!-- =============================================-->
*/
.team-area {
    background: #0a132e;
    padding: 120px 0 100px;
    margin: 0 58px 0;
    border-radius: 20px;
}

.team-area .section-title {
    margin-bottom: 56px;
}

.team-area .section-title h1 {
    color: #fff;
}

.team-area .single-team-box {
    background: #182240;
    text-align: center;
    border-radius: 160px 160px 0 0;
    padding: 0 0 34px;
    margin-bottom: 20px;
}

.team-area .team-content h4 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    margin: 28px 0 0;
}

.team-area .team-content p {
    color: #a4a7b3;
    font-weight: 500;
    margin: 5px 0 26px;
}

.team-area .team-social-icon ul li {
    display: inline-block;
}

.team-social-icon ul li i {
    color: #ffff;
    display: inline-block;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    margin: 0 -2px 0;
    transition: 0.5s;
}

.team-social-icon ul li i:hover {
    color: #ffcbb1;
}

.team-area .team-social-icon ul li:nth-child(1) i {
    border-radius: 3px 0 0 3px;
}

.team-area .team-social-icon ul li:nth-child(2) i {
    border-left: transparent !important;
}

.team-area .team-social-icon ul li:nth-child(3) i {
    border-left: transparent !important;
}

.team-area .team-social-icon ul li:nth-child(4) i {
    border-left: transparent !important;
    border-radius: 0 3px 3px 0;
}


/*
<!-- =============================================-->
<!-- spaclub Call Do Actions Area Css  Style Two-->
<!-- =============================================-->
*/

.call-do-action-area {
    background: url(../images/home-2/call-do-action-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 105px 0 120px;
    margin: 0 50px 0;
    position: relative;
}

.call-do-content {
    margin-bottom: 39px;
}

.call-do-content h4 {
    font-size: 42px;
    color: #fff;
    line-height: 41px;
}

.call-do-sahpe {
    position: absolute;
    left: 48%;
    top: 30%;
}


/*inner Pages header style Css*/
.header-area.inner-style {
    border-bottom: 1px solid rgba(242, 228, 215, 0.2);
}

.header-area.inner-style.sticky {
    background: #0a132e !important;
}

.inner-style .header-menu ul {
    display: inline-block;
}

.inner-style .header-button {
    display: inline-block;
    margin-left: 30px;
}

.inner-style .header-menu ul li a {
    color: #ffff;
}

.inner-style .header-menu ul li a:hover {
    color: #ffcbb1;
}

/*inner Style All css*/
.featurea-area.inner-style .section-title {
    left: 0;
    position: relative;
    margin: 0;
    margin-bottom: 55px;
}

.service-area.inner-style {
    margin: 0;
    border-radius: 0;
}


.portfolio-area.style-two.inner-style {
    padding: 120px 88px 80px;
    background: #f8f5f0;
    margin-top: 0;
}

.portfolio-area.style-two.inner-style .port-content {
    width: 90%;
}

.portfolio-area.style-two.inner-style .single-port-box {
    position: relative;
    margin: 0 0 94px;
}

.team-area.inner-style {
    margin: 0;
    border-radius: 0;
}

.faqs-area.inner {
    background: #f8f5f0;
}


/*
<!-- =============================================-->
<!-- spaclub Breadcumb Area Css  Style Two-->
<!-- =============================================-->
*/

.breadcumb-area {
    background: url(../images/home-0/bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 276px 0 183px;
}

.breadcumb-content {
    text-align: center;
}

.breadcumb-content h4 {
    font-size: 50px;
    color: #ffff;
    text-transform: uppercase;
    margin: 0 0 9px;
    font-weight: 500;
}

.breadcumb-content ul li {
    display: inline-block;
    color: #ffff;
    font-family: var(--body-fonts);
    text-transform: uppercase;
}

.breadcumb-content ul li a {
    display: inline-block;
    color: #ffcbb1;
}


/*
<!-- =============================================-->
<!-- spaclub Faqs Area Css  Style Two-->
<!-- =============================================-->
*/
.faqs-area {
    padding: 118px 0 120px;
}

.faqs-area .section-title h4 {
    margin: 0 0 0px 50px;
}

.faqs-area .section-title {
    margin-bottom: 48px;
}

.faqs-container {
    overflow: hidden;
}

.faq-singular {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-top: transparent;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 20px 25px 19px 36px;
    font-size: 18px;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
    background: transparent;
    border: 1px solid rgba(23, 23, 23, 0.1);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: #151515;
}

.faq-singular.active .faq-question {
    background: #ffcbb1;
    color: #fff;
}

.faq-singular .faq-question:before {
    position: absolute;
    content: "+";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
    color: #222;
}

.faq-singular.active .faq-question:before {
    content: "-";
    font-size: 30px;
    color: #fff;
}

.faq-answer {
    display: none;
    padding: 21px 40px 25px;
}

/*
<!-- ========================================-->
<!-- spaclub Contact Area Css-->
<!-- ========================================-->*/
.inner-style.contact-area {
    padding: 120px 0 120px;
}

.inner-style.contact-area .section-title {
    margin-bottom: 41px;
}

.inner-style.contact-area .section-title p {
    margin: 0;
    margin-top: 21px;
    width: 90%;
}

.inner-style .row.add-backgroun {
    background-color: #f8f6f3;
}

.inner-style .single-contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 41px;
    position: relative;
}

.inner-style .single-contact-box:before {
    position: absolute;
    content: "";
    width: 95%;
    height: 1px;
    left: 5px;
    bottom: -19px;
    background: #6161612b;
}

.inner-style .single-contact-box:last-child:before {
    background: transparent;
}

.inner-style .contact-icon i {
    background: #ffff;
    color: #ffcbb1;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    display: inline-block;
}

.inner-style .contact-title h4 {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: var(--body-fonts);
}

.inner-style .contact-title p {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
    line-height: 32px;
}

.inner-style .single-contact-form {
    background-color: #272727;
    padding: 42px 53px 60px;
    text-align: center;
}

.inner-style .contact-content h4 {
    font-size: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 26px;
}

.inner-style .single-input-box input {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #ffff;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 11px;
    padding: 0 21px;
}

.inner-style .single-input-box input::placeholder {
    color: #acacac;
}

.inner-style .single-input-box select {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #acacac;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    padding: 0 19px;
    margin-top: 5px;
    text-transform: capitalize;
}

.inner-style .single-input-box textarea {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #acacac;
    outline: 0;
    width: 100%;
    height: 120px;
    position: relative;
    padding: 9px 19px;
    margin-top: 17px;
}

.inner-style .single-input-box textarea::placeholder {
    color: #acacac;
}

.inner-style .single-input-box button {
    background: #ffcbb1;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
    width: 100%;
    border: transparent;
    padding: 16px 0;
    margin-top: 13px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.inner-style .single-input-box button:hover {
    color: #ffcbb1;
}

.inner-style .single-input-box button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.inner-style .single-input-box button:hover:before {
    width: 100%;
    left: 0;
}

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



/*
<!-- ========================================-->
<!-- spaclub Service Details Area Css-->
<!-- ========================================-->*/

.service-details-area {
    padding: 117px 0 100px;
}

.service-details-area .section-title {
    margin-bottom: 41px;
}


.single-service-details-box {
    background-color: #f2e4d7;
    padding: 12px 40px 30px;
}

.serive-details-box-content h4 {
    font-size: 32px;
    color: #151515;
    font-weight: 600;
    margin: 22px 0 13px;
}

.serive-details-box-content p {
    margin: 0 0 29px;
}

.serive-details-box-content h3 {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    border-bottom: 1px solid #11111130;
    margin-bottom: 19px;
    padding-bottom: 21px;
    font-family: var(--body-fonts);
}

.serive-details-box-content h3:last-child {
    border: transparent;
}

/* .service-details-area .project-button.style-two {
     margin-top: 71px; 
} */

.service-details-title h6 {
    font-size: 16px;
    color: #f68043;
    font-weight: 500;
}

/* .service-details-title h4 {
    font-size: 40px;
    color: #1e1e1e;
    font-weight: 500;
    margin: 7px 0 15px;
} */

.service-details-title p {
    width: 93%;
}

h4.margin {
    margin-top: 51px;
}

.service-details-thumb img {
    width: 100%;
}

.service-details-area .row.add-margin {
    margin-top: 100px;
}

.service-details-area .row.add-bg {
    background-color: #f9f4ef;
    padding: 63px 62px 75px;
    margin-top: 85px;
}

.service-box-item h4 {
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-box-item ul li i {
    font-size: 21px;
    color: #ffcbb1;
    padding-right: 7px;
    position: relative;
    top: 5px;
}

.service-box-item ul li {
    line-height: 38px;
}

.single-service-dtl-box {
    border: 1px solid rgba(21, 21, 21, 0.1);
    margin-bottom: 20px;
}

.servic-dtl-thumb img {
    width: 100%;
}

.service-dtl-content {
    padding: 26px 34px 34px;
}

.service-dtl-content h4 {
    font-size: 32px;
    color: #151515;
    font-weight: 600;
    margin: 0 0 13px;
}

.service-dtl-content a {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
    background: #ffcbb1;
    padding: 6px 28px;
    border-radius: 30px;
    margin-top: 11px;
}



/*
<!-- ========================================-->
<!-- spaclub Portfolio Details Area Css-->
<!-- ========================================-->*/

.portfolio-details-area {
    padding: 119px 0px 63px;
}

.portfolio-details-thumb img {
    width: 100%;
    padding-bottom: 60px;
}

.port-details-content h4 {
    font-size: 16px;
    color: #ffcbb1;
    font-weight: 500;
    background: #F8F1EB;
    display: inline-block;
    padding: 8px 12px;
    text-transform: uppercase;
    border-radius: 5px;
}

.port-details-content h1 {
    font-size: 50px;
    color: #1e1e1e;
    font-weight: 500;
    margin: 12px 0 18px;
}

.port-details-content p {
    width: 80%;
    margin: 0 0 31px;
}

.port-details-content ul li {
    height: 40px;
}

.port-details-content ul li i {
    display: inline-block;
    font-size: 22px;
    color: #ffcbb1;
    position: relative;
    top: 3px;
    margin-right: 6px;
}

.single-port-info-box {
    background: #f2e4d7;
    padding: 36px 40px 31px;
}

.single-port-info-box h4 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 600;
    margin: 0 0 14px;
}

.single-port-info-box strong {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: var(--body-fonts);
}

.single-port-info-box span {
    display: inherit;
    line-height: 32px;
}

.port-social-icon {
    border-top: 1px solid #22222226;
    padding: 20px 0 0px;
    margin-top: 20px;
}

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

.port-social-icon ul li i {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid rgba(21, 21, 21, 0.15);
    text-align: center;
    font-size: 14px;
    line-height: 32px;
    display: inline-block;
    color: #111;
    transition: 0.5s;
}

.port-social-icon ul li i:hover {
    background: #ffcbb1;
    color: #fff;
}

.portfolio-details-area .row.add-margin {
    padding-top: 80px;
    border-top: 1px solid #1111;
    margin-top: 68px;
}



/*
<!-- ========================================-->
<!-- spaclub Blog Details Area Css-->
<!-- ========================================-->*/


.blog-details-area {
    padding: 118px 0 122px;
}

.blog-details-thumb img {
    width: 100%;
}

.blog-details-content {
    margin-top: 35px;
}

.blog-details-area .meta-blog ul li {
    display: inline-block;
    color: #616161;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    margin-right: 4px;
}

.blog-details-title a {
    display: inline-block;
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: var(--title-fonts);
    padding-top: 20px;
}

.blog-details-desc p {
    width: 97%;
    margin: 20px 0 27px;
}

.blog-details-title h4 {
    font-size: 28px;
    margin-bottom: 14px;
    margin-top: 48px;
}

.blog-details-rules-item {
    margin-top: 34px;
}

.blog-details-rules-item ul li {
    color: #1e1e1e;
    font-size: 16px;
    margin-bottom: 14px;
}

.blog-details-rules-item ul li i {
    color: #ffcbb1;
    font-size: 16px;
    margin-right: 9px;
}

.blog-details-thumb-2 img {
    width: 100%;
    margin-top: 39px;
    margin-bottom: 8px;
}

.row.akta-boder-add-korlam {
    border-top: 1px solid #22222214;
    padding-top: 26px;
    border-bottom: 1px solid #22222214;
    padding-bottom: 26px;
    margin-bottom: 66px;
}

.blog-details-tag ul li {
    display: inline-block;
    color: #101010;
    font-size: 20px;
    font-family: var(--fonts-title);
    margin-right: 13px;
    font-weight: 600;
}

.blog-details-tag ul li a {
    display: inline-block;
    color: #616161;
    font-size: 15px;
    font-family: var(--fonts-body);
    border: 2px solid #f8f6f3;
    padding: 2px 20px;
    transition: 0.5s;
}

.blog-details-tag ul li a:hover {
    background: #ffcbb1;
    color: #fff;
}

.blog-details-social {
    text-align: right;
}

.blog-details-social ul li {
    display: inline-block;
    color: #101010;
    font-size: 20px;
    font-family: var(--fonts-title);
    font-weight: 600;
}

.blog-details-social ul li a {
    display: inline-block;
    color: #1e1e1e;
    font-weight: 400;
    font-family: var(--fonts-title);
    text-transform: uppercase;
    font-size: 16px;
    margin-left: 14px;
    transition: 0.5s;
    position: relative;
}

.blog-details-social ul li a:hover {
    color: #ffcbb1;
    ;
}

.blog-details-social ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    bottom: 2px;
    background: #C29D68;
    transition: 0.5s;
}

.blog-details-social ul li a:hover:before {
    width: 100%;
}

.blog-related-box {
    display: flex;
    background: #f8f6f3;
    align-items: center;
    padding: 30px 21px 31px 70px;
    gap: 19px;
}

.blog-related-box.style-two {
    text-align: right;
    padding: 30px 63px 31px 21px;
}

.blog-related-content a {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.blog-related-content p {
    font-size: 14px;
    margin: 0;
}


/* Comment CSS */

.blog-details-comment-title h4 {
    font-size: 32px;
    margin: 83px 0 28px;
}

.blog-details-comment {
    margin-bottom: 19px;
    position: relative;
    border: 1px solid #22222214;
    padding: 29px 29px 25px;
}

.blog-details-comment.style-two {
    margin-left: 105px;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-content {
    overflow: hidden;
}

.blog-details-comment-content h2 {
    font-size: 20px;
    margin-top: 0;
    display: inline-block;
    font-weight: 500;
    margin-right: 30px;
}

.blog-details-comment-content p {
    font-size: 16px;
    margin: 13px 0 0;
}

.blog-details-comment-reply {
    position: absolute;
    right: 22px;
    top: 21px;
}

.blog-details-comment-reply a {
    background: #ffcbb1;
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}

.blog-details-comment.reply {
    margin-left: 70px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 22px;
}

.blog-details-area .contact-input-box input {
    background: #f8f8f8;
    border: transparent;
    width: 100%;
    height: 60px;
    padding: 22px;
    outline: 0;
    margin-bottom: 11px;
}

.blog-details-area .contact-input-box textarea {
    background: #f8f8f8;
    border: transparent;
    width: 100%;
    height: 170px;
    padding: 12px 22px 0;
    outline: 0;
    margin-top: 11px;
    margin-bottom: 20px;
}

.input-check-box span {
    font-size: 15px;
    margin-left: 7px;
}

.blog-details-submi-button button {
    background: #ffcbb1;
    color: #fff;
    text-transform: uppercase;
    border: transparent;
    padding: 12px 26px;
    font-size: 15px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border: 1px solid #ffcbb1;
}

.blog-details-submi-button button:hover {
    color: #ffcbb1;
}

.blog-details-submi-button button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
}

.blog-details-submi-button button:hover:before {
    width: 100%;
    left: 0;
}


/*Blog-details-sidbar*/

.widget_search {
    padding: 13px 40px 37px;
    border-radius: 4px;
    margin-bottom: 30px;
    background: #f2e4d7;
}

.widget_search form {
    position: relative;
    margin-top: 25px;
}

.widget_search input {
    border-radius: 4px;
    padding-left: 20px !important;
    height: 60px;
    width: 100% !important;
    position: relative;
    color: #012549;
    outline: 0 !important;
    border: transparent !important;
}


button.icons {
    border: 0;
    font-size: 16px;
    position: absolute;
    right: 14px;
    top: 18px;
    color: #1e1e1e;
    background: transparent;
    opacity: 0.7;
}


/* Sidber Recent Post */

.widget-categories-box {
    background: #f2e4d7;
    padding: 21px 37px 15px;
    margin-bottom: 32px;
}

.categories_title h4 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 42px;
    position: relative;
}

.categories_title h4:before {
    position: absolute;
    content: "";
    width: 55px;
    height: 1px;
    left: 0;
    bottom: -6px;
    background: #1e1e1e;
}

.sidber-widget-recent-post {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.recent-widget-content a {
    transition: 0.5s;
    color: #101010 !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-fonts);
}

.sidber-widget-recent-post:hover .recent-widget-content a {
    color: #ffcbb1 !important;
}

.recent-widget-content p {
    font-size: 14px;
    margin: 0;
}

.widget-catefories-list ul li {
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    margin-bottom: 11px;
    padding-bottom: 14px;
}

.widget-catefories-list ul li:last-child {
    border: transparent;
}

.widget-catefories-list ul li a {
    display: inline-block;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
    font-size: 18px;
    transition: 0.5s;
}

.widget-catefories-list ul li a:hover {
    color: #ffcbb1;
}

.widget-catefories-list ul li i {
    display: inline-block;
    font-size: 14px;
    margin-right: 9px;
    transition: 0.5s;
}

.widget-catefories-list ul li a:hover i {
    color: #ffcbb1;
}

.widget-catefories-tags a {
    display: inline-block;
    color: #101010;
    font-weight: 500;
    font-family: var(--title-fonts);
    background: #fff;
    padding: 6px 19px;
    margin: 6px 3px;
    position: relative;
    z-index: 1;
}

.widget-catefories-tags a:hover {
    color: #fff;
}

.widget-catefories-tags a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    transition: 0.5s;
    z-index: -1;
}

.widget-catefories-tags a:hover:before {
    width: 100%;
    left: 0;
}



/*
<!-- ========================================-->
<!-- spaclub Blog List Area Css-->
<!-- ========================================-->*/

.single-list-area.style-two {
    padding: 119px 0 54px;
}

.single-list-area.style-two .section-title {
    margin-bottom: 40px;
}

.single-list-area.style-two .style-two.project-button a {
    border: 1px solid rgba(21, 21, 21, 0.2);
    background: transparent;
    color: var(--secondary-color);
}

.single-list-area.style-two .style-two.project-button a:hover {
    color: #fff;
}

.style-two .single-blog-box {
    text-align: center;
}

.style-two .single-blog-thumb {
    overflow: hidden;
}

.style-two .single-blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.style-two .single-blog-box:hover .single-blog-thumb img {
    transform: scale(1.2);
}

.style-two .blog-content {
    background: #fff;
    padding: 28px 38px 25px;
}

.style-two .meta-blg {
    margin-bottom: 12px;
}

.style-two .meta-blg span {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px 19px;
    position: relative;
}

.style-two .meta-blg span:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 9px;
    top: 9px;
    left: -14px;
    background: #ffcbb1;
}

.style-two .blog-content a {
    display: inline-block;
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: var(--secondary-color);
    transition: 0.5s;
}

.style-two .blog-content a:hover {
    color: #ffcbb1;
}

/*
<!-- ========================================-->
<!-- spaclub Blog Grid Area Css-->
<!-- ========================================-->*/
.blog-grid-area {
    padding: 118px 0 88px;
}











/*
<!-- ============================================================== -->
<!-- spaclub Scrollup Button Css  -->
<!-- ============================================================== -->*/

/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #ffcbb1;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: #c19d68;
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: #ffcbb1;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}




/* Hide mobile header by default (will show on mobile) */
.mobile-header {
    display: none;
}

/* Mobile Header Styles */
@media only screen and (max-width: 1024px) {
  


    .video-area {
    background: url(../images/home-1/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 290px 0 290px;
    margin: 0 63px 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
/* .first img{
    display: none;
} */
.service-details-area
{
    padding-top: 0px!important
    ;
}
    /* Hide desktop header completely */
    .top-headar-area,
    .header-area {
        display: none !important;
    }

    .hero-content h1 span {
        margin-top: 11px;
    }

    /* Show mobile header */
    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-logo img {
        height: 30px;
        width: auto;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-call {
        color: #000;
        font-size: 18px;
    }

    .mobile-menu-toggle {
        font-size: 20px;
        cursor: pointer;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-close {
        text-align: right;
        padding: 15px;
        font-size: 22px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        font-weight: 500;
    }

    .mobile-menu-dropdown>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        background: #f9f9f9;
    }

    .mobile-submenu li a {
        padding-left: 30px;
        font-size: 14px;
    }

    .mobile-menu-dropdown.active .mobile-submenu {
        display: block;
    }

    .mobile-menu-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .mobile-menu-footer {
        padding: 20px;
        text-align: center;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-social a {
        color: #df856c;
        font-size: 18px;
    }

    .mobile-appointment-btn {
        display: inline-block;
        padding: 10px 20px;
        background: #0a132e;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
    }

    /* .mobile-menu-overlay.active {
     display: block; 
    } */

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #fff !important;
        z-index: 1001;
        /* Higher than overlay */
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile View (up to 767px) */
@media only screen and (max-width: 767px) {
    .ppp {
        padding-top: 20px !important;
    }
    .row.align-items-center {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .col-lg-8,
    .col-lg-4,
    .col-md-12 {
        width: 100%;
        padding: 0;
    }

    .section-title {
        /* margin-bottom: 25px;
        padding-bottom: 15px; */
        position: relative;
    }

    .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        /* background: linear-gradient(90deg, #f3a2a2, #f86d6d); */
    }

    .section-title h4 {
        font-size: 20px;
        color: #f86d6d;
        letter-spacing: 2px;
        margin-bottom: 12px;
        /* text-transform: uppercase; */
    }

    .section-title h1 {
        font-size: 26px;
        margin-bottom: 8px;
        font-weight: 600;
        color: #222;
    }

    .section-title h1:last-of-type {
        margin-bottom: 0;
    }

    .project-button {
        margin-top: 10px;
    }

    .project-button a {
        display: inline-flex;
        align-items: center;
        padding: 12px 25px;
        font-size: 15px;
        font-weight: 500;
        color: white;
        background: linear-gradient(135deg, #f86d6d, #fd4747);
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(253, 71, 71, 0.3);
        transition: all 0.3s ease;
    }

    .project-button a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(253, 71, 71, 0.4);
    }

    .project-button a i {
        margin-left: 8px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .project-button a:hover i {
        transform: translateX(3px);
    }


    .hero-area {
        padding-top: 0px;
    }

    .featurea-area {
        padding-top: 60px;
    }

    .about-area {
        padding-bottom: 0px;
        ;
    }

    .portfolio-area {
        padding-bottom: 0px;
    }


    .blog-area {
        padding-top: 60px;
    }

    .pricing-area {
        padding-top: 60px;
    }

    .Services {
        display: none;
    }

    .massage-time {
        display: none;
    }

    .inner-style.contact-area {
        padding: 0px;
    }
}



/* Mobile Footer - Hidden by default */
.mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.98); */
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 0px;
    padding: 5px 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
}

.footer-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
}

.whatsapp-btn {
    color: #000;
    background: #e2836a;
    width: 210px;
    border: 2px solid black;
    border-right: none;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.call-btn {
    color: #000;
    background: #e2836a;
    width: 210px;
      border: 2px solid black;
}

.call-btn:hover {
    background: rgba(0, 122, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

/* Show only on mobile devices */
@media (max-width: 767px) {

    .footer-buttons{
        padding-bottom: 30px;
    }

    
    body {
        padding-bottom: 35px;
        /* Space for footer */
    }

    .mobile-footer {
        display: flex;
    }
}

/* Demo content styling */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #222;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}


/* Desktop Floating Buttons */
.contact-float {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
    width: 28px;
    height: 28px;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1fba58;
}

.btn-call {
    background: #007AFF;
}

.btn-call:hover {
    background: #0069d9;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.contact-btn:hover .btn-tooltip {
    opacity: 1;
}

/* Mobile Footer */
.contact-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}




.footer-icon {
    width: 22px;
    height: 22px;
    margin: 6px;
}

.footer-whatsapp {
    /* color:; */
    background: #f8f5f0;
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-call {
    /* color: #f8f5f0; */
    background: #f8f5f0;
}

.footer-call:hover {
    background: rgba(0, 122, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

/* Responsive Visibility */
@media (min-width: 768px) {
    .contact-float {
        display: flex;
    }

    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 20x;
    }

    .contact-footer {
        display: flex;
    }

    .footar-contact .contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px!important;
  margin: 0!important;
}

.footar-contact .contact-item img {
  width: 20px!important;
  height: 20px!important;
  object-fit: contain!important;
}

}

/* Demo Content */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #222;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}


#sticky-header.sticky .header-menu ul li a {
    color: #0a132e;
    /* Change this to any color you want after scroll */
}

#sticky-header.sticky .header-contact-button h4 {
    color: #0a132e;
}


@media (max-width: 1023px) {
  #sticky-header {
    display: none;
  }
}
@media (max-width: 1023px) {
  .top-headar-area {
    display: none;
  }
}



/* General styling */
.add-bg {
  padding: 40px 20px;
  background-color: #f9f2ec; /* Soft background similar to image */
  font-family: 'Arial', sans-serif;
}

.service-box-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-box-item h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-box-item p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.service-box-item ul {
  list-style: none;
  padding-left: 0;
}

.service-box-item ul li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

.service-box-item ul li i {
  color: #f27b6a; /* Red check icon */
}

/* Responsive layout */
@media (min-width: 992px) {
  .add-bg {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-left: 120px;
    padding-right: 120px;
  }

  .add-bg .col-lg-6 {
    flex: 1;
  }
}


.service-details-area {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.service-details-area .row {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: stretch;
}

/* Image section */
.service-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-height: 400px;
}

/* Info box */
.service-info-box {
  flex: 1;
  background-color: #f9f2ec;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
}

.service-info-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-info-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.service-info-content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  color: #333;
}

.service-info-content h3 span {
  color: #777;
  font-weight: normal;
}

.project-button.style-two a {
  display: inline-block;
  margin-top: 25px;
  background-color: #f27b6a;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-button.style-two a:hover {
  background-color: #d6554a;
}

/* Responsive fix */
@media (max-width: 991px) {
  .service-details-area .row {
    flex-direction: column;
  }

  .service-image-wrapper img {
    max-height: none;
  }
}


/* Global styles */
.add-margin {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Service details text */
.service-details-title {
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.service-details-title h6 {
  color: #0a132e;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* .service-details-title h4 {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
} */

.service-details-title ul.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
}

.benefits-list li i {
  color: #28a745;
  margin-right: 10px;
}

.service-details-title .h5m {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  color: #0a132e;
}

.service-details-title p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Image section */
.service-details-thumb {
  position: relative;
  padding: 20px;
}

.service-details-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.results-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .service-details-title {
    padding: 10px 15px;

  }

  .service-details-title h4 {
    font-size: 22px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .service-details-title .h5m {
    font-size: 18px;
  }

  .service-details-title p {
    font-size: 14px;
  }

  .results-caption {
    font-size: 13px;
  }
}


@media screen and (min-width: 992px) {
  .service-details-title {
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    margin-left: 90px;
  }

  /* Image section */
  .service-details-thumb {
    position: relative;
    padding: 20px;
    padding-right: 110px;
  }
}



/* Phone View - Default (up to 767px) */

.add-margin {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 16px;
}

.service-details-title {
  text-align: left;
}

.service-details-title h6 {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
/* 
.service-details-title h4 {
  font-size: 22px;
  color: #0a132e;
  font-weight: 700;
  margin-bottom: 16px;
} */

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.benefits-list i {
  color: #20c997;
  font-size: 16px;
  margin-right: 8px;
}

.service-details-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.h5m {
  font-size: 17px;
  font-weight: 600;
  color: #0a132e;
  margin: 24px 0 10px;
}

.service-details-thumb {
  position: relative;
  margin-top: 30px;
}

.service-details-thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.space-bottom{
  margin-bottom: 30px;
}


@media only screen and (max-width: 767px) {
  .benefits-list li {
    font-size: 16px;
  }
}


@media only screen and (min-width: 992px) {
  .ppssddd {
    padding-left: 120px;
    padding-right: 120px;
  }
}


@media only screen and (max-width: 767px) {
  .service-details-area .row {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footar-contact {
    display: none;
  }
}

  @media (max-width: 767px) {
    .footer-buttons {
      justify-content: center !important;
    }

  }
  @media (max-width: 767px) {
    .footer-bottom-links ul {
        padding: 10px;
      justify-content: center !important;
    }
  }

  @media (min-width: 992px) {
  .h1cust {
    font-size: 40px;
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .h1cust {
    font-size: 24px;
    margin-top: 10px;
  }
}


@media (max-width: 767px) {
  .mb-phone {
    padding-bottom: 20px; /* or any value you prefer */
  }
}




.google-review-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    width: fit-content;
    transition: transform 0.3s;
}

.google-review-box:hover {
    transform: translateY(-3px);
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 20px;
    color: #000;
}

.review-text {
    display: flex;
    flex-direction: column;
    color: #333;
}

.review-count {
    font-size: 1rem;
    font-weight: 500;
}

.stars i {
    color: #fbbc04; /* Yellow Google star color */
    margin-right: 2px;
    font-size: 1.1rem;
}


@media only screen and (max-width: 767px) {
  .google-review-box {
    margin-left: 40px;
  }
}



@media (max-width: 767px) {
  .mb-mar {
    margin-bottom: 20px; /* or any value you prefer */
  }
}



@media (min-width: 992px) {
  .portfolio-area {
    padding-bottom: 380px; /* 48px */
  }
}


/* @media (min-width: 992px) {
  .image_load {
    height: 700px !important;
  }
} */


.why-choose-area {
  padding: 70px 0;
  background: var(--white);
}
.section-title h1 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--secondary-color);
}
.section-title h4 {
  color: #ffcbb1;
  font-weight: 600;
}
.single-feature-box {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.single-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.feature-icon {
  background: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}
.feature-icon svg {
  width: 50px;
  height: 50px;
  fill: #ffcbb1;
}
.single-feature-box:hover .feature-icon {
  background: #ffcbb1;
}
.single-feature-box:hover .feature-icon svg {
  fill: var(--white);
}
.feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--secondary-color);
}
.feature-content p {
  font-size: 16px;
  color: #555;
}
.founder-area {
  padding: 90px 0;
  background: linear-gradient(135deg, #fffaf9, #fdf3f0);
}
.founder-content h4.sub-title {
  color: #ffcbb1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.founder-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.founder-content h5 {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
.founder-btn {
  display: inline-block;
  background: #ffcbb1;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.founder-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}
.founder-img img {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
  max-height:500px;
}
.founder-img img:hover {
  transform: scale(1.05);
}
        .cta-container {
            width: 100%;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .cta1 {
                background: linear-gradient(rgb(245 152 126 / 38%), rgb(236 152 124 / 33%)), url(https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80) center / cover no-repeat;
            padding: 80px 40px;
            text-align: center;
            position: relative;
        }
        
        .cta2 {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta3 {
            color: #ffcbb1;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 16px;
            margin-bottom: 15px;
            display: block;
        }
        
        .cta4 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--white);
        }
        
        .cta5 {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white);
        }
        
        .cta6 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .cta7 {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            max-width: 220px;
        }
        
        .cta8 {
            color: #ffcbb1;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .cta9 {
            text-align: left;
            font-size: 15px;
            font-weight: 500;
            color: var(--white);
        }
        
        .cta10 {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta11 {
            background-color: #ffcbb1;
            color: var(--white);
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta11:hover {
            background-color: #d1755d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .cta12 {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 14px 33px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta12:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .cta13 {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            opacity: 0.8;
            color: var(--white);
        }
        
        .cta14 {
            color: #ffcbb1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .cta1 {
                padding: 60px 30px;
            }
            
            .cta4 {
                font-size: 32px;
            }
            
            .cta5 {
                font-size: 16px;
            }
            
            .cta6 {
                gap: 15px;
            }
            
            .cta7 {
                padding: 12px 15px;
                max-width: 100%;
                flex: 1;
                min-width: 160px;
            }
            
            .cta10 {
                flex-direction: column;
                align-items: center;
            }
            
            .cta11, .cta12 {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .cta1 {
                padding: 50px 20px;
            }
            
            .cta4 {
                font-size: 28px;
            }
            
            .cta7 {
                min-width: 100%;
            }
        }
          .service-content1 h4 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        color: #2a2829 !important;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    /* Normal desktop :1400px. */
@media (min-width: 1400px) and (max-width: 1600px) {

    .header-button a {
        padding: 13px 20px;
    }

    .header-menu ul li {
        margin-left: 22px;
    }

    .hero-thumb {
        left: -100px;
    }

    .hero-thumb-2 {
        right: -128px;
    }

    .about-shape {
        top: -148px;
    }

    .choose-us-area {
        margin: 0 11px 0;
    }

    .portfolio-content a {
        font-size: 22px;
        margin-top: 8px;
    }

    .pricing-shape {
        right: 82px;
    }

    .footer-shape-one {
        left: -58px;
    }

    /*home Two All Responsive*/
    .header-area.style-two {
        padding-right: 53px;
    }



    .header-area.style-two .header-menu ul li {
        margin-left: 19px;
    }

    .style-two .header-menu {
        margin-left: 20px;
    }

    .style-two .header-logo {
        left: -17px;
    }

    .hero-area.style-two {
        margin: 0 72px 0;
    }

    .style-two .hero-social-icon {
        left: -57px;
    }

    .service-area.style-two {
        margin: 0 20px 0;
    }

    .portfolio-area.style-two .port-content {
        width: 90%;
        gap: 14px;
    }

    .portfolio-area.style-two .port-title a {
        font-size: 17px;
    }

    .teasti-area.style-two .teasti-shape-3 {
        left: 0%;
    }

    .team-area {
        margin: 0 22px 0;
    }

    .call-do-action-area {
        margin: 0 9px 0;
    }

    .portfolio-area.style-two.inner-style {
        padding: 120px 60px 80px;
    }





}


/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1399px) {

    .header-area {
        padding: 0 26px 0;
    }

    .header-right {
        gap: 6px;
    }

    .header-button a {
        padding: 11px 26px;
        font-size: 16px;
    }

    .header-menu ul li {
        margin-left: 17px;
    }

    .hero-thumb {
        left: -155px;
    }

    .hero-thumb-2 {
        right: -222px;
    }

    .featurea-area .section-title {
        left: 23px;
    }

    .section-title h1 {
        font-size: 33px;
        line-height: 30px;
    }

    .about-shape {
        top: -148px;
    }

    .about-thumb {
        left: -125px;
    }

    .about-content h4 {
        font-size: 17px;
        line-height: 28px;
    }

    .service-area {
        margin: 0 0 0;
    }

    .choose-us-area {
        margin: 0 0 0;
    }

    .choose-us-list-box ul li {
        font-size: 19px;
    }

    .portfolio-area {
        padding: 388px 0 120px;
    }

    .portfolio-content a {
        font-size: 20px;
        margin-top: 8px;
    }

    .pricing-shape-2 {
        left: 81px;
        top: 0%;
    }

    .pricing-shape {
        right: 82px;
    }

    .blog-content a {
        font-size: 17px;
        line-height: 27px;
    }

    .blog-date {
        top: 43%;
        left: 14px;
    }

    .subscribe-content h4 {
        font-size: 34px;
        line-height: 39px;
    }

    .footer-shape-one {
        left: -58px;
    }

    .footar-working-list ul li {
        padding-right: 21px;
    }


    /*Home Two All Responsive*/
    .header-contact-button {
        display: none;
    }

    .header-area.style-two {
        padding-right: 67px;
    }

    .style-two .header-menu {
        margin-left: 0;
    }

    .style-two .header-menu ul li {
        margin-left: 8px;
    }

    .header-area.style-two:before {
        width: 7.2%;
    }

    .hero-area.style-two {
        margin: 0 85px 0;
    }

    .style-two .hero-content h1 {
        font-size: 45px;
        line-height: 48px;
    }

    .style-two .about-thumb {
        left: -203px;
    }

    .service-area.style-two .massage-time {
        bottom: 39%;
    }

    .choose-us-area.style-two .choose-us-thumb {
        left: -125px;
    }

    .portfolio-area.style-two {
        padding: 120px 0 110px;
    }

    .portfolio-area.style-two .port-content {
        width: 98%;
        gap: 20px;
    }

    .portfolio-area.style-two .port-title a {
        font-size: 17px;
    }

    .teasti-area.style-two .teasti-shape-3 {
        top: 1%;
        left: -1%;
    }

    .team-area {
        margin: 0 16px 0;
    }

    .team-thumb img {
        width: 100%;
    }

    /*inner Pages Css Responsive*/

    .service-details-area .service-thumb img {
        width: 100%;
    }

    .single-service-details-box {
        padding: 22px 28px 26px;
    }

    .service-details-area .project-button.style-two {
        margin-top: 35px;
    }

    .blog-related-box {
        padding: 30px 21px 31px 23px;
    }

    .blog-related-box.style-two {
        padding: 30px 19px 31px 21px;
    }

    .recent-widget-content a {
        font-size: 13px;
        line-height: 26px;
    }

    .portfolio-area.style-two.inner-style {
        padding: 120px 0 80px;
    }

    .inner-style .row.add-backgroun {
        padding: 82px 18px 69px;
    }

    .blog-related-box {
        padding: 30px 21px 31px 23px;
    }

    .blog-related-box.style-two {
        padding: 30px 19px 31px 21px;
    }

    .recent-widget-content a {
        font-size: 13px;
        line-height: 26px;
    }

    .widget-catefories-tags a {
        margin: 6px 1px;
    }

    .blog-details-title a {
        font-size: 29px;
    }







}




/* Normal desktop :1300px. */
@media (min-width: 1300px) and (max-width: 1399px) {

    .header-menu ul li {
        margin-left: 18px;
    }

    .header-area.style-two {
        padding-right: 70px;
    }

    .header-button a {
        padding: 11px 27px;
        font-size: 16px;
    }

    .style-two .header-menu ul li {
        margin-left: 17px;
    }








}



/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1199px) {

    .top-headar-area {
        padding: 11px 6px 11px;
    }

    .top-info ul li {
        margin-right: 27px;
    }

    .top-info ul li:before {
        right: -16px;
    }

    .header-area {
        padding: 0 4px 0;
    }

    .header-right {
        gap: 6px;
    }

    .header-contact-button h4 {
        display: none;
    }

    .header-menu {
        left: 40px;
        position: relative;
    }

    .header-button a {
        padding: 11px 14px;
        font-size: 14px;
    }

    .header-menu ul li {
        margin-left: 11px;
    }

    .hero-thumb {
        left: -245px;
    }

    .hero-thumb-2 {
        display: none;
    }

    .hero-content h1 {
        font-size: 60px;
        line-height: 58px;
    }

    .hero-shape {
        top: 11px;
        right: -207px;
    }

    .hero-content p {
        width: 88%;
    }

    .featurea-area .section-title {
        left: 0;
    }

    .single-feature-box {
        padding: 40px 5px 18px;
    }

    .feature-content h4 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .section-title h4 {
        margin: 0 0 4px 51px;
    }

    .section-title h1 {
        font-size: 25px;
        line-height: 26px;
    }

    .about-shape {
        top: -148px;
    }

    /* .about-thumb {
        left: -204px;
    } */

    .section-title p {
        width: 95%;
    }

    .about-content h4 {
        font-size: 14px;
        line-height: 24px;
    }

    .about-box-icon {
        margin-right: 10px;
        margin-top: 2px;
    }

    .service-area {
        margin: 0 0 0;
    }

    .choose-us-area {
        margin: 0 0 0;
    }

    .choose-us-list-box ul li {
        font-size: 17px;
    }

    .portfolio-area {
        padding: 388px 0 120px;
    }

    .portfolio-content a {
        font-size: 15px;
        margin-top: 8px;
    }

    .single-pricing-img-box {
        padding: 47px 19px 306px;
    }

    .single-pricing-box {
        padding: 28px 23px 39px;
    }

    .pricing-shape-2 {
        left: 81px;
        top: 0%;
    }

    .pricing-shape {
        right: 82px;
    }

    .blog-content a {
        font-size: 14px;
        line-height: 23px;
    }

    .blog-date {
        top: 37%;
        left: 14px;
    }

    .subscribe-content h4 {
        font-size: 26px;
        line-height: 30px;
    }

    .footer-shape-one {
        left: -58px;
    }

    .footar-working-list ul li {
        padding-right: 0;
        font-size: 14px;
    }

    .footer-shape-two {
        right: -117px;
    }

    /*Home Two All Responsive*/

    .header-area.style-two {
        padding-right: 69px;
    }

    .style-two .header-menu {
        margin-left: 0;
        text-align: center;
    }

    .style-two .header-menu ul li {
        margin-left: 12px;
    }

    .header-area.style-two:before {
        width: 8.7%;
    }

    .style-two .header-logo {
        left: -9px;
    }

    .style-two .header-right {
        left: -53px;
    }

    .hero-area.style-two {
        margin: 0 85px 0;
    }

    .style-two .hero-content h1 {
        font-size: 37px;
        line-height: 35px;
    }

    .style-two .about-thumb {
        left: -283px;
    }

    .service-area.style-two .massage-time {
        bottom: 33%;
    }

    .choose-us-area.style-two .choose-us-thumb {
        left: -205px;
    }

    .choose-us-area.style-two .choose-us-list-box ul li {
        font-size: 15px;
        line-height: 40px;
    }

    .choose-us-area.style-two .choose-us-conter-content p {
        font-size: 14px;
    }

    .portfolio-area.style-two {
        padding: 120px 0 110px;
    }

    .portfolio-area.style-two .port-content {
        width: 98%;
        gap: 20px;
    }

    .portfolio-area.style-two .port-title a {
        font-size: 17px;
    }

    .teasti-area.style-two .teasti-shape-3 {
        top: 1%;
        left: -1%;
    }

    .teasti-area.style-two .teasti-shape-4 {
        right: -8%;
    }

    .teasti-area.style-two .teasti-shape {
        bottom: 12%;
        left: 6%;
    }

    .teasti-area.style-two .teasti-shape-2 {
        bottom: 76%;
        right: 7%;
    }

    .team-area {
        margin: 0 16px 0;
    }

    .team-thumb img {
        width: 100%;
    }

    .team-area .team-content h4 {
        font-size: 18px;
    }

    .call-do-action-area {
        margin: 0 0px 0;
    }

    .call-do-content h4 {
        font-size: 32px;
        line-height: 39px;
    }

    /*inner Pages Responsive Css*/
    .inner-style .header-menu {
        left: 0;
        position: relative;
    }

    .inner-style .header-menu ul li {
        margin-left: 10px;
    }

    .service-details-area .service-thumb img {
        width: 100%;
    }

    .single-service-details-box {
        padding: 17px 18px 17px;
    }

    .service-details-area .project-button.style-two {
        margin-top: 35px;
    }

    .serive-details-box-content h3 {
        font-size: 15px;
    }

    .service-dtl-content {
        padding: 26px 21px 34px;
    }

    .blog-related-box {
        padding: 30px 6px 31px 22px;
    }

    .blog-related-box.style-two {
        padding: 30px 16px 31px 10px;
    }

    .widget-categories-box {
        padding: 21px 20px 15px;
    }

    .recent-widget-content a {
        font-size: 12px;
        line-height: 20px;
        display: inline-block;
    }

    .inner-style .row.add-backgroun {
        padding: 98px 24px 62px;
    }

    .service-details-title h4 {
        font-size: 31px;
    }

    .service-dtl-content h4 {
        font-size: 25px;
    }

    .portfolio-area.style-two.inner-style {
        padding: 120px 0 80px;
    }

    .portfolio-area.style-two.inner-style .port-content {
        width: 100%;
    }

    .portfolio-area.style-two.inner-style .port-icon {
        padding: 29px 26px 29px;
    }

    .faqs-thumb img {
        width: 100%;
    }

    .faq-singular .faq-question {
        font-size: 16px;
    }

    .inner-style .row.add-backgroun {
        padding: 82px 18px 69px;
    }

    .inner-style .contact-title p {
        font-size: 16px;
    }

    .blog-details-title a {
        font-size: 25px;
    }

    .blog-details-desc p {
        width: 100%;
    }

    .blog-related-box {
        padding: 30px 6px 31px 22px;
    }

    .blog-related-box.style-two {
        padding: 30px 16px 31px 10px;
    }

    .widget-categories-box {
        padding: 21px 20px 15px;
    }

    .recent-widget-content a {
        font-size: 12px;
        line-height: 20px;
        display: inline-block;
    }


    .style-two .blog-content {
        padding: 28px 0px 25px;
    }

    .style-two .blog-content a {
        font-size: 20px;
        line-height: 32px;
    }






}


/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {

    .top-headar-area {
        display: none;
    }

    .header-area {
        display: none;
    }

    .hero-area {
        height: 720px;
        padding-top: 41px;
        padding-bottom: 0;
    }

    .hero-thumb {
        display: none;
    }

    .hero-thumb-2 {
        right: -84px;
    }

    .hero-content p {
        width: 68%;
    }

    .featurea-area .section-title {
        left: 0;
    }

    .section-title h4 {
        margin: 0 0 2px 50px;
    }

    .single-feature-box {
        padding: 40px 28px 18px;
    }

    .about-thumb {
        left: 0;
    }
/* 
    .section-title p {
        width: 80%;
    } */

    .service-area {
        margin: 0 0 0;
    }

    .section-title h1 {
        font-size: 38px;
        line-height: 40px;
    }

    .choose-us-area {
        margin: 0;
    }

    .choose-us-thumb {
        left: 0;
        padding-top: 45px;
    }

    .portfolio-content a {
        font-size: 24px;
    }

    .pricing-shape-2 {
        display: none;
    }

    .pricing-shape {
        display: none;
    }

    .single-pricing-box {
        padding: 28px 30px 39px;
    }

    .video-area {
        padding: 162px 0 162px;
        margin: 0 31px 0;
    }

    .teasti-shape {
        display: none;
    }

    .teasti-shape-2 {
        display: none;
    }

    .blog-area .project-button {
        text-align: left;
        margin-bottom: 40px;
    }

    .blog-area .section-title {
        margin-bottom: 34px;
    }

    .blog-content a {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-date {
        top: 41%;
    }

    .subscribe-form {
        text-align: left;
        margin-top: 38px;
    }

    .footer-shape-one {
        left: -66px;
    }

    .footer-shape-two {
        right: -74px;
    }

    .footar-working-list ul li {
        padding-right: 4px;
    }

    .footar-content {
        margin-top: 25px;
    }

    .footar-area .col-lg-2.col-md-6:nth-child(2) .footar-content {
        margin-top: 0 !important;
    }

    .footar-area .row.add-bg {
        padding: 21px 3px 25px;
    }


    /*Home Two All Responsive Css*/

    .hero-wallpaper .hero-team-expt-content h4 {
        font-size: 24px;
    }

    .hero-area.style-two {
        margin: 0 50px 0;
        ;
    }

    .hero-single-box {
        gap: 10px;
    }

    .style-two .hero-social-icon {
        left: -46px;
    }

    .hero-wallpaper .hero-flower-shape {
        left: 26%;
    }

    .style-two .hero-shape2 {
        top: 67px;
    }

    .style-two .hero-content h1 {
        font-size: 30px;
        line-height: 32px;
    }

    .style-two .hero-content p {
        width: 52%;
    }

    .style-two .about-thumb {
        left: 0;
        margin-bottom: 32px;
    }

    .featurea-area.style-two .feature-shape {
        display: none;
    }

    .featurea-area.style-two .feature-thumb {
        margin-top: 30px;
        padding-bottom: 25px;
    }

    .service-area.style-two .massage-time {
        bottom: 35%;
    }

    .choose-us-area.style-two .choose-us-thumb {
        position: relative;
        left: 0;
        top: -44px;
    }

    .teasti-area.style-two .teasti-shape {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-2 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-3 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-4 {
        display: none;
    }

    .teasti-area.style-two .teasti-content p {
        font-size: 17px;
        line-height: 31px;
        width: 88%;
    }

    .teasti-area.style-two .owl-dots {
        left: 30%;
    }

    .team-area {
        margin: 0 0 0;
    }

    .team-thumb img {
        width: 100%;
    }

    .call-do-action-area {
        background-position: center left;
        margin: 0 0 0;
    }

    .call-do-sahpe {
        left: 68%;
    }


    .sticky {
        position: absolute !important;
    }


    /*inner Responsive All Css*/

    .service-details-area .row.add-margin {
        margin-top: 71px;
    }

    .service-details-title h6 {
        margin-bottom: 14px;
    }

    .service-details-title h4 {
        font-size: 30px;
    }

    .service-details-title p {
        width: 85%;
    }

    .service-details-thumb img {
        width: 100%;
        margin-top: 18px;
    }

    .service-dtl-content {
        padding: 26px 20px 34px;
    }


    .port-details-content h1 {
        font-size: 34px;
    }

    .port-details-content p {
        width: 100%;
    }

    .single-port-info-box {
        margin-top: 21px;
    }


    .portfolio-area.style-two.inner-style {
        padding: 120px 0 80px;
    }

    .portfolio-area.style-two.inner-style .port-content {
        width: 99%;
        gap: 14px;
    }

    .portfolio-area.style-two.inner-style .port-title a {
        font-size: 16px;
    }

    .portfolio-area.style-two.inner-style .port-title h4 {
        margin-bottom: 4px;
    }

    .faqs-area {
        padding: 99px 0 99px;
    }

    .faqs-thumb img {
        width: 100%;
        padding-bottom: 34px;
    }

    .faq-singular .faq-question {
        font-size: 16px;
    }

    .inner-style .row.add-backgroun {
        padding: 98px 36px 101px;
    }

    .blog-details-area {
        padding: 118px 0 86px;
    }

    .blog-details-title a {
        font-size: 27px;
    }

    .blog-details-desc p {
        width: 98%;
    }

    .blog-details-submi-button button {
        margin-bottom: 35px;
    }

    .blog-related-box {
        padding: 30px 21px 31px 29px;
    }

    .blog-related-box.style-two {
        padding: 30px 33px 31px 21px;
    }

    .style-two .blog-content a {
        font-size: 18px;
        line-height: 28px;
    }








}



/* Tablet desktop :575px. */
@media (min-width: 575px) and (max-width: 767px) {


    .top-headar-area {
        display: none;
    }

    .header-area {
        display: none;
    }

    .hero-area {
        height: 685px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-thumb {
        display: none;
    }

    .hero-thumb-2 {
        display: none;
    }

    .hero-content p {
        width: 86%;
    }

    .hero-content h1 {
        font-size: 74px;
    }

    .featurea-area .section-title {
        left: 0;
        margin-bottom: 35px;
    }

    .section-title h4 {
        margin: 0 0 2px 50px;
    }

    .single-feature-box {
        padding: 40px 28px 18px;
    }

    .about-thumb {
        left: 0;
    }

    .about-thumb img {
        width: 100%;
    }

    .about-content h4 {
        font-size: 17px;
        line-height: 32px;
    }

    /* .section-title p {
        width: 80%;
    } */

    .service-area {
        margin: 0 0 0;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .choose-us-thumb img {
        width: 100%;
    }

    .choose-us-area {
        margin: 0;
    }

    .choose-us-thumb {
        left: 0;
        padding-top: 45px;
    }

    .portfolio-area {
        padding: 388px 28px 100px;
    }

    .portfolio_nav {
        padding: 15px 7px;
    }

    .portfolio_menu ul li {
        margin-right: -3px;
        padding: 7px 19px;
    }

    .portfolio-content a {
        font-size: 24px;
    }

    .pricing-shape-2 {
        display: none;
    }

    .pricing-shape {
        display: none;
    }

    .single-pricing-box {
        padding: 28px 30px 39px;
    }

    .video-area {
        padding: 162px 0 162px;
        margin: 0 31px 0;
    }

    .teasti-shape {
        display: none;
    }

    .teasti-shape-2 {
        display: none;
    }

    .blog-area .project-button {
        text-align: center;
        margin-bottom: 40px;
    }

    .blog-area .section-title {
        margin-bottom: 34px;
    }

    .blog-content a {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-date {
        top: 59%;
    }

    .subscribe-area .row.add-bg {
        padding: 70px 10px 80px;
    }

    .subscribe-form {
        text-align: left;
        margin-top: 38px;
    }

    .footer-shape-one {
        display: none;
    }

    .footer-shape-two {
        right: -74px;
    }

    p.footer-desc {
        width: 68%;
    }

    .footar-working-list ul li {
        padding-right: 93px;
    }

    .footar-content {
        margin-top: 25px;
    }

    .footar-area .row.add-bg {
        padding: 21px 3px 25px;
    }

    .footer-bottom-content ul {
        text-align: left;
        margin-top: 8px;
    }

    .footer-bottom-content ul li a:nth-child(1) {
        margin-right: 16px;
        margin-left: 0;
    }

    /*Home Two All Responsive Css*/

    .hero-wallpaper {
        height: 1062px;
    }

    .hero-wallpaper .hero-team-expt-content h4 {
        font-size: 24px;
    }

    .hero-area.style-two {
        margin: 0 0 0;
        background-position: center left;
        height: 660px;
        padding-top: 53px;
    }

    .hero-wallpaper .hero-flower-shape {
        left: 16%;
    }

    .style-two .hero-video {
        display: none;
    }

    .hero-single-box {
        gap: 10px;
    }

    .style-two .hero-shape {
        display: none;
    }

    .style-two .hero-social-icon {
        display: none;
    }

    .style-two .line:before {
        width: 70%;
    }

    .hero-wallpaper .hero-team-expt {
        margin-top: 42px;
        float: left;
    }

    .style-two .hero-shape2 {
        display: none;
    }

    .style-two .hero-content h1 {
        font-size: 35px;
        line-height: 38px;
    }

    .style-two .hero-content p {
        width: 74%;
    }

    .style-two .about-thumb {
        left: 0;
        margin-bottom: 32px;
    }

    .style-two .about-thumb img {
        width: 100%;
    }

    .featurea-area.style-two .feature-shape {
        display: none;
    }

    .featurea-area.style-two .single-feature-box {
        padding: 40px 59px 18px;
    }

    .featurea-area.style-two .feature-thumb {
        margin-top: 30px;
        padding-bottom: 25px;
    }

    .featurea-area.style-two .feature-right {
        left: 0;
    }

    .featurea-area.style-two .feature-thumb img {
        width: 100%;
    }

    .service-area.style-two .massage-time {
        bottom: 50%;
    }

    .service-area.style-two .service-box-content {
        padding: 32px 66px 70px;
    }

    .choose-us-area.style-two .choose-us-thumb {
        position: relative;
        left: 0;
        top: -44px;
    }

    .portfolio-area.style-two .port-content {
        width: 96%;
    }

    .teasti-area.style-two .teasti-shape {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-2 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-3 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-4 {
        display: none;
    }

    .teasti-area.style-two .teasti-content p {
        font-size: 17px;
        line-height: 31px;
        width: 95%;
    }

    .teasti-area.style-two .owl-dots {
        left: 16%;
    }

    .team-area .single-team-box {
        border-radius: 301px 324px 0 0;
    }

    .team-area {
        margin: 0 0 0;
    }

    .team-thumb img {
        width: 100%;
    }

    .call-do-action-area {
        background-position: center left;
        margin: 0 0 0;
    }

    .call-do-sahpe {
        left: 68%;
    }

    .call-do-content h4 {
        font-size: 30px;
        line-height: 35px;
    }

    .sticky {
        position: absolute !important;
    }

    /*inner Responsive All Css*/

    .service-details-area .row.add-margin {
        margin-top: 71px;
    }

    .service-details-area .row.add-bg {
        padding: 63px 22px 75px;
    }

    .service-details-title h6 {
        margin-bottom: 14px;
    }

    .service-details-title h4 {
        font-size: 30px;
    }

    .service-details-title p {
        width: 85%;
    }

    .service-details-thumb img {
        width: 100%;
        margin-top: 18px;
    }

    .service-dtl-content {
        padding: 26px 33px 34px;
    }

    .port-details-content h1 {
        font-size: 34px;
    }

    .port-details-content p {
        width: 100%;
    }

    .single-port-info-box {
        margin-top: 21px;
    }


    .portfolio-area.style-two.inner-style {
        padding: 120px 0 80px;
    }

    .portfolio-area.style-two.inner-style .port-content {
        width: 90%;
        gap: 14px;
    }

    .portfolio-area.style-two.inner-style .port-title a {
        font-size: 20px;
    }

    .portfolio-area.style-two.inner-style .port-title h4 {
        margin-bottom: 4px;
    }

    .faqs-area {
        padding: 118px 0 99px;
    }

    .faqs-thumb img {
        width: 100%;
        padding-bottom: 34px;
    }

    .faq-singular .faq-question {
        font-size: 16px;
    }

    .subscribe-content h4 {
        font-size: 36px;
        line-height: 42px;
    }

    /*contact pages*/
    .inner-style .row.add-backgroun {
        padding: 98px 10px 101px;
    }


    .blog-details-area {
        padding: 118px 0 86px;
    }

    .blog-details-title a {
        font-size: 20px;
        padding-top: 12px;
    }

    .blog-details-desc p {
        width: 100%;
    }

    .blog-details-submi-button button {
        margin-bottom: 35px;
    }

    .blog-related-box {
        padding: 30px 21px 31px 29px;
    }

    .blog-related-box.style-two {
        padding: 30px 33px 31px 21px;
    }

    .blog-details-tag ul li a {
        padding: 2px 11px;
    }

    .blog-details-tag ul li {
        margin-right: 3px;
    }

    .blog-details-comment.style-two {
        margin-left: 6px;
    }

    .blog-related-content a {
        width: 68%;
    }

    .blog-details-comment-thumb {
        margin-right: 8px;
    }

    .recent-widget-content a {
        width: 80%;
        display: inline-block;
    }

    .style-two .blog-content a {
        font-size: 18px;
        line-height: 34px;
    }







}












/* small mobile :320px. */
@media only screen and (min-width: 320px) and (max-width: 574px) {

    .top-headar-area {
        display: none;
    }

    .header-area {
        display: none;
    }

    .hero-area {
        height: 606px;
        /* padding-top: 49px; */
        padding-bottom: 0;
    }

    .hero-thumb {
        display: none;
    }

    .hero-thumb-2 {
        display: none;
    }

    .hero-content p {
        width: 100%;
        font-size: 17px;
    }

    .hero-content h1 {
        font-size: 41px;
        line-height: 43px;
    }

    .featurea-area .section-title {
        left: 0;
        margin-bottom: 35px;
    }

    .featurea-area .section-title h1 {
        font-size: 30px;
        line-height: 28px;
    }

    .section-title h4 {
        margin: 0 0 2px 50px;
    }

    .single-feature-box {
        padding: 40px 28px 18px;
    }

    .about-shape {
        display: none;
    }

    .about-thumb {
        left: 0;
        top: -13px;
    }

    .about-thumb img {
        width: 100%;
    }

    .about-content h4 {
        font-size: 17px;
        line-height: 32px;
    }

    .single-about-box {
        width: 100%;
    }

    .section-title p {
        width: 100%;
    }

    .service-area {
        margin: 0 0 0;
        background-position: center;
    }

    .service-content {
        margin: 0 0 0;
    }

    .service-content h4 {
        font-size: 18px;
        margin: 19px 0 10px;
    }

    .section-title h1 {
        font-size: 16px;
    }

    .text-section .marquee-block .content-box h6.title {
        font-size: 22px;
    }

    .choose-us-thumb img {
        width: 100%;
    }

    .choose-us-area {
        margin: 0;
    }

    .choose-us-thumb {
        left: 0;
        padding-top: 45px;
    }

    .portfolio-area {
        padding: 388px 0 400px;
    }

    .portfolio_nav {
        padding: 15px 9px;
    }

    .portfolio_menu ul li {
        margin-right: 6px;
        padding: 7px 19px;
        margin-bottom: 8px;
    }

    .portfolio-content a {
        font-size: 17px;
        margin-top: 6px;
    }

    .pricing-shape-2 {
        display: none;
    }

    .pricing-shape {
        display: none;
    }

    .single-pricing-img-box {
        padding: 47px 15px 306px;
    }

    .single-pricing-box {
        padding: 28px 30px 39px;
    }

    .video-area {
        padding: 136px 0 129px;
        margin: 0 7px 0;
    }

    .single-teasti-content {
        padding: 39px 20px 31px;
    }

    .teasti-author-title h4 {
        font-size: 14px;
    }

    .teasti-shape {
        display: none;
    }

    .teasti-shape-2 {
        display: none;
    }

    .blog-area .project-button {
        text-align: center;
        margin-bottom: 40px;
    }

    .blog-area .section-title {
        margin-bottom: 34px;
    }

    .blog-content a {
        font-size: 15px;
        line-height: 23px;
    }

    .blog-date {
        top: 36%;
    }

    .subscribe-area .row.add-bg {
        padding: 70px 10px 80px;
    }

    .subscribe-form {
        text-align: left;
        margin-top: 38px;
    }

    .subscribe-content h4 {
        font-size: 21px;
        line-height: 22px;
    }

    .subscribe-form input {
        width: 78%;
        border-radius: 0;
    }

    .footer-shape-one {
        display: none;
    }

    .footer-shape-two {
        right: -174px;
    }

    p.footer-desc {
        width: 100%;
    }

    .footar-working-list ul li {
        padding-right: 0;
        font-size: 14px;
    }

    .footar-content {
        margin-top: 25px;
    }

    .footar-area .row.add-bg {
        padding: 21px 27px 25px;

    }

    .footar-area .row.add-bg {
        margin-top: 0px;


    }

    .row.align-items-center {
        margin-bottom: 0px;
    }

    .footer-bottom-content ul {
        text-align: left;
        margin-top: 8px;
        margin-left: 20px;
    }

    .footer-bottom-content ul li a:nth-child(1) {
        margin-right: 16px;
        margin-left: 0;
    }



    /*Home Two All Responsive Css*/

    .hero-wallpaper {
        height: 967px;
    }

    .hero-wallpaper .hero-team-expt-content h4 {
        font-size: 24px;
    }

    .hero-area.style-two {
        margin: 0 0 0;
        background-position: center left;
        height: 606px;
        padding-top: 47px;
    }

    .hero-wallpaper .hero-flower-shape {
        left: 16%;
        display: none;
    }

    .style-two .hero-video {
        display: none;
    }

    .hero-single-box {
        display: block;
        text-align: center;
    }

    .hero-box-content h4 {
        margin: 18px 0 10px;
    }

    .style-two .hero-shape {
        display: none;
    }

    .style-two .hero-social-icon {
        display: none;
    }

    .style-two .line:before {
        width: 100%;
    }

    .hero-wallpaper .hero-team-expt {
        display: none;
    }

    .style-two .hero-shape2 {
        display: none;
    }

    .style-two .hero-content h4 {
        font-size: 13px;
    }

    .style-two .hero-content h1 {
        font-size: 24px;
        line-height: 24px;
    }

    .style-two .hero-content p {
        width: 100%;
    }

    .about-area.style-two {
        padding: 132px 0 121px;
    }

    .style-two .about-thumb {
        left: 9px;
        margin-bottom: 32px;
    }

    .about-item p {
        font-size: 15px;
    }

    .style-two .about-thumb img {
        width: 100%;
        height: 250px;
    }

    .featurea-area.style-two .feature-shap2 {
        display: none;
    }

    .featurea-area.style-two .section-title h1 {
        font-size: 20px;
        line-height: 20px;
    }

    .featurea-area.style-two .feature-shape {
        display: none;
    }

    .featurea-area.style-two .single-feature-box {
        padding: 40px 8px 18px;
    }

    .featurea-area.style-two .feature-thumb {
        margin-top: 30px;
        padding-bottom: 25px;
    }

    .featurea-area.style-two .feature-content h4 {
        font-size: 25px;
        margin: 22px 0 10px;
    }

    .featurea-area.style-two .feature-right {
        left: 0;
    }

    .featurea-area.style-two .feature-thumb img {
        width: 100%;
    }

    .featurea-area.style-two .feature-thumb-shape {
        top: -26px;
    }

    .featurea-area.style-two .feature-thumb-shape2 {
        bottom: 39px;
    }

    .service-area.style-two .massage-time {
        bottom: 31%;
    }

    .service-area.style-two .service-box-content {
        padding: 32px 14px 70px;
    }

    .choose-us-area.style-two .choose-us-thumb {
        position: relative;
        left: 0;
        top: -44px;
    }


    .choose-us-area.style-two .project-button a {
        margin-top: 28px;
    }

    .choose-us-area.style-two .choose-us-conter-content h4 {
        font-size: 20px;
    }

    .choose-us-area.style-two .choose-us-conter-content span {
        font-size: 25px;
    }

    .choose-us-area.style-two .choose-us-conter-content p {
        font-size: 15px;
    }

    .choose-us-area.style-two .choose-us-counter {
        gap: 13px;
        margin-bottom: 22px;
    }

    .choose-us-area.style-two .row.add-bg {
        padding: 20px 5px;
    }

    .choose-us-area.style-two .choose-us-list-box ul li {
        font-size: 16px;
    }

    .portfolio-area.style-two .port-icon {
        padding: 29px 22px 29px;
    }

    .portfolio-area.style-two .single-port-box {
        margin: 0 0 77px;
    }

    .portfolio-area.style-two {
        padding: 120px 0px 110px;
    }

    .portfolio-area.style-two .port-title a {
        font-size: 16px;
    }

    .portfolio-area.style-two .port-content {
        width: 100%;
        gap: 9px;
    }

    .teasti-area.style-two .teasti-shape {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-2 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-3 {
        display: none;
    }

    .teasti-area.style-two .teasti-shape-4 {
        display: none;
    }

    .teasti-area.style-two .teasti-content p {
        font-size: 17px;
        line-height: 31px;
        width: 100%;
    }

    .teasti-area.style-two .teasti-author-content {
        margin-top: 226px;
    }

    .teasti-area.style-two .owl-dot {
        margin: 0 7px 0;
    }

    .teasti-area.style-two .owl-dots {
        left: 16%;
        bottom: 84px;
    }

    .team-area .single-team-box {
        border-radius: 301px 324px 0 0;
    }

    .team-area {
        margin: 0 0 0;
    }

    .team-thumb img {
        width: 100%;
    }

    .call-do-action-area {
        background-position: center left;
        margin: 0 0 0;
    }

    .call-do-sahpe {
        left: 68%;
        display: none;
    }

    .call-do-content h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .sticky {
        position: absolute !important;
    }

    /*inner Responsive All Css*/

    .single-service-details-box {
        padding: 45px 17px 41px;
    }

    .service-details-area .row.add-margin {
        margin-top: 71px;
    }

    .service-details-area .row.add-bg {
        padding: 63px 3px 75px;
    }

    .service-details-title h6 {
        margin-bottom: 14px;
    }

    .service-details-title h4 {
        font-size: 20px;
    }

    .service-details-title p {
        width: 100%;
    }

    .service-details-thumb img {
        width: 100%;
        margin-top: 18px;
    }

    .service-dtl-content {
        padding: 26px 13px 34px;
    }

    .service-dtl-content h4 {
        font-size: 23px;
    }

    .service-details-area .row.add-margin {
        margin-top: 71px;
        margin-left: 0;
    }

    .service-box-item ul li {
        font-size: 15px;
    }

    .breadcumb-content h4 {
        font-size: 22px;
    }

    .breadcumb-area {
        padding: 200px 0 128px;
    }

    .port-details-content h1 {
        font-size: 34px;
    }

    .port-details-content p {
        width: 100%;
    }

    .single-port-info-box {
        margin-top: 21px;
    }


    .portfolio-area.style-two.inner-style {
        padding: 120px 0 80px;
    }

    .portfolio-area.style-two.inner-style .port-content {
        width: 100%;
        gap: 14px;
    }

    .portfolio-area.style-two.inner-style .port-title a {
        font-size: 18px;
    }

    .portfolio-area.style-two.inner-style .port-title h4 {
        margin-bottom: 4px;
    }


    .faqs-area {
        padding: 118px 0 99px;
    }

    .faqs-thumb img {
        width: 100%;
        padding-bottom: 34px;
    }

    .faq-singular .faq-question {
        font-size: 16px;
        padding: 20px 9px 19px 9px;
        line-height: 26px;
    }

    .faq-answer {
        padding: 21px 13px 25px;
    }

    .faq-singular .faq-question:before {
        right: 10px;

    }

    /*contact pages*/
    .inner-style .row.add-backgroun {
        padding: 98px 10px 101px;
    }

    .inner-style .single-contact-form {
        padding: 20px 16px 30px;
    }

    .inner-style .single-contact-box {
        display: block;
        text-align: center;
    }

    .inner-style .contact-title p {
        font-size: 16px;
        line-height: 24px;
    }

    .inner-style.contact-area .section-title p {
        width: 100%;
    }

    .blog-details-area {
        padding: 118px 0 86px;
    }

    .blog-details-title a {
        font-size: 18px;
        padding-top: 8px;
    }

    .blog-details-desc p {
        width: 100%;
    }

    .blog-details-submi-button button {
        margin-bottom: 35px;
    }

    .blog-related-box {
        padding: 30px 5px 31px 17px;
    }

    .blog-related-box.style-two {
        padding: 30px 17px 31px 11px;
        margin-top: 25px;
    }

    .blog-related-content a {
        font-size: 15px;
        line-height: 21px;
    }

    .blog-details-tag ul li a {
        padding: 2px 11px;
    }

    .blog-details-tag ul li {
        margin-right: 3px;
    }

    .blog-details-comment.style-two {
        margin-left: 6px;
    }

    .blog-details-social {
        text-align: left;
        margin-top: 13px;
    }

    .blog-details-comment-thumb {
        float: inherit;
        margin-bottom: 20px;
    }

    .blog-details-comment {
        padding: 29px 15px 25px;
    }

    .blog-details-comment-content h2 {
        font-size: 17px;
        margin-right: 6px;
    }

    .widget_search {
        padding: 13px 15px 37px;
    }

    .widget-categories-box {
        padding: 21px 13px 15px;
    }

    .recent-widget-content a {
        font-size: 14px;
        line-height: 22px;
        display: inline-block;
    }

    .sidber-widget-recent-post {
        gap: 9px;
    }

    .style-two .blog-content {
        padding: 28px 18px 25px;
    }

    .style-two .blog-content a {
        font-size: 16px;
        line-height: 24px;
    }




}




/*xl device min width*/
@media screen and (min-width:992px) {
    .pl-lg-50 {
        padding-left: 50px;
    }
}

/*xl device min width*/
@media screen and (min-width:1200px) {
    .video-icon {
        left: 75%;
    }
}

@font-face {
    font-family: 'revicons';
    src: url('assets/css/xhtml/plugins/revolution/revolution/fonts/revicons/revicons.woff') format('woff'),
        url('assets/css/xhtml/plugins/revolution/revolution/fonts/revicons/revicons.ttf') format('truetype');
}





.top-headar-area {
    background: var(--secondary-color);
    padding: 11px 50px 11px;
}

.top-info ul li {
    display: inline-block;
    color: var(--white);
    margin-right: 40px;
    position: relative;
}

.top-info ul li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 17px;
    background: #fff;
    right: -21px;
    top: 6px;
    opacity: 0.4;
}

.top-info ul li:last-child:before {
    background: transparent;
}

.top-info ul li i {
    display: inline-block;
    color: #ffcbb1;
    margin-right: 9px;
    position: relative;
    top: 2px;
}

.top-social-icon {
    text-align: right;
}

.top-social-icon ul li {
    display: inline-block;
    margin-left: 8px;
}

.top-social-icon ul li i {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.top-social-icon ul li i:hover {
    color: #ffcbb1;
}

.top-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--white);
    border-radius: 15px;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.top-social-icon ul li i:hover:after {
    transform: scale(1);
}




/*
<!-- =================================-->
<!-- spaclub Header Area Css  -->
<!-- =================================-->
*/
.header-area {
    padding: 0 46px 0;
    margin-bottom: -94px;
    border-bottom: 1px solid rgba(84, 31, 92, 0.1);
    position: relative;
    z-index: 1;
}

.header-menu {
    text-align: right;
}

.header-menu ul li {
    display: inline-block;
    margin-left: 45px;
}

.header-menu ul li a {
    display: inline-block;
    color: white;
    font-weight: 600;
    padding: 34px 0;
}

.header-menu ul li a:hover {
    color: #ffcbb1;
}

.header-right {
    text-align: right;
}

.header-contact-button img {
    margin-right: 6px;
}

.header-contact-button h4 {
    font-size: 18px;
    margin: 0;
    font-family: var(--body-fonts);
    font-weight: 800;
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    float: right;
    gap: 38px;
}

.header-button a {
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    background: #ffcbb1;
    padding: 12px 31px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #ffcbb1;
}

.header-button a:hover {
    color: #ffcbb1;
}

.header-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 30px;
}

.header-button a:hover:before {
    width: 100%;
    left: 0;
}

.header-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    left: 5px;
    transform: rotate(-59deg);
}


.header-menu ul li i {
    font-size: 11px;
    display: inline-block;
    position: relative;
    left: 5px;
}



/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 250px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #ffcbb1;
    border-radius: 3px 3px 0 0;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li {
    margin-left: 0 !important;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 9px 19px;
    color: #1e1e1e;
    width: 250px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-menu ul li .sub-menu li a:hover {
    color: #fff;
}

.header-menu ul li .sub-menu li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: #ffcbb1;
    z-index: -1;
    transition: 0.5s;
}

.header-menu ul li .sub-menu li a:hover:before {
    height: 100%;
    top: 0;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}


/*--Project Button--*/
.project-button a {
    display: inline-block;
    font-size: 16px;
    color: #fefefe;
    font-weight: bold;
    background: #ffcbb1;
    padding: 14px 41px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #ffcbb1;
}

.project-button a:hover {
    color: #ffcbb1;
}

.project-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
    border-radius: 30px;
}

.project-button a:hover:before {
    width: 100%;
    left: 0;
}

.project-button i {
    display: inline-block;
    font-size: 16px;
    position: relative;
    left: 5px;
    transform: rotate(-59deg);
}








/*
<!-- =================================-->
<!-- spaclub Hero Area Css  -->
<!-- =================================-->
*/

.hero-area {
    background: url(../images/home-1/hero-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    height: 900px;
    padding-top: 148px;
    padding-bottom: 63px;
    position: relative;
}

.hero-area .project-button {
    margin-top: 38px;
}

.hero-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--body-fonts);
    background: #fff;
    display: inline-block;
    padding: 11px 21px;
    padding-left: 34px;
    text-transform: uppercase;
    border-radius: 30px;
    position: relative;
    margin-bottom: 18px;
}

.hero-content h4:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: 19px;
    top: 16px;
    background: #ffcbb1;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 72px;
    color: #0a132e;
    font-weight: bold;
}

.hero-content h1 span {
    display: inline-block;
    color: #ffcbb1;
}

.hero-content p {
    font-size: 18px;
    line-height: 28px;
    width: 80%;
    margin: 26px 0 0;
}

.hero-thumb {
    position: relative;
    left: -193px;
    top: 0;
}

.hero-shape {
    position: absolute;
    top: 11px;
    right: -63px;
}

.hero-thumb-2 {
    position: absolute;
    right: 57px;
    bottom: 85px;
}


/*
<!-- =================================-->
<!-- spaclub Feature Area Css  -->
<!-- =================================-->
*/
.featurea-area {
    padding: 118px 0 94px;
}

.featurea-area .section-title {
    position: relative;
    left: -36px;
    position: relative;
    margin: 0;
}

.section-title h4 {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 14px 50px;
    position: relative;
    display: inline-block;
}

.section-title h4:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    left: -48px;
    top: 8px;
    background: black;
}

.section-title h1 {
    font-size: 42px;
    line-height: 42px;
    color: #0a132e;
    font-weight: 500;
}

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

.single-feature-box {
    text-align: center;
    background: #f8f5f0;
    padding: 25px 3px 18px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single-feature-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #0a132e;
    border-radius: 20px;
    z-index: -1;
    transition: 0.5s;
}

.single-feature-box:hover:before {
    width: 100%;
    left: 0;
}

.feature-content h4 {
    font-size: 28px;
    margin: 37px 0 10px;
    transition: 0.5s;
}

.single-feature-box:hover .feature-content h4 {
    color: #fff;
}

.feature-content p {
    transition: 0.5s;
}

.single-feature-box:hover .feature-content p {
    color: #a4a7b3;
}

.feature-shape {
    position: absolute;
    left: 0;
    bottom: -133px;
    animation: bns1 3s linear infinite;
}




/*
<!-- =================================-->
<!-- spaclub About Area Css  -->
<!-- =================================-->
*/
.about-area {
    padding: 0 0 121px;
    position: relative;
}

.about-area .project-button {
    margin-top: 49px;
}

.about-thumb {
    position: relative;
   
}

.about-right {
    border: 1px solid rgba(10, 19, 46, 0.10196078431372549);
    border-left: 0;
    border-right: 0;
    padding: 16px 0 27px;
    margin-top: 31px;
    margin-bottom: 25px;
}

.single-about-box {
    display: inline-block;
    width: 48%;
    margin-right: 6px;
}

.about-box-icon {
    float: left;
    margin-right: 25px;
    margin-top: 12px;
}

.about-content h4 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
}

.about-item p {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 0;
}

.about-item i {
    color: #ffcbb1;
    margin-right: 14px;
}

.about-shape {
    position: absolute;
    right: 4%;
    top: -70px;
    animation: dance 2s alternate infinite;
}


/*
<!-- =================================-->
<!-- spaclub Service Area Css  -->
<!-- =================================-->
*/
.service-area {
    /* background: url(../images/home-1/service-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 119px 0 117px;
    margin: 0 10px 0;
}

.service-area .section-title {
    margin-bottom: 57px;
}

.single-service-box {
    text-align: center;
    position: relative;
}

.service-thumb img {
    width: 100%;
    position: relative;
        max-height: 400px;
    object-fit: cover;
    min-height:400px;
}

.service-thumb {
    position: relative;
}

.service-thumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: url(../images/home-1/service-img-shape.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: 1s;
}

.single-service-box:hover .service-thumb:before {
    /* background: url(../images/home-1/service-img-shape2.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-content {
    padding: 0 19px 0;
    border-bottom: 1px solid rgba(10, 19, 46, 0.10196078431372549);
    position: relative;
    transition: 1s;
    margin: 0 21px 0;
}

.single-service-box:hover .service-content {
    border-bottom: 1px solid #ffcbb1;
}

.service-content a {
       display: inline-block;
    background: #ffcbb1;
    border-radius: 30px;
    color: #fff;
    line-height: 30px;
    font-size: 15px;
    padding: 10px;
    
}

.single-service-box:hover .service-content a {
    opacity: 1;
}

.service-content h4 {
    /* font-size: 32px; */
    margin: 22px 0 12px;
}

.service-content p {
    margin: 0 0 16px;
}

.service-time h6 {
    font-size: 20px;
    font-weight: 500;
    margin: 16px 0 0;
}

.service-shape {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    transition: 1s;
    opacity: 0;
}

.single-service-box:hover .service-shape {
    top: 0;
    opacity: 1;
}

.service-shape img {
    display: inline-block;
    width: 17% !important;
}

.service-area .owl-carousel .owl-item img {
    display: inline-block;
}

.service-area .owl-nav {
    position: relative;
}

.service-area .owl-prev {
    position: absolute;
    top: -433px;
    left: -54px;
}

.service-area .owl-next {
    position: absolute;
    top: -433px;
    right: -54px;
}

.service-area .owl-prev i {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(10, 19, 46, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: #222;
}

.service-area .owl-next i {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #ffffff;
    border: 1px solid rgba(10, 19, 46, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 56px;
    color: #222;
}




/*
<!-- =====================================-->
<!-- spaclub Text Area Css-->
<!-- =====================================-->*/
.text-section {
    position: relative;
    z-index: 1;
    padding: 72px 0 72px;
}

.text-section .inner-container {
    max-width: 1812px;
    margin: 0 auto;
}

.text-section .marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 0px;
}

.text-section .marquee-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0;
    min-width: 87%;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.text-section .marquee-block .content-box {
    position: relative;
    margin-right: 0px;
}

.text-section .marquee-block .content-box:last-child {
    margin-right: 0px;
}

.text-section .marquee-block .content-box:last-child::before {
    display: none;
}

.text-section .marquee-block .content-box .title {
    margin: 0;
}

.text-section .marquee-block .content-box h6.title {
    display: inline-block;
    padding: 0 48px;
    font-size: 25px;
    text-transform: uppercase;
    color: #0a132e;
    font-weight: 500;
}

.text-section .marquee-block .content-box h6.title img {
    position: relative;
    left: -49px;
    animation: rotateme 20s linear infinite;
}

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

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


@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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



/*
<!-- =====================================-->
<!-- spaclub Choose Us Area Css-->
<!-- =====================================-->
*/

.choose-us-area {
    padding: 120px 0 120px;
    background: #0a132e;
    margin:  0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.choose-us-area .section-title {
    margin-bottom: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14901960784313725);
    padding-bottom: 35px;
}

.choose-us-area .section-title h1 {
    color: var(--white);
}

.choose-us-list-box ul li {
    font-size: 22px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.choose-us-list-box ul li img {
    margin-right: 9px;
}

.choose-us-thumb {
    position: relative;
    left: 4px;
}

.choose-us-area .project-button a {
    margin-top: 36px;
}

/*
<!-- =====================================-->
<!-- spaclub Portfolio Area Css-->
<!-- =====================================-->
*/
.portfolio-area {
    padding: 388px 48px 100px;
    background: #f8f5f0;
    margin-top: -268px;
}

.portfolio-area .section-title {
    margin-bottom: 48px;
}

/* portfolio menu */
.portfolio_nav {
    display: inline-block;
    border: 1px solid #1111111f;
    border-radius: 55px;
    padding: 15px 18px;
    margin-bottom: 52px;
}

.portfolio_menu {
    text-align: center;
    padding: 0 0 0;
}

li.current_menu_item {
    color: #fff !important;
    background: #ffcbb1;
    border: 1px solid #ffcbb1 !important;
}

.portfolio_menu ul li {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    padding: 7px 28px;
    color: #0a132e;
    position: relative;
    z-index: 1;
    font-weight: 500;
    border-radius: 30px;
    border: 1px solid #0a132e;
}

.portfolio_menu ul li:last-child {
    margin-right: 0;
}

.single-portfolio-box {
    border-radius: 10px;
    background-color: #ffffff;
    text-align: center;
    padding: 0 0 35px;
    position: relative;
    margin-bottom: 20px;
}

.portfolio-thumb img {
    width: 100%;
}

.portfolio-button {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 120px;
    opacity: 0;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-button {
    opacity: 1;
}

.portfolio-content {
    padding: 26px 0 0;
    transition: 0.5s;
}

.single-portfolio-box:hover .portfolio-content {
    padding: 40px 0 0;
}

.portfolio-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffcbb1;
    font-weight: 500;
}

.portfolio-content a {
    display: inline-block;
    font-size: 28px;
    color: #0a132e;
    font-weight: 500;
    font-family: var(--title-fonts);
    margin-top: 13px;
}

.portfolio-button i {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #e2836a;
    text-align: center;
    line-height: 56px;
    color: #fff;
    transform: rotate(-45deg);
}





/*
<!-- =====================================-->
<!-- spaclub Pricing Area Css-->
<!-- =====================================-->
*/
.pricing-area {
    padding: 120px 0 500px;
    position: relative;
}

.pricing-area .section-title {
    margin-bottom: 62px;
}

.single-pricing-img-box {
    background: url(../images/home-1/pricing-box-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 47px 42px 296px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

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

.pricing-img-content h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--body-fonts);
    text-transform: uppercase;
    margin: 0;
}

.pricing-img-content h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 8px;
}

.pricing-img-content p {
    color: #fff;
    line-height: 24px;
    margin-top: 7px;
}

.pricing-img-content i {
    display: inline-block;
    width: 52px;
    height: 52px;
    border-radius: 26px;
    background-color: rgba(226, 131, 106, 0);
    border: 1px solid #ffffff;
    text-align: center;
    line-height: 52px;
    color: #fff;
    transform: rotate(-45deg);
    margin-top: 7px;
}

.pricing-img-shape {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -33px;
    margin: auto;
    text-align: center;
}

.single-pricing-box {
    background: #F7F5EF;
    text-align: center;
    padding: 28px 58px 39px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #e2836a;
    line-height: 70px;
    text-align: center;
    margin: auto;
}

.pricing-head h4 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 21px;
}

.pricing-head h1 {
    font-size: 60px;
    color: #0a132e;
    font-weight: 500;
    margin-top: 4px;
}

.pricing-head span {
    font-size: 18px;
    color: #0a132e;
    display: inline-block;
}

.pricing-body {
    text-align: left;
    border-top: 1px dashed #8b8b8a;
    margin-top: 24px;
    padding-top: 25px;
}

.pricing-body ul li {
    line-height: 35px;
}

.pricing-body ul li i {
    color: #ffcbb1;
    font-size: 22px;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: 2px;
}

.pricing-area .project-button {
    margin-top: 34px;
}

.pricing-shape {
    position: absolute;
    right: 138px;
    top: 10%;
}

.pricing-shape-2 {
    position: absolute;
    left: 113px;
    top: 6%;
}


/*
<!-- =====================================-->
<!-- spaclub Video Area Css-->
<!-- =====================================-->
*/

.video-area {
    background: url(../images/home-1/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 290px 0 290px;
    /* margin: 0 63px 0; */
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.single-video-box a {
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 75px;
    background-color: #ffcbb1;
    font-size: 30px;
    color: #ffcbb1;
    line-height: 150px;
    position: relative;
    z-index: 1;
}

.single-video-box a:before {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #ffffff;
    left: 38px;
    top: 38px;
    text-align: center;
    z-index: -1;
}

.single-video-box a:after {
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    border-radius: 54px;
    border: 2px dashed #ffff;
    left: 25px;
    top: 25px;
    text-align: center;
    z-index: -1;
    animation: rotateme 20s linear infinite;
}



/*
<!-- =====================================-->
<!-- spaclub Teastimonial Area Css-->
<!-- =====================================-->
*/
.single-teastimonial-area {
    background: #f8f5f0;
    padding: 50px 0 120px;
    margin-top: -385px;
    position: relative;
}

.single-teastimonial-area .section-title {
    margin-bottom: 59px;
}

.single-teasti-box {
    margin: 0 13px 0;
}

.single-teasti-content {
    background: #fff;
    padding: 39px 31px 31px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.single-teasti-content:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    left: 47px;
    bottom: -15px;
    background: #fff;
    transform: rotate(45deg);
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content:before {
    background: #ffcbb1;
}

.single-teasti-content:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
    border-radius: 10px;
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content:after {
    width: 100%;
    left: 0;
}

.teasti-rating ul li {
    display: inline-block;
    color: #ffcbb1;
    margin: 0 0px 0 0;
    transition: 0.5s;
}

.single-teasti-box:hover .teasti-rating ul li {
    color: #ffff;
}

.teasti-rating ul li:last-child {
    color: #0a132e;
    font-weight: 600;
    margin-left: 5px;
}

.teasti-quote img {
    transition: 0.5s;
    width: 45px !important;
}

.single-teasti-box:hover .teasti-quote img {
    filter: brightness(0) invert(1);
}

.single-teasti-content p {
    font-size: 18px;
    line-height: 28px;
    color: #8b8b8a;
    margin: 23px 0 26px;
    transition: 0.5s;
}

.single-teasti-box:hover .single-teasti-content p {
    color: #fff;
}

.teasti-author {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 38px;
    margin-left: 32px;
}

.teasti-author-title h4 {
    font-size: 22px;
    font-weight: 500;
}

.teasti-author-title p {
    margin: 4px 0 0;
}


.single-teastimonial-area .owl-carousel .owl-item img {
    display: inline-block;
}

.teasti-shape {
    position: absolute;
    bottom: 46%;
    left: 10%;
    animation: dance 3s alternate infinite;
}

.teasti-shape-2 {
    position: absolute;
    bottom: 46%;
    right: 10%;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}




/*
<!-- =====================================-->
<!-- spaclub Blog Area Css-->
<!-- =====================================-->
*/
.blog-area {
    padding: 118px 0 90px;
}

.blog-area .project-button {
    text-align: right;
}

.blog-area .section-title {
    margin-bottom: 63px;
}

.single-blog-box {
    position: relative;
    margin-bottom: 30px;
}

.blog-thumb img {
    width: 100%;
}

.blog-date {
    display: inline-block;
    background: #ffcbb1;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    text-align: center;
    padding: 8px 0 0;
    position: absolute;
    top: 46%;
    left: 15px;
}

.blog-date h6 {
    color: #fff;
    font-size: 24px;
    margin: 0;
}

.blog-date p {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.blog-author-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    margin-bottom: 22px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-author-title h4 {
    font-size: 17px;
    color: #8b8b8a;
    font-weight: 400;
    font-family: var(--body-fonts);
    margin: 0;
}

.blog-author-title strong {
    color: #0a132e;
}

.blog-link-button a {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    text-align: center;
    color: rgba(10, 19, 46, 0.5);
    font-size: 26px;
    line-height: 44px;
    transform: rotate(-45deg);
    border: 1px solid rgba(10, 19, 46, 0.1);
    transition: 0.5s;
}

.blog-link-button a:hover {
    background: #ffcbb1;
    border: 1px solid #ffcbb1;
    color: #fff;
}

.blog-content {
    background: #f8f5f0;
    padding: 24px 26px;
    border-radius: 10px;
}

.blog-content a {
    display: inline-block;
    font-size: 21px;
    line-height: 32px;
    color: #0a132e;
    font-weight: 600;
    transition: 0.5s;
}

.blog-content a:hover {
    color: #ffcbb1;
}


/*
<!-- =====================================-->
<!-- spaclub Subscribe Area Css-->
<!-- =====================================-->
*/

.subscribe-area .row.add-bg {
    background: url(assets/images/img435.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 70px 66px 80px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
} 

.subscribe-content h4 {
    font-size: 42px;
    line-height: 45px;
    color: #ffffff;
    font-weight: bold;
}

.subscribe-form {
    text-align: right;
    margin-top: 10px;
}

.subscribe-form input {
    height: 64px;
    background-color: #ffffff;
    width: 67%;
    border: transparent;
    border-radius: 30px 0 0 30px;
    padding: 0 36px;
    outline: 0;
}

.subscribe-form input::placeholder {
    font-size: 16px;
    color: #8b8b8a;
    font-weight: 400;
    font-family: var(--body-fonts);
}

.subscribe-form button {
    width: 64px;
    height: 64px;
    background-color: #0a132e;
    border: transparent;
    color: #ffff;
    position: relative;
    left: -5px;
}



/*
<!-- =====================================-->
<!-- spaclub Footar Area Css-->
<!-- =====================================-->
*/

.footar-area {
    background: #0a132e;
    padding: 240px 0 0px;
    margin-top: -125px;
    position: relative;
}

p.footer-desc {
    font-size: 18px;
    line-height: 26px;
    color: #a4a7b3;
    width: 90%;
    margin: 28px 0 26px;
}

.footar-contact p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    display: flex;
    gap: 14px;
    align-items: center;
}

.footar-social-icon {
    margin-top: 32px;
}

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

.footar-social-icon ul li i {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.10196078431372549);
    display: inline-block;
    text-align: center;
    color: #ffff;
    line-height: 44px;
    transition: 0.5s;
}

.footar-social-icon ul li i:hover {
    background: #ffcbb1;
}

.footar-title h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 25px;
}

.footar-list-item ul li a {
    font-size: 16px;
    line-height: 40px;
    color: #ffffff;
    font-weight: 500;
}

.footar-list-item ul li a:hover {
    color: #ffcbb1;
}

.footar-working-list ul li {
        display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 61px;
    white-space: nowrap;
    gap: 16px;

}

.footar-working-list ul li:last-child {
    border-bottom: 0;
}

.footar-working-list ul li:last-child span {
    color: #ffcbb1;
    text-transform: uppercase;
}

.footar-area .row.add-bg {
    background: #172140;
    padding: 21px 27px 25px;
    margin-top: 113px;
}

.footer-bottom-content p {
    margin: 0;
    color: #a4a7b3;

}

.footer-bottom-content ul {
    text-align: right;
}

.footer-bottom-content ul li {
    display: inline-block;
}

.footer-bottom-content ul li a {
    display: inline-block;
    color: #a4a7b3;
    margin-left: 32px;
    transition: 0.5s;
}

.footer-bottom-content ul li a:hover {
    color: #ffcbb1;
}

.footer-shape-one {
    position: absolute;
    left: 65px;
    top: 149px;
    animation: bns1 3s linear infinite;
}

@keyframes bns1 {
    50% {
        transform: rotate(-5deg);
    }

    80% {
        transform: translateX(8px);
    }
}

.footer-shape-two {
    position: absolute;
    right: -38px;
    top: 23px;
    animation: bns2 5s linear infinite;
}

@keyframes bns2 {
    50% {
        transform: translateX(-50px);
    }

    80% {
        transform: translateX(20px);
    }
}



/*
<!-- =========================================================================-->
<!-- Start Home Two All Css -->
<!-- ==========================================================================-->
*/





/*
<!-- =================================-->
<!-- spaclub Header Area Css  Style Two-->
<!-- =================================-->
*/

.header-area.style-two {
    background: #0a132e;
    padding: 0 13px 0;
    border-bottom: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    padding-right: 90px;
}

.header-area.style-two.sticky {
    background: #0a132e !important;
}

.header-area.style-two:before {
    position: absolute;
    content: "";
    width: 5.2%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
}

.style-two .header-logo {
    position: relative;
    left: -5px;
}

.style-two .header-menu {
    text-align: left;
    margin-left: 70px;
}

.style-two .header-menu ul li a {
    color: #ffff;
}

.style-two .header-menu ul li a:hover {
    color: #ffcbb1;
}

.style-two .header-contact-button h4 {
    color: #fff;
}





/*
<!-- =================================-->
<!-- spaclub Hero Area Css  Style Two-->
<!-- =================================-->
*/

.hero-wallpaper {
    background-color: #0a132e;
    height: 1074px;
    position: relative;
}

.hero-area.style-two {
    margin: 0 98px 0;
    background: url(../images/home-2/hero-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 800px;
    padding: 0;
}

.style-two .hero-content h4 {
    font-size: 18px;
    color: #0a132e;
    font-weight: 600;
    margin: 0 0 9px;
    padding: 0;
}

.style-two .hero-content img {
    margin-right: 11px;
    margin-bottom: 9px;
}

.style-two .hero-content h4:before {
    display: none;
}

.style-two .hero-content h1 {
    font-size: 55px;
    line-height: 55px;
    font-weight: 700;
}

.style-two .hero-content p {
    opacity: 0.702;
    font-size: 18px;
    line-height: 28px;
    color: #0a132e;
    font-weight: 400;
    width: 40%;
    margin: 59px 0 0;
    position: relative;
}

.style-two .line {
    position: relative;
}

.style-two .line:before {
    position: absolute;
    content: "";
    width: 47%;
    height: 1px;
    left: 0;
    top: 35px;
    background: rgba(10, 19, 46, 0.10196078431372549);
}

.style-two .hero-shape {
    position: absolute;
    top: -1px;
    left: 0;
}

.style-two .hero-shape2 {
    position: absolute;
    left: 36%;
    top: 111px;
}

.style-two .hero-social-icon {
    position: absolute;
    left: -70px;
    top: 48%;
}

.hero-social-icon ul li:nth-child(1) {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    transform: rotate(90deg);
    position: relative;
    left: -22px;
    top: -52px;
}

.hero-social-icon ul li:nth-child(1):before {
    position: absolute;
    content: "";
    width: 83px;
    height: 1px;
    left: -98px;
    top: 11px;
    background: rgba(255, 255, 255, 0.2);
}

.style-two .hero-social-icon ul li i {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 40px;
    color: #ffff;
    font-size: 14px;
    margin-bottom: 9px;
    transition: 0.5s;
}

.style-two .hero-social-icon ul li i:hover {
    background: #ffcbb1;
}

.style-two .hero-video {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 61px 39px 40px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.style-two .hero-video a {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #0a132e;
    font-weight: 500;
    font-family: var(--title-fonts);
    display: flex;
    align-items: center;
    gap: 20px;
}

.style-two .hero-video i {
    display: inline-block;
    width: 77px;
    height: 77px;
    border-radius: 39px;
    border: 1px solid #ffcbb1;
    text-align: center;
    line-height: 77px;
    font-size: 20px;
    position: relative;
    color: #fff;
    z-index: 1;
}

.style-two .hero-video i:after {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 30px;
    background-color: #ffcbb1;
    z-index: -1;
    margin: auto;
}

.style-two .hero-video p {
    font-size: 18px;
    line-height: 26px;
    color: #0a132e;
    font-weight: 500;
    margin: 0;
    font-family: var(--title-fonts);
}

.hero-single-box {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.hero-box-content h4 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 10px;
}

.hero-box-content p {
    margin: 0;
}

.hero-wallpaper .row.add-margin {
    margin-top: 89px;
}

.hero-wallpaper .hero-team-expt {
    display: flex;
    align-items: center;
    gap: 17px;
    float: right;
}

.hero-wallpaper .hero-team-expt-content h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}

.hero-wallpaper .hero-team-expt-content p {
    color: #a4a7b3;
    margin: 8px 0 0;
}

.hero-wallpaper .hero-box-shape {
    position: absolute;
    left: -103px;
    top: -24px;
}

.hero-wallpaper .hero-flower-shape {
    position: absolute;
    left: 41%;
    bottom: -119px;
    z-index: 1;
}


/*
<!-- =================================-->
<!-- spaclub About Area Css  Style Two-->
<!-- =================================-->
*/
.about-area.style-two {
    padding: 120px 0 121px;
    background: #f8f5f0;
}

.style-two .about-thumb {
    position: relative;
    left: -108px;
}



/*
<!-- =================================-->
<!-- spaclub Feature Area Css  Style Two-->
<!-- =================================-->
*/
.featurea-area.style-two {
    position: relative;
}

.featurea-area.style-two .section-title {
    position: relative;
    left: 0;
    position: relative;
    margin: 0 0 38px;
}

.featurea-area.style-two .owl-carousel .owl-item img {
    display: inline-block;
    width: 35%;
}

.featurea-area.style-two .single-feature-box {
    margin: 0 12px 0;
}

.featurea-area.style-two .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.featurea-area.style-two .owl-dot {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(226, 131, 106, 0.5019607843137255);
    margin: 0 3px 0;
}

.featurea-area.style-two .owl-dot.active {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    background: #ffcbb1;
}

.featurea-area.style-two .feature-right {
    position: relative;
    left: 89px;
    top: 0;
}

.featurea-area.style-two .feature-thumb-shape {
    position: absolute;
    top: 37px;
    left: 0;
    animation: rotateme 20s linear infinite;
}

.featurea-area.style-two .feature-thumb-shape2 {
    position: absolute;
    right: 0;
    bottom: 167px;
    animation: bns2 5s linear infinite;
}

.featurea-area.style-two .feature-shape {
    position: absolute;
    left: 0;
    top: 0;
    animation: bns1 3s linear infinite;
}

.featurea-area.style-two .feature-shap2 {
    position: absolute;
    right: 74px;
    top: -132px;
}


/*
<!-- =================================-->
<!-- spaclub Service Area Css  Style Two-->
<!-- =================================-->
*/
.service-area.style-two {
    background: #0a132e;
    border-radius: 20px 20px 0 0;
}

.service-area.style-two .section-title h1 {
    color: #fff;
}

.service-area.style-two .single-service-box {
    text-align: center;
    position: relative;
    margin: 0 14px 0;
}

.service-area.style-two .service-box-content {
    background: #19233F;
    border-radius: 10px 10px 0 0;
    padding: 32px 15px 70px;
    position: relative;
    z-index: 1;
}

.service-area.style-two .service-box-content:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    border-radius: 10px 10px 0 0;
    transition: 0.5s;
    z-index: -1;
}

.service-area.style-two .single-service-box:hover .service-box-content:before {
    width: 100%;
    left: 0;
}

.service-area.style-two .service-icon img {
    transition: 0.5s;
    width: 18%;
}

.service-area.style-two .single-service-box:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-area.style-two .service-box-content h4 {
    font-size: 30px;
    color: #ffffff;
    margin: 28px 0 0;
    font-weight: 500;
}

.service-area.style-two .service-box-content p {
    color: #a4a7b3;
    margin: 11px 0 0;
    transition: 0.5s;
}

.service-area.style-two .single-service-box:hover .service-box-content p {
    color: #fff;
}

.service-area.style-two .service-thum img {
    width: 100%;
}

.service-area.style-two .massage-time {
    width: 74px;
    height: 74px;
    border-radius: 37px;
    background-color: #ffcbb1;
    text-align: center;
    position: absolute;
    bottom: 44%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 12px 0 0;
    z-index: 11;
    transition: 0.5s;
}

.service-area.style-two .single-service-box:hover .massage-time {
    background: #1a2340;
}

.service-area.style-two .massage-time h4 {
    font-size: 22px;
    color: #fff;
    margin: 0;
}

.service-area.style-two .massage-time p {
    font-size: 12px;
    color: #fff;
    margin: 0;
    line-height: 16px;
}

.service-area.style-two .owl-carousel .owl-item img {
    display: inline-block;
}

/*
<!-- =================================-->
<!-- spaclub Choose Us Area Css  Style Two-->
<!-- =================================-->
*/
.choose-us-area.style-two {
    background: transparent;
    margin: 0;
}

.choose-us-area.style-two .section-title h1 {
    color: #0a132e;
}

.choose-us-area.style-two .row.add-bg {
    background: #f8f5f0;
    border-radius: 10px;
    padding: 20px 14px;
    margin-left: 0;
    margin-bottom: 27px;
}

.choose-us-area.style-two .choose-us-list-box ul li {
    color: #0a132e;
}

.choose-us-area.style-two .choose-us-thumb {
    position: relative;
    left: -79px;
}

.choose-us-area.style-two .choose-us-counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.choose-us-area.style-two .choose-us-conter-content h4 {
    font-size: 42px;
    display: inline-block;
    font-weight: 600;
}

.choose-us-area.style-two .choose-us-conter-content span {
    display: inline-block;
    font-size: 48px;
    opacity: 0.5;
    margin: 0;
}

.choose-us-area.style-two .choose-us-conter-content p {
    font-size: 18px;
    margin: 2px 0 0;
}


/*
<!-- =================================-->
<!-- spaclub Text Area Css  Style Two-->
<!-- =================================-->
*/
.text-section.style-two {
    background: #ffcbb1;
}

.text-section.style-two .marquee-block .content-box h6.title {
    color: #ffff;
}

.text-section.style-two .marquee-block .content-box h6.title img {
    filter: brightness(0) invert(1);
}

/*
<!-- =================================-->
<!-- spaclub Portfolio Area Css  Style Two-->
<!-- =================================-->
*/
.portfolio-area.style-two {
    padding: 120px 13px 110px;
    background: #f8f5f0;
    margin-top: 0;
}

.portfolio-area.style-two .single-port-thumb img {
    width: 100%;
}

.portfolio-area.style-two .single-port-box {
    position: relative;
    margin: 0 15px 77px;
}

.portfolio-area.style-two .port-content {
    display: flex;
    align-items: center;
    gap: 29px;
    background: #fff;
    width: 80%;
    padding: 0 15px 0 0;
    position: absolute;
    bottom: -58px;
    right: 0;
    border-radius: 10px 0 0 10px;
}

.portfolio-area.style-two .port-icon {
    background: #0a132e;
    padding: 29px 34px 29px;
    border-radius: 10px 0 0 10px;
    z-index: 1;
    position: relative;
}

.portfolio-area.style-two .port-icon:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffcbb1;
    z-index: -1;
    border-radius: 10px 0 0 10px;
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-icon:before {
    width: 100%;
}

.portfolio-area.style-two .port-icon img {
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-icon img {
    filter: brightness(0) invert(1);
}

.portfolio-area.style-two .port-title h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffcbb1;
    margin: 0;
    margin-left: 16px;
    margin-bottom: 11px;
    position: relative;
}

.portfolio-area.style-two .port-title h4:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    left: -12px;
    top: 5px;
    background: #ffcbb1;
    border-radius: 30px;
}

.portfolio-area.style-two .port-title a {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.portfolio-area.style-two .port-title a:hover {
    color: #ffcbb1;
}

.portfolio-area.style-two .port-button a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #ffcbb1;
    text-align: center;
    line-height: 60px;
    color: #ffff;
    border-radius: 5px 0 0 0;
    position: absolute;
    bottom: 60px;
    right: 0;
    opacity: 0;
    transition: 0.5s;
}

.portfolio-area.style-two .single-port-box:hover .port-button a {
    opacity: 1;
}

.portfolio-area.style-two .port-button i {
    display: inline-block;
    transform: rotate(-45deg);
}

.portfolio-area.style-two .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 55px;
}

.portfolio-area.style-two .owl-dot {
    position: relative;
    background: rgba(226, 131, 106, 0.5);
    width: 10px;
    height: 10px;
    border-radius: 30px;
    display: inline-block;
    margin: 0 3px 0;
}

.portfolio-area.style-two .owl-dot.active {
    width: 13px;
    height: 13px;
    background: #ffcbb1;
}


/*
<!-- =============================================-->
<!-- spaclub Teastimonial Area Css  Style Two-->
<!-- =============================================-->
*/
.teasti-area.style-two {
    background: url(../images/home-1/teasti-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding: 115px 0 113px;
    position: relative;
}

.teasti-area.style-two .teasti-content p {
    font-size: 22px;
    line-height: 36px;
    color: #0a132e;
    font-weight: 400;
    font-style: italic;
    width: 64%;
    margin: auto;
    margin-top: 31px;
    margin-bottom: 30px;
}

.teasti-area.style-two .teasti-author-content {
    margin-top: 148px;
}

.teasti-area.style-two .teasti-quote img {
    transition: 0.5s;
    width: 45px !important;
    margin: auto;
}

.teasti-area.style-two .teasti-author-content h4 {
    font-size: 22px;
    margin: 0;
}

.teasti-area.style-two .teasti-author-content p {
    margin: 6px 0 0;
}

.teasti-area.style-two .owl-dots {
    position: absolute;
    bottom: 89px;
    left: 38%;
}

.teasti-area.style-two .owl-dot {
    background: url(../images/home-2/teasti-dotte1.png);
    width: 75px;
    height: 75px;
    display: inline-block;
    margin: 0 14px 0;
}

.teasti-area.style-two .owl-dot.active {
    transform: scale(1.2);
}

.teasti-area.style-two .owl-dot:nth-child(2) {
    background: url(../images/home-2/teasti-dotte2.png);
}

.teasti-area.style-two .owl-dot:nth-child(3) {
    background: url(../images/home-2/teasti-dotte3.png);
}

.teasti-area.style-two .owl-dot:nth-child(4) {
    background: url(../images/home-2/teasti-dotte4.png);
}

.teasti-area.style-two .teasti-shape {
    position: absolute;
    bottom: 21%;
    left: 12%;
    animation: dance 3s alternate infinite;
}

.teasti-area.style-two .teasti-shape-2 {
    position: absolute;
    bottom: 65%;
    right: 10%;
    animation: dance 2s alternate infinite;
}

.teasti-area.style-two .teasti-shape-3 {
    position: absolute;
    top: 9%;
    left: 7%;
}

.teasti-area.style-two .teasti-shape-4 {
    position: absolute;
    bottom: 85px;
    right: 4%;
}

/*
<!-- =============================================-->
<!-- spaclub Team Area Css  Style Two-->
<!-- =============================================-->
*/
.team-area {
    background: #0a132e;
    padding: 120px 0 100px;
    margin: 0 58px 0;
    border-radius: 20px;
}

.team-area .section-title {
    margin-bottom: 56px;
}

.team-area .section-title h1 {
    color: #fff;
}

.team-area .single-team-box {
    background: #182240;
    text-align: center;
    border-radius: 160px 160px 0 0;
    padding: 0 0 34px;
    margin-bottom: 20px;
}

.team-area .team-content h4 {
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    margin: 28px 0 0;
}

.team-area .team-content p {
    color: #a4a7b3;
    font-weight: 500;
    margin: 5px 0 26px;
}

.team-area .team-social-icon ul li {
    display: inline-block;
}

.team-social-icon ul li i {
    color: #ffff;
    display: inline-block;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    margin: 0 -2px 0;
    transition: 0.5s;
}

.team-social-icon ul li i:hover {
    color: #ffcbb1;
}

.team-area .team-social-icon ul li:nth-child(1) i {
    border-radius: 3px 0 0 3px;
}

.team-area .team-social-icon ul li:nth-child(2) i {
    border-left: transparent !important;
}

.team-area .team-social-icon ul li:nth-child(3) i {
    border-left: transparent !important;
}

.team-area .team-social-icon ul li:nth-child(4) i {
    border-left: transparent !important;
    border-radius: 0 3px 3px 0;
}


/*
<!-- =============================================-->
<!-- spaclub Call Do Actions Area Css  Style Two-->
<!-- =============================================-->
*/

.call-do-action-area {
    background: url(../images/home-2/call-do-action-bg.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 105px 0 120px;
    margin: 0 50px 0;
    position: relative;
}

.call-do-content {
    margin-bottom: 39px;
}

.call-do-content h4 {
    font-size: 42px;
    color: #fff;
    line-height: 41px;
}

.call-do-sahpe {
    position: absolute;
    left: 48%;
    top: 30%;
}


/*inner Pages header style Css*/
.header-area.inner-style {
    border-bottom: 1px solid rgba(242, 228, 215, 0.2);
}

.header-area.inner-style.sticky {
    background: #0a132e !important;
}

.inner-style .header-menu ul {
    display: inline-block;
}

.inner-style .header-button {
    display: inline-block;
    margin-left: 30px;
}

.inner-style .header-menu ul li a {
    color: #ffff;
}

.inner-style .header-menu ul li a:hover {
    color: #ffcbb1;
}

/*inner Style All css*/
.featurea-area.inner-style .section-title {
    left: 0;
    position: relative;
    margin: 0;
    margin-bottom: 55px;
}

.service-area.inner-style {
    margin: 0;
    border-radius: 0;
}


.portfolio-area.style-two.inner-style {
    padding: 120px 88px 80px;
    background: #f8f5f0;
    margin-top: 0;
}

.portfolio-area.style-two.inner-style .port-content {
    width: 90%;
}

.portfolio-area.style-two.inner-style .single-port-box {
    position: relative;
    margin: 0 0 94px;
}

.team-area.inner-style {
    margin: 0;
    border-radius: 0;
}

.faqs-area.inner {
    background: #f8f5f0;
}


/*
<!-- =============================================-->
<!-- spaclub Breadcumb Area Css  Style Two-->
<!-- =============================================-->
*/

.breadcumb-area {
    background: url(../images/home-0/bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 276px 0 183px;
}

.breadcumb-content {
    text-align: center;
}

.breadcumb-content h4 {
    font-size: 50px;
    color: #ffff;
    text-transform: uppercase;
    margin: 0 0 9px;
    font-weight: 500;
}

.breadcumb-content ul li {
    display: inline-block;
    color: #ffff;
    font-family: var(--body-fonts);
    text-transform: uppercase;
}

.breadcumb-content ul li a {
    display: inline-block;
    color: #ffcbb1;
}


/*
<!-- =============================================-->
<!-- spaclub Faqs Area Css  Style Two-->
<!-- =============================================-->
*/
.faqs-area {
    padding: 118px 0 120px;
}

.faqs-area .section-title h4 {
    margin: 0 0 0px 50px;
}

.faqs-area .section-title {
    margin-bottom: 48px;
}

.faqs-container {
    overflow: hidden;
}

.faq-singular {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-top: transparent;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 20px 25px 19px 36px;
    font-size: 18px;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
    background: transparent;
    border: 1px solid rgba(23, 23, 23, 0.1);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: #151515;
}

.faq-singular.active .faq-question {
    background: #ffcbb1;
    color: #fff;
}

.faq-singular .faq-question:before {
    position: absolute;
    content: "+";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
    color: #222;
}

.faq-singular.active .faq-question:before {
    content: "-";
    font-size: 30px;
    color: #fff;
}

.faq-answer {
    display: none;
    padding: 21px 40px 25px;
}

/*
<!-- ========================================-->
<!-- spaclub Contact Area Css-->
<!-- ========================================-->*/
.inner-style.contact-area {
    padding: 120px 0 120px;
}

.inner-style.contact-area .section-title {
    margin-bottom: 41px;
}

.inner-style.contact-area .section-title p {
    margin: 0;
    margin-top: 21px;
    width: 90%;
}

.inner-style .row.add-backgroun {
    background-color: #f8f6f3;
    padding: 98px 67px 101px;
}

.inner-style .single-contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 41px;
    position: relative;
}

.inner-style .single-contact-box:before {
    position: absolute;
    content: "";
    width: 95%;
    height: 1px;
    left: 5px;
    bottom: -19px;
    background: #6161612b;
}

.inner-style .single-contact-box:last-child:before {
    background: transparent;
}

.inner-style .contact-icon i {
    background: #ffff;
    color: #ffcbb1;
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    display: inline-block;
}

.inner-style .contact-title h4 {
    font-size: 15px;
    line-height: 26px;
    color: #616161;
    font-weight: 400;
    font-family: var(--body-fonts);
}

.inner-style .contact-title p {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
    line-height: 32px;
}

.inner-style .single-contact-form {
    background-color: #272727;
    padding: 42px 53px 60px;
    text-align: center;
}

.inner-style .contact-content h4 {
    font-size: 28px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 26px;
}

.inner-style .single-input-box input {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #ffff;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 11px;
    padding: 0 21px;
}

.inner-style .single-input-box input::placeholder {
    color: #acacac;
}

.inner-style .single-input-box select {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #acacac;
    outline: 0;
    width: 100%;
    height: 60px;
    position: relative;
    padding: 0 19px;
    margin-top: 5px;
    text-transform: capitalize;
}

.inner-style .single-input-box textarea {
    background: transparent !important;
    border: 1px solid #acacac4f;
    color: #acacac;
    outline: 0;
    width: 100%;
    height: 120px;
    position: relative;
    padding: 9px 19px;
    margin-top: 17px;
}

.inner-style .single-input-box textarea::placeholder {
    color: #acacac;
}

.inner-style .single-input-box button {
    background: #ffcbb1;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
    width: 100%;
    border: transparent;
    padding: 16px 0;
    margin-top: 13px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.inner-style .single-input-box button:hover {
    color: #ffcbb1;
}

.inner-style .single-input-box button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.inner-style .single-input-box button:hover:before {
    width: 100%;
    left: 0;
}

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



/*
<!-- ========================================-->
<!-- spaclub Service Details Area Css-->
<!-- ========================================-->*/

.service-details-area {
    padding: 117px 0 100px;
}

.service-details-area .section-title {
    margin-bottom: 41px;
}


.single-service-details-box {
    background-color: #f2e4d7;
    padding: 12px 40px 30px;
}

.serive-details-box-content h4 {
    font-size: 32px;
    color: #151515;
    font-weight: 600;
    margin: 22px 0 13px;
}

.serive-details-box-content p {
    margin: 0 0 29px;
}

.serive-details-box-content h3 {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 500;
    border-bottom: 1px solid #11111130;
    margin-bottom: 19px;
    padding-bottom: 21px;
    font-family: var(--body-fonts);
}

.serive-details-box-content h3:last-child {
    border: transparent;
}

/* .service-details-area .project-button.style-two {
     margin-top: 71px; 
} */

.service-details-title h6 {
    font-size: 16px;
    color: #f68043;
    font-weight: 500;
}

/* .service-details-title h4 {
    font-size: 40px;
    color: #1e1e1e;
    font-weight: 500;
    margin: 7px 0 15px;
} */

.service-details-title p {
    width: 93%;
}

h4.margin {
    margin-top: 51px;
}

.service-details-thumb img {
    width: 100%;
}

.service-details-area .row.add-margin {
    margin-top: 100px;
}

.service-details-area .row.add-bg {
    background-color: #f9f4ef;
    padding: 63px 62px 75px;
    margin-top: 85px;
}

.service-box-item h4 {
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-box-item ul li i {
    font-size: 21px;
    color: #ffcbb1;
    padding-right: 7px;
    position: relative;
    top: 5px;
}

.service-box-item ul li {
    line-height: 38px;
}

.single-service-dtl-box {
    border: 1px solid rgba(21, 21, 21, 0.1);
    margin-bottom: 20px;
}

.servic-dtl-thumb img {
    width: 100%;
}

.service-dtl-content {
    padding: 26px 34px 34px;
}

.service-dtl-content h4 {
    font-size: 32px;
    color: #151515;
    font-weight: 600;
    margin: 0 0 13px;
}

.service-dtl-content a {
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--title-fonts);
    background: #ffcbb1;
    padding: 6px 28px;
    border-radius: 30px;
    margin-top: 11px;
}



/*
<!-- ========================================-->
<!-- spaclub Portfolio Details Area Css-->
<!-- ========================================-->*/

.portfolio-details-area {
    padding: 119px 0px 63px;
}

.portfolio-details-thumb img {
    width: 100%;
    padding-bottom: 60px;
}

.port-details-content h4 {
    font-size: 16px;
    color: #ffcbb1;
    font-weight: 500;
    background: #F8F1EB;
    display: inline-block;
    padding: 8px 12px;
    text-transform: uppercase;
    border-radius: 5px;
}

.port-details-content h1 {
    font-size: 50px;
    color: #1e1e1e;
    font-weight: 500;
    margin: 12px 0 18px;
}

.port-details-content p {
    width: 80%;
    margin: 0 0 31px;
}

.port-details-content ul li {
    height: 40px;
}

.port-details-content ul li i {
    display: inline-block;
    font-size: 22px;
    color: #ffcbb1;
    position: relative;
    top: 3px;
    margin-right: 6px;
}

.single-port-info-box {
    background: #f2e4d7;
    padding: 36px 40px 31px;
}

.single-port-info-box h4 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 600;
    margin: 0 0 14px;
}

.single-port-info-box strong {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: var(--body-fonts);
}

.single-port-info-box span {
    display: inherit;
    line-height: 32px;
}

.port-social-icon {
    border-top: 1px solid #22222226;
    padding: 20px 0 0px;
    margin-top: 20px;
}

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

.port-social-icon ul li i {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 1px solid rgba(21, 21, 21, 0.15);
    text-align: center;
    font-size: 14px;
    line-height: 32px;
    display: inline-block;
    color: #111;
    transition: 0.5s;
}

.port-social-icon ul li i:hover {
    background: #ffcbb1;
    color: #fff;
}

.portfolio-details-area .row.add-margin {
    padding-top: 80px;
    border-top: 1px solid #1111;
    margin-top: 68px;
}



/*
<!-- ========================================-->
<!-- spaclub Blog Details Area Css-->
<!-- ========================================-->*/


.blog-details-area {
    padding: 118px 0 122px;
}

.blog-details-thumb img {
    width: 100%;
}

.blog-details-content {
    margin-top: 35px;
}

.blog-details-area .meta-blog ul li {
    display: inline-block;
    color: #616161;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    margin-right: 4px;
}

.blog-details-title a {
    display: inline-block;
    font-size: 32px;
    color: #1e1e1e;
    font-weight: 600;
    font-family: var(--title-fonts);
    padding-top: 20px;
}

.blog-details-desc p {
    width: 97%;
    margin: 20px 0 27px;
}

.blog-details-title h4 {
    font-size: 28px;
    margin-bottom: 14px;
    margin-top: 48px;
}

.blog-details-rules-item {
    margin-top: 34px;
}

.blog-details-rules-item ul li {
    color: #1e1e1e;
    font-size: 16px;
    margin-bottom: 14px;
}

.blog-details-rules-item ul li i {
    color: #ffcbb1;
    font-size: 16px;
    margin-right: 9px;
}

.blog-details-thumb-2 img {
    width: 100%;
    margin-top: 39px;
    margin-bottom: 8px;
}

.row.akta-boder-add-korlam {
    border-top: 1px solid #22222214;
    padding-top: 26px;
    border-bottom: 1px solid #22222214;
    padding-bottom: 26px;
    margin-bottom: 66px;
}

.blog-details-tag ul li {
    display: inline-block;
    color: #101010;
    font-size: 20px;
    font-family: var(--fonts-title);
    margin-right: 13px;
    font-weight: 600;
}

.blog-details-tag ul li a {
    display: inline-block;
    color: #616161;
    font-size: 15px;
    font-family: var(--fonts-body);
    border: 2px solid #f8f6f3;
    padding: 2px 20px;
    transition: 0.5s;
}

.blog-details-tag ul li a:hover {
    background: #ffcbb1;
    color: #fff;
}

.blog-details-social {
    text-align: right;
}

.blog-details-social ul li {
    display: inline-block;
    color: #101010;
    font-size: 20px;
    font-family: var(--fonts-title);
    font-weight: 600;
}

.blog-details-social ul li a {
    display: inline-block;
    color: #1e1e1e;
    font-weight: 400;
    font-family: var(--fonts-title);
    text-transform: uppercase;
    font-size: 16px;
    margin-left: 14px;
    transition: 0.5s;
    position: relative;
}

.blog-details-social ul li a:hover {
    color: #ffcbb1;
    ;
}

.blog-details-social ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    left: 0;
    bottom: 2px;
    background: #C29D68;
    transition: 0.5s;
}

.blog-details-social ul li a:hover:before {
    width: 100%;
}

.blog-related-box {
    display: flex;
    background: #f8f6f3;
    align-items: center;
    padding: 30px 21px 31px 70px;
    gap: 19px;
}

.blog-related-box.style-two {
    text-align: right;
    padding: 30px 63px 31px 21px;
}

.blog-related-content a {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.blog-related-content p {
    font-size: 14px;
    margin: 0;
}


/* Comment CSS */

.blog-details-comment-title h4 {
    font-size: 32px;
    margin: 83px 0 28px;
}

.blog-details-comment {
    margin-bottom: 19px;
    position: relative;
    border: 1px solid #22222214;
    padding: 29px 29px 25px;
}

.blog-details-comment.style-two {
    margin-left: 105px;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-content {
    overflow: hidden;
}

.blog-details-comment-content h2 {
    font-size: 20px;
    margin-top: 0;
    display: inline-block;
    font-weight: 500;
    margin-right: 30px;
}

.blog-details-comment-content p {
    font-size: 16px;
    margin: 13px 0 0;
}

.blog-details-comment-reply {
    position: absolute;
    right: 22px;
    top: 21px;
}

.blog-details-comment-reply a {
    background: #ffcbb1;
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}

.blog-details-comment.reply {
    margin-left: 70px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 22px;
}

.blog-details-area .contact-input-box input {
    background: #f8f8f8;
    border: transparent;
    width: 100%;
    height: 60px;
    padding: 22px;
    outline: 0;
    margin-bottom: 11px;
}

.blog-details-area .contact-input-box textarea {
    background: #f8f8f8;
    border: transparent;
    width: 100%;
    height: 170px;
    padding: 12px 22px 0;
    outline: 0;
    margin-top: 11px;
    margin-bottom: 20px;
}

.input-check-box span {
    font-size: 15px;
    margin-left: 7px;
}

.blog-details-submi-button button {
    background: #ffcbb1;
    color: #fff;
    text-transform: uppercase;
    border: transparent;
    padding: 12px 26px;
    font-size: 15px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border: 1px solid #ffcbb1;
}

.blog-details-submi-button button:hover {
    color: #ffcbb1;
}

.blog-details-submi-button button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
}

.blog-details-submi-button button:hover:before {
    width: 100%;
    left: 0;
}


/*Blog-details-sidbar*/

.widget_search {
    padding: 13px 40px 37px;
    border-radius: 4px;
    margin-bottom: 30px;
    background: #f2e4d7;
}

.widget_search form {
    position: relative;
    margin-top: 25px;
}

.widget_search input {
    border-radius: 4px;
    padding-left: 20px !important;
    height: 60px;
    width: 100% !important;
    position: relative;
    color: #012549;
    outline: 0 !important;
    border: transparent !important;
}


button.icons {
    border: 0;
    font-size: 16px;
    position: absolute;
    right: 14px;
    top: 18px;
    color: #1e1e1e;
    background: transparent;
    opacity: 0.7;
}


/* Sidber Recent Post */

.widget-categories-box {
    background: #f2e4d7;
    padding: 21px 37px 15px;
    margin-bottom: 32px;
}

.categories_title h4 {
    font-size: 24px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 42px;
    position: relative;
}

.categories_title h4:before {
    position: absolute;
    content: "";
    width: 55px;
    height: 1px;
    left: 0;
    bottom: -6px;
    background: #1e1e1e;
}

.sidber-widget-recent-post {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.recent-widget-content a {
    transition: 0.5s;
    color: #101010 !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--title-fonts);
}

.sidber-widget-recent-post:hover .recent-widget-content a {
    color: #ffcbb1 !important;
}

.recent-widget-content p {
    font-size: 14px;
    margin: 0;
}

.widget-catefories-list ul li {
    border-bottom: 1px solid rgba(16, 16, 16, 0.1);
    margin-bottom: 11px;
    padding-bottom: 14px;
}

.widget-catefories-list ul li:last-child {
    border: transparent;
}

.widget-catefories-list ul li a {
    display: inline-block;
    color: #1e1e1e;
    font-weight: 500;
    font-family: var(--title-fonts);
    font-size: 18px;
    transition: 0.5s;
}

.widget-catefories-list ul li a:hover {
    color: #ffcbb1;
}

.widget-catefories-list ul li i {
    display: inline-block;
    font-size: 14px;
    margin-right: 9px;
    transition: 0.5s;
}

.widget-catefories-list ul li a:hover i {
    color: #ffcbb1;
}

.widget-catefories-tags a {
    display: inline-block;
    color: #101010;
    font-weight: 500;
    font-family: var(--title-fonts);
    background: #fff;
    padding: 6px 19px;
    margin: 6px 3px;
    position: relative;
    z-index: 1;
}

.widget-catefories-tags a:hover {
    color: #fff;
}

.widget-catefories-tags a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #ffcbb1;
    transition: 0.5s;
    z-index: -1;
}

.widget-catefories-tags a:hover:before {
    width: 100%;
    left: 0;
}



/*
<!-- ========================================-->
<!-- spaclub Blog List Area Css-->
<!-- ========================================-->*/

.single-list-area.style-two {
    padding: 119px 0 54px;
}

.single-list-area.style-two .section-title {
    margin-bottom: 40px;
}

.single-list-area.style-two .style-two.project-button a {
    border: 1px solid rgba(21, 21, 21, 0.2);
    background: transparent;
    color: var(--secondary-color);
}

.single-list-area.style-two .style-two.project-button a:hover {
    color: #fff;
}

.style-two .single-blog-box {
    text-align: center;
}

.style-two .single-blog-thumb {
    overflow: hidden;
}

.style-two .single-blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.style-two .single-blog-box:hover .single-blog-thumb img {
    transform: scale(1.2);
}

.style-two .blog-content {
    background: #fff;
    padding: 28px 38px 25px;
}

.style-two .meta-blg {
    margin-bottom: 12px;
}

.style-two .meta-blg span {
    display: inline-block;
    text-transform: uppercase;
    margin: 0px 19px;
    position: relative;
}

.style-two .meta-blg span:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 9px;
    top: 9px;
    left: -14px;
    background: #ffcbb1;
}

.style-two .blog-content a {
    display: inline-block;
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: var(--secondary-color);
    transition: 0.5s;
}

.style-two .blog-content a:hover {
    color: #ffcbb1;
}

/*
<!-- ========================================-->
<!-- spaclub Blog Grid Area Css-->
<!-- ========================================-->*/
.blog-grid-area {
    padding: 118px 0 88px;
}











/*
<!-- ============================================================== -->
<!-- spaclub Scrollup Button Css  -->
<!-- ============================================================== -->*/

/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #ffcbb1;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: #c19d68;
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: #ffcbb1;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}




/* Hide mobile header by default (will show on mobile) */
.mobile-header {
    display: none;
}

/* Mobile Header Styles */
@media only screen and (max-width: 1200px) {
  


    .video-area {
    background: url(../images/home-1/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    padding: 290px 0 290px;
    /* margin: 0 63px 0; */
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
/* .first img{
    display: none;
} */
.service-details-area
{
    padding-top: 0px!important
    ;
}
    /* Hide desktop header completely */
    .top-headar-area,
    .header-area {
        display: none !important;
    }

    .hero-content h1 span {
        margin-top: 11px;
    }

    /* Show mobile header */
    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-logo img {
        height: 30px;
        width: auto;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-call {
        color: #000;
        font-size: 18px;
    }

    .mobile-menu-toggle {
        font-size: 20px;
        cursor: pointer;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-close {
        text-align: right;
        padding: 15px;
        font-size: 22px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        font-weight: 500;
    }

    .mobile-menu-dropdown>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 0;
        background: #f9f9f9;
    }

    .mobile-submenu li a {
        padding-left: 30px;
        font-size: 14px;
    }

    .mobile-menu-dropdown.active .mobile-submenu {
        display: block;
    }

    .mobile-menu-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .mobile-menu-footer {
        padding: 20px;
        text-align: center;
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-social a {
        color: #df856c;
        font-size: 18px;
    }

    .mobile-appointment-btn {
        display: inline-block;
        padding: 10px 20px;
        background: #0a132e;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
    }

    /* Overlay when menu is open */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
    }

    /* .mobile-menu-overlay.active {
     display: block; 
    } */

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #fff !important;
        z-index: 1001;
        /* Higher than overlay */
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile View (up to 767px) */
@media only screen and (max-width: 767px) {
    .ppp {
        padding-top: 20px !important;
    }
    .row.align-items-center {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .col-lg-8,
    .col-lg-4,
    .col-md-12 {
        width: 100%;
        padding: 0;
    }

    .section-title {
        /* margin-bottom: 25px;
        padding-bottom: 15px; */
        position: relative;
    }

    .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        /* background: linear-gradient(90deg, #f3a2a2, #f86d6d); */
    }

    .section-title h4 {
        font-size: 20px;
        color: #f86d6d;
        letter-spacing: 2px;
        margin-bottom: 12px;
        /* text-transform: uppercase; */
    }

    .section-title h1 {
        font-size: 26px;
        margin-bottom: 8px;
        font-weight: 600;
        color: #222;
    }

    .section-title h1:last-of-type {
        margin-bottom: 0;
    }

    .project-button {
        margin-top: 10px;
    }

    .project-button a {
        display: inline-flex;
        align-items: center;
        padding: 12px 25px;
        font-size: 15px;
        font-weight: 500;
        color: white;
        background: linear-gradient(135deg, #f86d6d, #fd4747);
        border-radius: 30px;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(253, 71, 71, 0.3);
        transition: all 0.3s ease;
    }

    .project-button a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(253, 71, 71, 0.4);
    }

    .project-button a i {
        margin-left: 8px;
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .project-button a:hover i {
        transform: translateX(3px);
    }


    .hero-area {
        padding-top: 0px;
    }

    .featurea-area {
        padding-top: 60px;
    }

    .about-area {
        padding-bottom: 0px;
        ;
    }

    .portfolio-area {
        padding-bottom: 0px;
    }


    .blog-area {
        padding-top: 60px;
    }

    .pricing-area {
        padding-top: 60px;
    }

    .Services {
        display: none;
    }

    .massage-time {
        display: none;
    }

    .inner-style.contact-area {
        padding: 0px;
    }
}



/* Mobile Footer - Hidden by default */
.mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(255, 255, 255, 0.98); */
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 0px;
    padding: 5px 16px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
}

.footer-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 6px;
}

.whatsapp-btn {
    color: #000;
    background: #e2836a;
    width: 210px;
    border: 2px solid black;
    border-right: none;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.call-btn {
    color: #000;
    background: #e2836a;
    width: 210px;
      border: 2px solid black;
}

.call-btn:hover {
    background: rgba(0, 122, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

/* Show only on mobile devices */
@media (max-width: 767px) {

    .footer-buttons{
        padding-bottom: 30px;
    }

    
    body {
        padding-bottom: 35px;
        /* Space for footer */
    }

    .mobile-footer {
        display: flex;
    }
}

/* Demo content styling */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #222;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}


/* Desktop Floating Buttons */
.contact-float {
    display: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
    width: 28px;
    height: 28px;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1fba58;
}

.btn-call {
    background: #007AFF;
}

.btn-call:hover {
    background: #0069d9;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.contact-btn:hover .btn-tooltip {
    opacity: 1;
}

/* Mobile Footer */
.contact-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}




.footer-icon {
    width: 22px;
    height: 22px;
    margin: 6px;
}

.footer-whatsapp {
    /* color:; */
    background: #f8f5f0;
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-call {
    /* color: #f8f5f0; */
    background: #f8f5f0;
}

.footer-call:hover {
    background: rgba(0, 122, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

/* Responsive Visibility */
@media (min-width: 768px) {
    .contact-float {
        display: flex;
    }

    body {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 20x;
    }

    .contact-footer {
        display: flex;
    }

    .footar-contact .contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px!important;
  margin: 0!important;
}

.footar-contact .contact-item img {
  width: 20px!important;
  height: 20px!important;
  object-fit: contain!important;
}

}

/* Demo Content */
.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #222;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}


#sticky-header.sticky .header-menu ul li a {
    color: #0a132e;
    /* Change this to any color you want after scroll */
}

#sticky-header.sticky .header-contact-button h4 {
    color: #0a132e;
}


@media (max-width: 1023px) {
  #sticky-header {
    display: none;
  }
}
@media (max-width: 1023px) {
  .top-headar-area {
    display: none;
  }
}



/* General styling */
.add-bg {
  padding: 40px 20px;
  background-color: #f9f2ec; /* Soft background similar to image */
  font-family: 'Arial', sans-serif;
}

.service-box-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-box-item h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-box-item p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.service-box-item ul {
  list-style: none;
  padding-left: 0;
}

.service-box-item ul li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}

.service-box-item ul li i {
  color: #f27b6a; /* Red check icon */
}

/* Responsive layout */
@media (min-width: 992px) {
  .add-bg {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-left: 120px;
    padding-right: 120px;
  }

  .add-bg .col-lg-6 {
    flex: 1;
  }
}


.service-details-area {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.service-details-area .row {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  align-items: stretch;
}

/* Image section */
.service-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-height: 400px;
}

/* Info box */
.service-info-box {
  flex: 1;
  background-color: #f9f2ec;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 300px;
}

.service-info-content h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-info-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.service-info-content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  color: #333;
}

.service-info-content h3 span {
  color: #777;
  font-weight: normal;
}

.project-button.style-two a {
  display: inline-block;
  margin-top: 25px;
  background-color: #f27b6a;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-button.style-two a:hover {
  background-color: #d6554a;
}

/* Responsive fix */
@media (max-width: 991px) {
  .service-details-area .row {
    flex-direction: column;
  }

  .service-image-wrapper img {
    max-height: none;
  }
}


/* Global styles */
.add-margin {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Service details text */
.service-details-title {
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.service-details-title h6 {
  color: #0a132e;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* .service-details-title h4 {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
} */

.service-details-title ul.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #444;
}

.benefits-list li i {
  color: #28a745;
  margin-right: 10px;
}

.service-details-title .h5m {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  color: #0a132e;
}

.service-details-title p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Image section */
.service-details-thumb {
  position: relative;
  padding: 20px;
}

.service-details-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.results-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .service-details-title {
    padding: 10px 15px;

  }

  .service-details-title h4 {
    font-size: 22px;
  }

  .benefits-list li {
    font-size: 14px;
  }

  .service-details-title .h5m {
    font-size: 18px;
  }

  .service-details-title p {
    font-size: 14px;
  }

  .results-caption {
    font-size: 13px;
  }
}


@media screen and (min-width: 992px) {
  .service-details-title {
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    margin-left: 90px;
  }

  /* Image section */
  .service-details-thumb {
    position: relative;
    padding: 20px;
    padding-right: 110px;
  }
}



/* Phone View - Default (up to 767px) */

.add-margin {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 16px;
}

.service-details-title {
  text-align: left;
}

.service-details-title h6 {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
/* 
.service-details-title h4 {
  font-size: 22px;
  color: #0a132e;
  font-weight: 700;
  margin-bottom: 16px;
} */

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.benefits-list i {
  color: #20c997;
  font-size: 16px;
  margin-right: 8px;
}

.service-details-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.h5m {
  font-size: 17px;
  font-weight: 600;
  color: #0a132e;
  margin: 24px 0 10px;
}

.service-details-thumb {
  position: relative;
  margin-top: 30px;
}

.service-details-thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.space-bottom{
  margin-bottom: 30px;
}


@media only screen and (max-width: 767px) {
  .benefits-list li {
    font-size: 16px;
  }
}


@media only screen and (min-width: 992px) {
  .ppssddd {
    padding-left: 120px;
    padding-right: 120px;
  }
}


@media only screen and (max-width: 767px) {
  .service-details-area .row {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footar-contact {
    display: none;
  }
}

  @media (max-width: 767px) {
    .footer-buttons {
      justify-content: center !important;
    }

  }
  @media (max-width: 767px) {
    .footer-bottom-links ul {
        padding: 10px;
      justify-content: center !important;
    }
  }

  @media (min-width: 992px) {
  .h1cust {
    font-size: 40px;
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .h1cust {
    font-size: 24px;
    margin-top: 10px;
  }
}


@media (max-width: 767px) {
  .mb-phone {
    padding-bottom: 20px; /* or any value you prefer */
  }
}




.google-review-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    width: fit-content;
    transition: transform 0.3s;
}

.google-review-box:hover {
    transform: translateY(-3px);
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 20px;
    color: #000;
}

.review-text {
    display: flex;
    flex-direction: column;
    color: #333;
}

.review-count {
    font-size: 1rem;
    font-weight: 500;
}

.stars i {
    color: #fbbc04; /* Yellow Google star color */
    margin-right: 2px;
    font-size: 1.1rem;
}


@media only screen and (max-width: 767px) {
  .google-review-box {
    margin-left: 40px;
  }
}



@media (max-width: 767px) {
  .mb-mar {
    margin-bottom: 20px; /* or any value you prefer */
  }
}



@media (min-width: 992px) {
  .portfolio-area {
    padding-bottom: 380px; /* 48px */
  }
}


/* @media (min-width: 992px) {
  .image_load {
    height: 700px !important;
  }
} */


.why-choose-area {
  padding: 70px 0;
  background: var(--white);
}
.section-title h1 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--secondary-color);
}
.section-title h4 {
  color: #ffcbb1;
  font-weight: 600;
}
.single-feature-box {
  background: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.single-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.feature-icon {
  background: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.3s;
}
.feature-icon svg {
  width: 50px;
  height: 50px;
  fill: #ffcbb1;
}
.single-feature-box:hover .feature-icon {
  background: #ffcbb1;
}
.single-feature-box:hover .feature-icon svg {
  fill: var(--white);
}
.feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--secondary-color);
}
.feature-content p {
  font-size: 16px;
  color: #555;
}
.founder-area {
  padding: 90px 0;
  background: linear-gradient(135deg, #fffaf9, #fdf3f0);
}
.founder-content h4.sub-title {
  color: #ffcbb1;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.founder-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.founder-content h5 {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
.founder-btn {
  display: inline-block;
  background: #ffcbb1;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.founder-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
}
.founder-img img {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
  max-height:500px;
}
.founder-img img:hover {
  transform: scale(1.05);
}
        .cta-container {
            width: 100%;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .cta1 {
                background: linear-gradient(rgb(245 152 126 / 38%), rgb(236 152 124 / 33%)), url(https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80) center / cover no-repeat;
            padding: 80px 40px;
            text-align: center;
            position: relative;
        }
        
        .cta2 {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .cta3 {
            color: #ffcbb1;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 16px;
            margin-bottom: 15px;
            display: block;
        }
        
        .cta4 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--white);
        }
        
        .cta5 {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--white);
        }
        
        .cta6 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .cta7 {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            max-width: 220px;
        }
        
        .cta8 {
            color: #ffcbb1;
            font-size: 24px;
            margin-right: 15px;
        }
        
        .cta9 {
            text-align: left;
            font-size: 15px;
            font-weight: 500;
            color: var(--white);
        }
        
        .cta10 {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta11 {
            background-color: #ffcbb1;
            color: var(--white);
            border: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta11:hover {
            background-color: #d1755d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .cta12 {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 14px 33px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta12:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .cta13 {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            opacity: 0.8;
            color: var(--white);
        }
        
        .cta14 {
            color: #ffcbb1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .cta1 {
                padding: 60px 30px;
            }
            
            .cta4 {
                font-size: 32px;
            }
            
            .cta5 {
                font-size: 16px;
            }
            
            .cta6 {
                gap: 15px;
            }
            
            .cta7 {
                padding: 12px 15px;
                max-width: 100%;
                flex: 1;
                min-width: 160px;
            }
            
            .cta10 {
                flex-direction: column;
                align-items: center;
            }
            
            .cta11, .cta12 {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .cta1 {
                padding: 50px 20px;
            }
            
            .cta4 {
                font-size: 28px;
            }
            
            .cta7 {
                min-width: 100%;
            }
        }
          .service-content1 h4 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        color: #2a2829 !important;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    .appointment-btn:hover {
        color:#e2836a !important;
    }
    .blog-header {
    padding: 0 0 10px 0;
    margin: 0 10px;
}
@media (max-width: 480px) {
    .sidebar-widget {
        padding: 15px;
        margin: 0 20px;
    }
}
.appointment-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-color, #007bff);
    padding: 15px 6px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    width: auto !important;
}
@media only screen and (min-width: 320px) and (max-width: 574px) {
    .breadcumb-content h4 {
        font-size: 22px !important;
    }
}
.blog-featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px;
}
.faq-singular .faq-question:before {
position: absolute;
    content: "+";
    right: 30px;
    margin: 0 -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
    color: #222;
}
.blog-header {
    padding: 0 0 10px 0;
    margin: 0 10px !important;
}
.inner-style .row.add-backgroun {
    background-color: #f8f6f3;
    padding:0  !important;
}
.header-area {
    padding: 4px 46px 4px;
    margin-bottom: -94px;
    border-bottom: 1px solid rgba(84, 31, 92, 0.1);
    background: #ffffff24;
    position: relative;
    /* filter: blur(); */
    z-index: 1;
}:root {
    --primary-color: #efde88 !important;
    --secondary-color: #000208 !important;
    --white: #ffffff;
    /* --primary-color: #e2836a;
    --secondary-color: #000208;
    --white: #ffffff; */


}
