@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}
p {
    font-size: 16px;
    font-weight: normal;
}

/* Navbar section */
.nav {
    width: 100%;
    position: sticky;
    text-align: center;
    background-color: #fff;
    top: 0;
}
.main-nev {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav div.logo {
    float: left;
    width: auto;
    height: auto;
}
.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}
.nav div.logo a:hover {
    color: #00E676;
}
.nav div.logo a img{
    height: 100px;
}
.nav div.main_list ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    padding: 0;
    gap: 25px;
}
.nav div.main_list ul li {
    width: auto; 
}
.man-ul{
    padding:0 30px;
}
.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    color: #000000;
    transition: 0.3s;
    font-weight: 500;
}
.nav div.main_list ul li a:hover {
    color: #b93e6a;
}
.nav div.main_list ul li a.active {
    color: #b93e6a;
    border-bottom: 1px solid #b93e6a;
}
.pt-100 {
    padding-top: 100px;
}
.navTrigger {
    display: none;
}
.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 8;
    transition: all 0.4s ease;
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: FIXED;
    right: 30px;
    top: 48px;
    /* bottom: 0; */
}
.navTrigger i {
    background-color: #ec5248;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}
.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(9px) rotate(0deg);
    }

    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }

    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    position: sticky;
    top: 0;
    background-color: #fff;
}
.proj {
    height: 100%;
    position: relative;
}
.proj .slick-prev {
    left: 19%;
    z-index: 1;
}
.proj .slick-next {
    right: 19%;
}

.slick-prev:before,
.slick-next:before {
    opacity: 1 !important;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    color: rgb(0, 0, 0) !important;
    content: ">" !important;
    /* z-index: 8; */
}
.slick-prev,
.slick-next {
    width: 50px !important;
    height: 50px !important;
    background-color: #fff !important;
    border-radius: 50px;
}
.slide-container {
    width: 100%;
}
.wrapper {
    margin: 0 5px;
}
.skillSec {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.skillSec img {
    height: 30px;
    margin: 10px;
}

/* .card {
    width: 100%;
    height: 60vh;
    display: inline-block;
    margin: auto;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    background: -webkit-linear-gradient(0deg, red, orange);

} */
footer{
    background-color: #292929;
    padding: 70px 0;
}
.usefull-link {
    padding: 0;
    list-style: none;
    margin: 0;
}
.usefull-link a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}
.social-link-man{
    display: flex;
    padding: 0;
    padding: 0;
    list-style: none;
    gap: 50px;
}
.social-link-man a{
    color: #fff;
    font-size: 14px;
    display: flex;
    gap: 10px;
    text-decoration: none;
}
footer a:hover{
    color: #b93e6a;
}
.bottom-footer{
    border-top: 1px solid #484848;
    padding: 30px 0;
    margin-top: 50px;
}
.bottom-footer p{
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}
.container {
    max-width: 1790px;
}



