:root {
    /* Fonts */
    --font-primary: 'HelveticaNowText', sans-serif;
    --font-inter: 'inter', sans-serif;

}


/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: #787878;
}


/* heading */
.h1,
h1 {
    font-size: 58px;
}

.h2,
h2 {
    font-size: 34px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 20px;
}


h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}


.font-primary {
    font-family: var(--font-primary);
}

.font-inter {
    font-family: var(--font-inter);
}

.color-white {
    color: #fff;
}

.color-black {
    color: #000000;
}


/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary);
}

.sec-spacing {
    padding: 80px 0;
}

.text-upper {
    text-transform: uppercase;
}

.text-decoration {
    text-decoration: underline;
}

/* Default styles end */


/* ---- Index Page Style start ---- */

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.navbar {
    padding: 12px 80px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.navbar-brand {
    font-size: 42px;
    color: var(--black);
    font-weight: 700;
    display: block;
    letter-spacing: -2px;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    width: max-content;
    color: var(--black);
    margin-right: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 0px;
}

/* Header styles end */

/* Hero styles Start */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-wrapper img {
    width: inherit;
    height: inherit;
    background-size: cover;
}

.hero-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .5;

}

.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    width: 100%;
}

.hero-text-wrapper h4 {
    letter-spacing: 0.5px;
}

.sec-title {
    margin-bottom: 30px;
    color: #014C23;
}

.about p {
    font-size: 18px;
    margin: 0 100px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #515151;
}

.amenities-icon {
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

.amenities-icon img {
    width: 40px;
    margin-bottom: 20px;
}

.amenities-icon h5 {
    font-size: 17px;
    text-transform: capitalize;
    color: #000;
}

.gallery-image {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.contact-details-wrap {
    margin-bottom: 40px;
}

.contact-details-wrap P,
.contact-details-wrap a {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
}

.iframe-wrap iframe {
    width: 100%;
    height: 400px;
}

footer {
    background-color: #000;
    padding: 20px 0;
}

footer p {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1799px) {

    .h1,
    h1 {
        font-size: 46px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    .h2,
    h2 {
        font-size: 32px;
    }

    .navbar-brand {
        font-size: 36px;
    }

    .nav-link {
        font-size: 16px;
    }

    .about p {
        font-size: 16px;
    }

    .contact-details-wrap P,
    .contact-details-wrap a {
        font-size: 18px;
        margin-bottom: 16px;
    }

}

@media (max-width: 1599px) {

    .h1,
    h1 {
        font-size: 42px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }

    .navbar {
        padding: 10px 40px;
    }

    .navbar-brand {
        font-size: 32px;
    }

    .nav-link {
        font-size: 15px;
        margin-right: 20px;
    }

    .hero-wrapper {
        height: 380px;
    }

    .sec-title {
        margin-bottom: 20px;
    }

    .amenities-icon h5 {
        font-size: 16px;
    }

    .contact-details-wrap P,
    .contact-details-wrap a {
        font-size: 16px;
    }

    .iframe-wrap iframe {
        height: 320px;
    }

    footer p {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .amenities-icon {
        border-radius: 8px;
        padding: 20px 10px;
    }

    .amenities-icon h5 {
        font-size: 14px;
    }
}

@media (max-width: 1023px) {

    /* NAVBAR TOGGLER START */
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }

    .navbar-toggler {
        width: 35px;
        height: 35px;
        padding: 0;
        border: none;
        text-align: center;
        position: absolute;
        right: 40px;
        top: 50%;
        z-index: 222;
        transition: all 0.5s;
        transform: translateY(-50%);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler span {
        position: relative;
        width: 100%;
        height: 2px;
        background-color: #014C23;
        display: block;
        background-image: none !important;
        margin-left: auto;
    }

    .navbar-toggler span::after,
    .navbar-toggler span::before {
        position: absolute;
        content: "";
        width: 25px;
        height: 2px;
        background-color: #014C23;
        right: 0;
        transition: all 0.5s;
    }

    .show-menu .navbar-toggler span {
        height: 0;
    }

    .navbar-toggler span::before {
        top: -7px;
    }

    .navbar-toggler span::after {
        top: 7px;
    }

    .show-menu .navbar-toggler span::after,
    .show-menu .navbar-toggler span::before {
        left: 0;
        right: 0;
        margin: auto;
        transform: rotate(45deg);
        top: -1px;
    }

    .show-menu .navbar-toggler span::after {
        transform: rotate(-45deg);
    }

    body.show-menu {
        overflow: hidden;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        left: 0;
        right: 0;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        background-color: #fff;
        z-index: 99;
        transition: 0.3s all;
        top: 0;
        transform: translateX(-100%);
        padding: 100px 140px 60px;
        margin: 0 auto;
    }

    .show-menu .header-top {
        display: none;
    }

    .show-menu .navbar-collapse {
        transform: translateX(0);
    }

    .navbar-nav {
        margin: 0 auto 40px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* NAVBAR TOGGLER END */

}

@media (max-width: 991px) {

    .h1,
    h1 {
        font-size: 36px;
    }

    h4,
    .h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .h2,
    h2 {
        font-size: 26px;
    }

    .navbar-brand {
        font-size: 28px;
    }

    .navbar {
        padding: 8px 10px;
    }

    .nav-link {
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sec-spacing {
        padding: 60px 0;
    }

    .about p {
        font-size: 14px;
        margin: 0;
    }
}

@media (max-width: 767px) {

    .h1,
    h1 {
        font-size: 32px;
    }

    .gallery-image {
        height: 200px;
        border-radius: 6px;
    }

    .contact-details-wrap P,
    .contact-details-wrap a {
        font-size: 14px;
    }

    footer p {
        font-size: 13px;
        padding: 0 10px;
    }
}

@media (max-width: 575px) {

    .h1,
    h1 {
        font-size: 30px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .navbar-toggler {
        right: 10px;
    }

    .hero-text-wrapper {
        padding: 0 10px;
    }
}