@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    font-weight: normal;
}

.comn-btn {
    background-color: #139491;
    padding: 14px 30px;
    color: #fff;
    border-radius: 22px;
    display: inline-block;
    transition: 0.3s;
    border: 0;
}
.comn-btn:hover {
    color: #ffffff;
}
/* Navbar section */

.nav {
    width: 100%;
    position: fixed;
    text-align: center;
    /* background-color: #fff; */
    top: 0;
    width: 100%;
    left: 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: 60px;
}

.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: #139491;
}

.nav div.main_list ul li a.active {
    color: #139491;
    border-bottom: 1px solid #139491;
}

.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 {
    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 0;
}

.usefull-link {
    padding: 0;
    list-style: none;
    margin: 0;
}
.usefull-link{
    color: #fff;
}
.usefull-link a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    display: inline-block;
}
.contact-dtl-fil h4{
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}
.social-link-man {
    display: flex;
    padding: 0;
    padding: 0;
    list-style: none;
    gap: 15px;
    margin-top: 30px;
}

.social-link-man a {
    color: #fff;
    font-size: 14px;
    display: flex;
    gap: 10px;
    text-decoration: none;
}

footer a:hover {
    color: #139491;
}

.bottom-footer {
    border-top: 1px solid #484848;
    padding: 50px 0;
    margin-top: 20px;
}

.bottom-footer p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}

/* 
.container {
    max-width: 1600px;
}
 */

.hero-section {
    padding: 150px 0;
    background-image: url(../images/vactor-img.svg);
}


/* .mbl-img {
    margin-bottom: -200px;
} */
.hero-dtl span {
    color: #E69186;
    text-transform: uppercase;
    font-size: 18px;
    display: block;
    position: relative;
}

.hero-dtl h1 {
    font-size: 75px;
    font-weight: 800;
    position: relative;
}

.hero-dtl h3 {
    font-weight: 600;
    position: relative;
}

.hero-dtl p {
    font-size: 18px;
    margin: 26px 0 100px;
    position: relative;
}

.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: #139491;
    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-color: #139491;
    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: #139491;
}

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:0px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0;
    overflow: hidden;
}

.accordion-expl {
    margin-top: 50px;
}

.faq-section {
    background-color: #fff;
    padding: 80px 0;
}

.accordion-button {
    justify-content: space-between;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 #C1C1C1;
}
.accordion-item .accordion-header span{
    color: #828282;
}
.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);
}
.screen-sec{
    padding: 80px 0px 0px 0px;

}
  
.app-dwnld-in {
    background-image: url(../images/app-dw.svg);
    min-height: auto;
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
    padding: 50px;
    text-align: center;
    width: 100%;
    border-radius: 30px;
}
.app-dwnld-in h3{
    font-size: 65px;
    font-weight: 700;
    color: #fff;
}
.app-dwnld-in p{
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 34px;
    margin: 30px 0;
}
.app-dw-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.button-app-link {
    display: flex;
    gap: 30px;
    padding: 100px 40px;
    justify-content: center; 
}

.button-app-link .redirect-mange:first-child {
    transform: rotate(-13deg);
    right: -50px;
}

.button-app-link .redirect-mange:last-child {
    transform: rotate(13deg);
    top: 50px;
}