.hero-dtl {
    background: transparent linear-gradient(61deg, #492C5A 0%, #904065 52%, #AB476B 100%);
    border-radius: 50px;
    margin-bottom: 300px;
    padding: 80px 112px 0;
}
.mbl-img {
    margin-bottom: -200px;
}
.hero-dtl h1 {
    font-size: 75px;
    font-weight: 800;
    color: #fff;
}
.hero-dtl p {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 36px 0 100px;
}
.black-btn {
    padding: 15px 23px;
    border-radius: 10px;
    background: #000000;
    color: #FFFFFF;
    font-size: 25px;
    text-decoration: none;
}
.white-btn {
    padding: 15px 23px;
    border-radius: 10px;
    background: #fff;
    color: #B93E6A;
    font-size: 25px;
    text-decoration: none;
}
.section-heading h2 {
    font-size: 50px;
    font-weight: 700;
}
.section-heading p {
    font-size: 15px;
    font-weight: 400;
    width: 80%;
    margin: auto;
    color: #616161;
    line-height: 34px;
}
.multipal-clr {
    background: transparent linear-gradient(76deg, #182155 0%, #833463 52%, #B93E6A 100%);
    padding: 17px 50px;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    border: 0;
}
.multipal-clr:hover,
.black-btn:hover {
    color: #fff;
    text-decoration: none;
}
.white-btn:hover {
    color: #B93E6A;
}
a {
    text-decoration: none;
}
.application-feture {
    margin: 150px 0;
}
.application-feture .section-heading {
    padding: 150px 80px;
    color: #fff;
    background-color: #292929;
    border-radius: 50px 0px 0px 50px;
    height: 100%;
}
.application-feture .section-heading p {
    color: #F2F2F2;
    font-size: 20px;
    width: 100%;
    margin-top: 30px;
}
section.dynamic-wellness {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 40px;
}
.join-review {
    background-image: url(../images/community-bg.png);
    padding: 120px 0;
    margin: 80px 0;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}
.review-box {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #D4D4D4;
    margin-top: 20px;
    background-color: #fff;
}
.review-box p {
    font-size: 16px;
    color: #303437;
    font-weight: 300;
    margin: 0;
}
.review-box h3 {
    margin-top: 10px;
    margin-bottom: 0;
    color: #979C9E;
    font-size: 20px;
}
.join-review .section-heading p {
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}
.subscribe-news-letter {
    padding: 80px 0;
}
.subscribe-news-letter .cmn-frm {
    width: 80%;
    position: relative;
    margin: 30px auto 0;
}
.cmn-frm input {
    width: 100%;
    margin: auto;
    padding: 14px 10px;
    border-radius: 50px;
    border: 1px solid #B6B6B6;
}
.subscribe-news-letter .cmn-frm button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.faq-section .accordion-item {
    margin-bottom: 24px;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}
.accordion-expl {
    margin-top: 50px;
}
.faq-section {
    background-color: #F1F5F9;
    padding: 80px 0;
}
.accordion-button {
    justify-content: space-between;
}
.accordion-button:not(.collapsed) {
    color: #B93E6A;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 #B93E6A;

}
.accordion-button::after {
    background-image: url(../images/dropdown.svg);
    background-size: auto;
    height: 0.6rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/dropdown.svg);
}


.delte-act-man {
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px #b53c674d;
    display: inline-block;
    width: 400px;
    margin: 80px 0;
}
.delte-act-man h2{
    font-size: 22px;
    margin-bottom: 20px;
}
.delte-act-man button{
    padding: 8px 40px;
    border: 0;
    border-radius: 10px;
    margin-top: 20px;
    background-color: #652F5F;
    color: #fff;
}
.delte-act-man input{
    width: 100%;
    border-radius: 50px;
    border: 1px solid #b5b5b5;
    padding: 8px 10px;
    font-size: 14px;
}



.how-its-work{

}
.how-its-work .top-sce{
    border-radius: 20px;
    position: relative;
}
.how-its-work .top-sce:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.top-sce-txt{
    z-index: 9;
}
.top-sce-txt p{
    color: #fff;
}

.divider {
    width: 70px;
    height: 6px;
    background: #000;
    display: inline-block;
    position: relative;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.comnity .section-title {
    text-transform: uppercase;
    font-weight: 300;
}
.comnity .section-title strong {
    font-weight: 700;
}

.comnity .img-dotted-bg {
    position: relative;
}
.comnity figure {
    margin: 0 0 1rem;
}
.comnity .img-dotted-bg img {
    -webkit-box-shadow: 10px 10px 0 0 #eee;
    box-shadow: 10px 10px 0 0 #eee;
}
.comnity .img-fluid {
    max-width: 100%;
    height: auto;
}
.comnity .img-dotted-bg:after {
    position: absolute;
    content: "";
    z-index: -1;
    background: url(./img/dotted.jpg.webp) repeat;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 400px;
}



/* Media qurey section */
@media screen and (max-width:1600px) {
    .sldr-dtl h1 {
        font-size: 30px;
    }

    .sldr-dtl p {
        margin-bottom: 10px;
    }

    .sldr-dtl p br {
        display: none;
    }
    .man-ul {
        padding: 0 10px;
    }
}

@media screen and (max-width:1400px) {
    .nav div.main_list.menu-itme ul li {
        padding: 0 0px;
    }
    .man-ul {
        padding: 0 0px;
    }
}

@media screen and (max-width:1200px) {
    .nav div.main_list ul li a { 
        font-size: 15px; 
    }
    .proj .slick-next {
        right: 8%;
    }
    .proj .slick-prev {
        left: 8%; 
    }
    .our-resort, .our-amenities { 
        padding: 80px 0 0;
    }
    .amenities-box { 
        padding: 30px 0px;
    }
    .section-heading br{
        display: none;
    }
    .nav div.main_list ul { 
        gap: 10px;
    }
    .nav div.main_list ul li a img{
        height: 40px;
    }
}

@media screen and (max-width:992px) { 
    .our-resort, .our-amenities {
        padding: 20px 0 0;
    }
    .our-desc p { 
        margin: 50px 0 50px; 
    }
    .main-nev {
        display: block;
    }

    .navTrigger {
        display: block;
    }

    .nav div.logo {
        margin-left: 15px;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
    }

    .nav div.main_list ul {
        flex-direction: column;
    }

    #mainListDiv1 ul {
        flex-direction: initial;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
        padding-right: 0;
    }

    .nav div.main_list.menu-itme ul li a {
        text-align: center;
        width: 100%;
        font-size: 18px;
        padding: 10px 20px;
        border-bottom: 1px solid #EC5248;
        display: block;
    text-align: right;
    }
     .show_list{
        margin-bottom: 30px;
     }
    #mainListDiv.show_list{
        padding-top: 30px;
    }
    .menu-itme{
        margin-bottom: 20px;
    }

    .nav div.media_button {
        display: block;
    }
    section.sevices-detl {
        padding-bottom: 10px;
    }
    .contact { 
        padding-top: 110px; 
    }
    .copy-rght {
        display: block; 
    }
    .copy-rght p {
        margin: 20px 0;
    }
}

