@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Smooch&display=swap');


body {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

.btn-theme-one {
    background-color: #fff;
    border-radius: 6rem;
    padding: 0.6rem 2rem;
    font-weight: 600;
}

.btn-theme-one:hover {
    background-color: #159C88;
    color: #fff;
}

.btn-theme-two {
    background-color: #159C88;
    border-radius: 6rem;
    padding: 0.6rem 2rem;
    font-weight: 600;
    color: #fff;
}

.btn-theme-two:hover {
    background-color: #000000;
    color: #fff;
}

header .navbar {
    background-color: #fff;
}

header .navbar .navbar-brand {
    width: 20%;
    padding-top: 0.2rem;
    padding-bottom: 0;
}

header .navbar .logo {
    width: 100%;
}

header .navbar .socialies {
    display: none !important;
    margin-left: 2rem;
}

header .navbar .socialies a {
    background-color: #159C88;
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

header .navbar .socialies a .fa-facebook-f {
    padding: 6px 9px;
}

header .navbar .socialies a .fa-instagram {
    padding: 6px 7px;
}

header .navbar .socialies a .fa-youtube {
    padding: 6px 5px;
}


.hero .socialies {
    display: block !important;
    margin-left: unset;
    text-align: center;
}

.hero .socialies a {
    background-color: #159C88;
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.hero .socialies a .fa-facebook-f {
    padding: 6px 9px;
}

.hero .socialies a .fa-instagram {
    padding: 6px 7px;
}

.hero .socialies a .fa-youtube {
    padding: 6px 5px;
}


.hero {
    background-color: transparent;
    width: 100%;
    position: relative;
    margin-top: 4rem;
}

.hero .hero-text {
    position: relative;
    top: unset;
    left: unset;
    max-width: 100%;
    padding: 2rem;
    text-align: center;
}

.hero .hero-text h2,
.hero .hero-text h5 {
    color: #159C88;
}

.hero .hero-text h2 {
    font-family: 'Smooch', cursive;
    font-size: 4rem;
}

.hero .hero-text h5 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: -0.5rem;
}

.hero .hero-text p {
    font-size: 0.9rem
}

.hero .hero-sun {
    position: absolute;
    top: 10%;
    right: 10%;
    max-width: 35%;
}

.hero .hero-land {
    position: absolute;
    top: 10%;
    right: 4%;
    max-width: 60%;
}

.hero .hero-life {
    position: absolute;
    bottom: 20%;
    right: 11%;
    max-width: 45%;
}

.hero .parallax-layer {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    position: absolute;
    display: block;
    /*transition: transform .1s linear;*/
}

.hero .parallax-cont {
    display: none;
}

.hero .hero-img-cont {
    display: block;
}




.packages {
    padding: 2rem 0;
    position: relative;
}

.packages h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.packages .pack-itm {
    margin-bottom: 2rem;
}

.packages .pack-itm .pack-img-cont {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.packages .pack-itm h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #000;
}

.packages .pack-itm span {
    font-size: 0.75rem;
    margin-right: 0.5rem;
    color: #000;
}

.packages .owl-nav {
    position: absolute;
}


.gallery {
    padding: 12rem 0 2rem 0;
}

.inner.gallery {
    padding: 0rem 0 2rem 0;
}

.gallery h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.gallery .gallery-img-itm {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid #ebebeb;
}

.gallery .btn-theme-two {
    margin-top: 1.2rem;
}

.contact {
    background-color: #00373D;
    padding: 3rem 0;
    color: #fff;
}

.contact a {
    color: #fff;
}

.contact h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact .btn-theme-two {
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
}

.contact .contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.contact .contact-itm {
    margin-bottom: 2rem;
}

.contact h5 {
    font-size: 1.1rem;
}

/*Zoom in keyframe*/
.active.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

/*Zoom in keyframe*/

/*Fade In Left keyframe*/
.active.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*Fade In Left keyframe*/

/*Fade In Up keyframe*/
.active.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*Fade In Up keyframe*/

/*Zoom In Down keyframe*/
.active.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

/*Zoom In Down keyframe*/



.aboutus {
    background-image: url(img/aboutussec-bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #B9E7E0;
    padding: 1rem 0 1rem 0;
}

.aboutus .aboutus-top {
    margin-bottom: -11rem;
    padding-bottom: 5rem;
}

.aboutus .aboutus-top h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.aboutus .aboutus-top .abt-fimg-cont {
    padding: 0 5rem 0 0;
    display: none;
}

.aboutus .aboutus-top .abt-fimg-cont img {
    border-radius: 0.75rem;
}

.aboutus .aboutus-top .btn-theme-one {
    margin-top: 1.2rem;
}

.aboutus .aboutus-top .abt-bot-vect-cont {
    padding: 3rem 0 0 0;
    width: 100%;
    text-align: center;
}

.aboutus .aboutus-top .abt-bot-vect-cont img {
    width: 80%;
}

.aboutpg-us-img img {
    border-radius: 0.75rem;
}

.map-responsive {
    padding-bottom: 90%;
    position: relative;
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

footer {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
}

footer a {
    color: #fff;
}

footer .footer-top {
    background-color: #00373D;
}

footer .footer-bot {
    background-color: #159C88;
    padding: 3rem 0 1rem 0;
}

footer .footer-bot .socialies a {
    background-color: #016253;
    color: #fff;
    border-radius: 50%;
    font-size: 0.95rem;
    margin-left: 0.5rem;
}

footer .footer-bot .socialies a:first-child {
    margin-left: 0;
}

footer .footer-bot .socialies a .fa-facebook-f {
    padding: 6px 9px;
}

footer .footer-bot .socialies a .fa-instagram {
    padding: 6px 7px;
}

footer .footer-bot .socialies a .fa-youtube {
    padding: 6px 5px;
}

footer .footer-bot .office-address {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

footer .footer-bot .office-address h5 {
    color: #00373D;
    font-size: 1rem;
    font-weight: 700;
}

footer .footer-bot .copytxt {
    margin-top: 1rem;
    text-align: center;
}

footer .footer-bot .copytxt p {
    font-size: 0.8rem;
    color: #c0f9ff;
}

footer .footer-bot ul {
    margin: 0;
    padding: 0;
}

footer .footer-bot ul li {
    list-style: none;
    display: inline-block;
    padding: 0 0.5rem;
}

footer .footer-bot ul li a:hover {
    color: #002f34;
}

footer .footer-bot ul li:first-child {
    padding: 0;
}

footer .footer-bot .copytxt small {
    font-size: 0.7rem;
    color: #46e5cd;
}

footer .footer-bot .copytxt small a {
    color: #46e5cd;
}

footer .footer-bot .copytxt small a:hover {
    color: #ffffff;
}

footer .footer-bot .f-menu {
    margin-top: 2rem;
    text-align: center;
}

.page-cover {
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    margin-top: 3.3rem;
}

.page-cover .page-title-txt {
    padding: 9% 0;
    height: auto;
}

.page-cover .page-title-txt h1 {
    color: #159C88;
    font-size: 3rem;
    font-family: 'Smooch', cursive;
    text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3),
        0px -4px 10px rgba(255, 255, 255, 0.3);
}

.page-cover .page-title-txt p {
    display: none;
}

.inner-content {
    margin-bottom: 2rem;
}

.pack-day-info-cont {
    margin-bottom: 2rem;
    background-color: #f1f1f1;
    padding: 1rem 0.5rem 1.2rem 0.5rem;
    border-radius: 0.75rem;
}

.pack-day-info-cont h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;

}

.pack-day-info-cont h3 i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #016253;
}

.pack-day-info-cont img {
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.pack-day-info-cont .pack-day-info {
    color: #4c4c4c
}

.pack-day-info-cont .pack-day-info span {
    margin-right: 1rem;
    font-size: 0.9rem;
    color: #6a6a6a
}

.pack-day-info-cont .pack-day-info span i {
    margin-right: 0.3rem;
    color: #404040
}

.breadcrumb-sec {
    background-color: #159c88;
    padding: 0.3rem 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.breadcrumb-sec ol {
    margin-bottom: 0;
    font-weight: 500;
}

.breadcrumb-sec ol a {
    color: #cffff8;
}

.breadcrumb-sec ol li.active {
    color: #fff
}

.breadcrumb-sec .breadcrumb-item+.breadcrumb-item::before {
    color: #17ac95;
}

.custom-pack form .form-label {
    font-weight: 600;
    color: #159c88;
}

.custom-pack form h6 {
    font-weight: 600;
}

.contact-pill {
    background-color: #000;
    color: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 2rem;
}

.contact-pill a {
    color: #fff;
}
.contact-pill h6 {
    margin-bottom: 0;
}
.contact-pill .contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.email-msg-cont {
    margin-top: 5%;
    margin-bottom: 5%;
}

.email-msg-cont h2 {
    font-size: 2rem;
    /* font-family: 'Smooch', cursive; */
    text-shadow: 0px 2px 11px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
}

.email-msg-cont.email-suc h2 {
    color: #2fbb28;
}
.email-msg-cont.email-err h2 {
    color: #be1600;
}

@media (min-width: 992px) {
    header .navbar .navbar-brand {
        width: 10%;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    header .navbar .socialies {
        display: block !important;
    }


    .navbar {
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar .navbar-nav .nav-link {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .navbar .navbar-nav .nav-item .nav-link::after {
        display: block;
        content: '';
        border-bottom: 1px solid #159C88;
        transform: scaleX(0);
        transition: transform 250ms ease-in-out;
    }

    .navbar .navbar-nav .nav-item .nav-link:hover:after {
        transform: scaleX(1);
    }

    .navbar .navbar-nav .nav-item .nav-link.active {
        color: #159C88;
    }

    .packages .paks-carousel .owl-nav {
        top: -4.2rem;
        right: 0;
    }

    .hero .parallax-cont {
        display: block;
    }

    .hero .hero-img-cont {
        display: none;
    }

    .hero .hero-text {
        position: absolute;
        top: 30%;
        left: 5%;
        max-width: 30%;
        padding: unset;
        text-align: unset;
    }

    .hero .socialies {
        display: none !important;
        text-align: unset;
        margin-left: 2rem;
    }


    .packages .paks-carousel .owl-nav button.owl-next,
    .packages .paks-carousel .owl-nav button.owl-prev {
        background: transparent;
        color: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 3px !important;
        font-size: 1.6rem;
        padding: 5px;
        border-radius: 0px;
        transition: color 250ms ease-in-out,
    }

    .packages .paks-carousel .owl-nav button.owl-next:hover,
    .packages .paks-carousel .owl-nav button.owl-prev:hover {
        background: transparent;
        color: rgba(0, 0, 0, 0.9);
    }

    .reveal {
        position: relative;
        opacity: 0;
    }

    .reveal.active {
        opacity: 1;
    }

    .page-cover {
        background-size: 65%;
        padding: 8% 0 2% 0;
        margin-top: unset;
    }

    .page-cover .page-title-txt {
        padding: 3% 2%;
        height: 200px;
    }

    .page-cover .page-title-txt p {
        display: block;
        font-size: 0.9rem;
    }

    .mob-intro-txt {
        display: none;
    }

    .aboutus {
        padding: 28rem 0 1rem 0;
    }

    .aboutus .aboutus-top .abt-fimg-cont {
        display: block;
    }

    .contact .map-responsive {
        margin-top: 0rem;
    }

    .contact .contact-itm {
        margin-bottom: 0;
    }

    footer .footer-bot .office-address {
        margin-top: 0;
        margin-bottom: 0;
    }

    footer .footer-bot .f-menu {
        text-align: unset;
        margin-top: 0rem;
    }

    .packages .pack-itm {
        margin-bottom: unset;
    }

    .inner-contact-page .map-responsive {
        margin-top: 0;
    }

    .pack-day-info-cont img {
        margin-bottom: 0;
    }
}