/* 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;
    }

    .hero-dtl {
        padding: 50px 42px 0;
    }

    .hero-dtl h1 {
        font-size: 55px;
    }

    .hero-dtl p {
        font-size: 23px;
        font-weight: 600; 
        margin: 36px 0 50px;
    }

    .mbl-img {
        width: 60%;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .container {
        max-width: 1260px;
    }

    .section-heading p {
        width: 100%;
        line-height: 28px;
    }

    .nav div.main_list ul {
        gap: 15px;
    }

    .white-btn {
        font-size: 18px;
    }

    .black-btn {
        font-size: 18px;
    }
}

@media screen and (max-width:1200px) {
    .container {
        max-width: 1100px;
    }

    .hero-dtl p {
        font-size: 17px;
    }

    .hero-dtl h1 {
        font-size: 40px;
    }

    .mbl-img {
        margin-bottom: 40px;
        width: 60%;
    }

    .hero-dtl {
        margin-bottom: 60px;
    }

    .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) {
    .app-dwnld-in h3 {
        font-size: 36px; 
    }
    .button-app-link { 
        justify-content: center;
        flex-wrap: wrap;
    }
    .button-app-link .redirect-mange:first-child { 
        right: 0 !important;
    }
    .app-dwnld-in { 
        background-repeat: no-repeat; 
    }
    .hero-dtl {
        text-align: center;
    }

    .hero-dtl .d-flex.gap-3 {
        justify-content: center;
        margin-bottom: 40px;
    }

    .section-heading {
        text-align: center;
    }

    .social-link-man {
        display: block;
    }

    .contact-dtl-fil.text-end {
        text-align: left !important;
    }

    .social-link-man a {
        margin-bottom: 15px;
    }

    .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;
    }

    .join-review {
        background-image: none;
        padding: 120px 0 0;
        margin: 0px 0;
    }

    .join-review .section-heading p {
        justify-content: center;
    }

    .application-feture {
        margin: 80px 0 40px;
    }

    .application-feture .section-heading {
        padding: 70px 10px;
        border-radius: 0;
        margin-top: 50px;
    }

    nav.nav.affix {
        position: fixed;
        top: 0;
    }

    .nav {
        padding-bottom: 0;
    }
}

@media screen and (max-width:575px) {
    .dynamic-wellness .section-heading.ps-5 {
        padding-left: 0 !important;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .hero-dtl {
        padding: 20px 10px 0;
    }

    .hero-dtl h1 {
        font-size: 30px;
    }

    .hero-dtl p {
        font-size: 16px;
    }

    .white-btn,
    .black-btn {
        padding: 10px 8px;
    }

    .subscribe-news-letter .cmn-frm {
        width: 100%;
    }

    .subscribe-news-letter .cmn-frm button {
        position: inherit;
        margin-top: 20px;
    }
}

.hero-dtl {
    position: relative;
}

.vactor-img {
    filter: blur(50px);
    position: absolute;
    width: 560px;
    left: -200px;
    top: -60px;
}

.download-app-section {
    background: #FFF6F5;
    padding: 20px 0;
}

.download-app-section h2 {
    font-size: 40px;
    font-weight: 800;
}

.bg-img-vactor {
    background-image: url(../images/for-vactor.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.redirect-mange {
    background: transparent linear-gradient(180deg, #06BCB8 0%, #139491 100%);
    box-shadow: 0px -3px 20px #0000002E;
    border-radius: 50px;
    padding: 40px;
    width: 100%;
    position: relative;
}

.redirect-mange h3 {
    color: #fff;
    font-size: 30px;
    margin-top: 12px;
    font-weight: 600;
}

.redirect-mange h3 span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    margin-top: 5px;
}

.redirect-mange button {
    background-color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    border: 0;
    margin-top: 20px;
}

.outer-box {
    background: #FFFFFF;
    box-shadow: 0px 3px 20px #1111111A;
    border-radius: 35px;
    padding: 40px;
    margin-bottom: 100px;
}
.application-feture h2{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}
.application-feture ul{
    padding: 0;
    list-style: none;
}
.application-feture ul li{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}
.application-feture ul li input{
    flex: 0 0 auto;
}


input[type=checkbox] {
    position: relative;
    border: 1px solid #139491;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    opacity: .5;
}

input[type=checkbox]:hover {
    opacity: 1;
}

input[type=checkbox]:checked {
    background-color: #fff;
    opacity: 1;
}

input[type=checkbox]:checked:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #139491;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}


section.privacy-policy {
    padding-top: 150px;
}