@media screen and (max-width:767px) {
    .social-link-man{
        display: block;
    }
    .contact-dtl-fil.text-end{
        text-align: left !important;
    }
    .social-link-man a{
        margin-bottom: 15px;
        justify-content: center;
    }
    .sldr-dtl {
        padding: 20px;
    }

    .sldr-dtl h1 {
        font-size: 24px;
    }
    .testimonial {
        position: inherit;
        margin-top: 50px;
    }
    .guest-review {
        padding: 80px 0 80px; 
    }
    .contact {
        padding-top: 30px;
    }
    .gallery-section .nav li button.tab-btn{
        margin-bottom: 15px;
    }
    .gallery-section .nav{
        margin-bottom: 0px !important;
    }
    .hero-dtl{
        padding: 40px;
        margin-bottom: 200px;
        border-radius: 30px;
    }
    .hero-dtl h1 {
        font-size: 42px;
    }
    .hero-dtl p {
        font-size: 20px;
        margin: 15px 0 25px;
    }
    .black-btn, .white-btn {
        padding: 15px 20px;
        font-size: 18px;
        text-wrap: nowrap;
        margin-bottom: 30px;
    }
    .section-heading h2 {
        font-size: 35px;
    }
    .section-heading{
        text-align: center;
    }
    .section-heading p{
        width: 90%;
        margin: 0 auto !important;
        text-align: center;
    }
    .application-feture {
        margin: 50px 0;
    }
    .application-feture .section-heading{
        padding: 50px 40px;
        text-align: left;
    }
    .application-feture .section-heading p {
        text-align: left;
    }
    .dynamic-wellness .section-heading{
        padding-left: 0 !important;
    }
    .join-review {
        padding: 0;
        background-image: none;
    }
    .subscribe-news-letter {
        padding: 0px 0 80px;
    }
    .subscribe-news-letter .cmn-frm {
        width: 90%;
    }
    .subscribe-news-letter .cmn-frm button {
        position: unset;
        margin-top: 20px;
    }
    .faq-section {
        padding: 40px 0;
    }
    footer{
        text-align: center;
        padding: 40px 0 0;
    }
    .usefull-link {
        text-align: center;
    }
    .nav div.logo a img {
        height: 70px;
    }
    .nav {
        padding-bottom: 0px;
    }
    header{
        position: fixed;
        width: 100%;
        z-index: 99;
        top: 0;
    }
    .hero-section{
        padding-top: 115px;
    }
    #mainListDiv.show_list {
        padding-top: 0;
    }
    .nav div.main_list.menu-itme ul li a {
        border-bottom: 1px solid #dadada;
        text-align: center;
    }
    .navTrigger i {
        background-color: #474747;
    }
    .copy-rght p {
        margin: 0;
    }
    body{
        padding-top: 40px;
    }
    .tag-hdr{
        margin-top: 80px;
    }
    .comnity{
        padding-top: 50px;
    }
    .how-its-work {
        margin-top: 80px;
    }

}