/********** Template CSS **********/
:root {
    --primary: #916922;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

p {
    font-family: 'Montserrat', sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    display: inline-block;
    padding: 10px 42px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(to right, #8a6a2f, #8f7333, #8a6a2f);
    transition: all 0.25s ease;
    border: 0px;
}

.btn-square {
    width: 38px;
    height: 38px;
    color: #fff;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.btn-custom {
    border: 2px solid #8c6d30;
    color: #fff;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    /* font-family: 'Playfair Display', serif; */
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 0px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #dab69d !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .navbar {
        position: absolute;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }
}

@media (min-width: 992px) {


    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/hero.png);
    /* background: url(../img/hero.png); */
    /* height: 100vh; */
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .hero-header.home {
    height: 100vh;
} */

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

/*** Service ***/
.service-item {
    transition: .5s;
}


.service-item * {
    transition: .5s;
}

/*** Destination ***/
.destination img {
    transition: .5s;

}

.destination a.position-relative {
    border: 2px solid transparent;
}

.destination a.position-relative:hover {
    border: 2px solid #fff;
}

.destination a:hover img {
    transform: scale(1.1);

}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer h4 {
    font-size: 20px;

}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}









.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-text .sub {
    font-size: 20px !important;
    /* font-style: italic; */
    line-height: 40px;
    font-weight: 400;
}

.navbar.navbar-expand-lg.navbar-light.sticky-top h1 {
    color: #916922 !important;
}

.aboutSectionBG {
    background: url(../img/template.jpg);
    background-size: cover;
}

.h-title {
    text-align: center;
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2a2a2a !important;
    text-transform: capitalize;
    width: max-content;
    margin: auto;
    position: relative;
}

.h-title span {
    font-style: italic;
}

.h-title:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, #87353500, #4e380f, #581f1f00);
    left: -150px;
}

.h-title:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, #87353500, #4e380f, #581f1f00);
    right: -150px;
}

.mission-section {
    padding: 40px;
    max-width: 700px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.label {
    font-weight: 600;
    color: #6b3f1d;
    font-size: 18px;
}

.value {
    font-weight: 500;
    color: #333;
    font-size: 17px;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a24a, transparent);
    margin: 0px 0;
}

.description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.service-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.destination {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(../img/hero.png);
    border-top: 5px solid #8e7132;
    background-size: cover;

}

.destination .h-title:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, #87353500, #fff, #581f1f00);
    left: -150px;
}

.destination .h-title:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, #87353500, #fff, #581f1f00);
    right: -150px;
}


/* Start Testimonials */
/* .testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}

.testimonial-carousel .owl-item img {
    border-radius: 50%;
}

.contact h6 {
    font-family: 'Montserrat', sans-serif;
}

/* End Testimonials */
.navbar-light .navbar-toggler {
    color: #fff !important;
    border: 1px solid #fff;
}

/* Book */
.tour-section {
    background: url(../img/template.jpg);
    background-size: cover;
}

/* Card */
.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.tour-card:hover {
    transform: translateY(-8px);
}

/* Image */
.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.tour-content {
    padding: 20px;
}

.tour-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.tour-content p {
    color: #777;
    font-size: 14px;
}

.tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-content .btn {
    margin-top: auto;
}

/* Button */
.btn-red {
    background: #e53935;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    display: inline-block;
}

.btn-red:hover {
    background: #c62828;
    color: #fff;
}

/* End Book */
/* Start Booking */
.bookingDetails {
    background: url(../img/template.jpg);
    background-size: cover;
}

.slide-item {
    margin: 4px 0;
}

.cruise-grid {
    position: relative;
    overflow: hidden;
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:after {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #f00;
    content: '';
    transition: 0.5s all;
    margin: 10px;
    transform: translateX(-100%);
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:before {
    position: absolute;
    top: 50%;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Flaticon";
    font-weight: 900;
    content: "\f168";
    pointer-events: none;
    z-index: 9000;
    transition: 0.5s all;
    transform: translate(-100%, -50%);
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0.5;
}

.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:after,
.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:before {
    opacity: 1;
    transform: translateX(0%);
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption {
    background: #fff;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title {
    letter-spacing: 0.04em;
    line-height: 1em;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title:after {
    display: table;
    clear: both;
    content: '';
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title small {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price {
    color: #7db921;
    font-size: 18px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price small {
    display: block;
    color: #838383;
    font-size: 0.5em;
    margin-bottom: 5px;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .feedback {
    margin: 5px 0;
    border-top: 1px solid #f5f5f5;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action a {
    padding: 0px 20px;
}

.ratings span {
    cursor: pointer;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time {
    margin-top: 10px;
    text-transform: uppercase;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div>i {
    position: relative;
    top: 2px;
    margin-right: 5px;
    color: #838383;
}


.slide-item {
    margin: 4px 0;
}

.cruise-grid {
    position: relative;
    overflow: hidden;
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:after {
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #d2a055;
    content: '';
    transition: 0.5s all;
    margin: 10px;
    transform: translateX(-100%);
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:before {
    position: absolute;
    top: 50%;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Flaticon";
    font-weight: 900;
    content: "\f168";
    pointer-events: none;
    z-index: 9000;
    transition: 0.5s all;
    transform: translate(-100%, -50%);
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0.5;
}

.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:after,
.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:before {
    opacity: 1;
    transform: translateX(0%);
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption {
    background: #fff;
    min-height: 231px;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title {
    letter-spacing: 0.04em;
    line-height: 1em;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title:after {
    display: table;
    clear: both;
    content: '';
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .title small {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price {
    color: #7db921;
    font-size: 18px;
    text-transform: uppercase;
    text-align: right;
    line-height: 1;
    display: block;
    position: absolute;
    top: 8px;
    right: 17px;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .price small {
    display: block;
    color: #838383;
    font-size: 0.5em;
    margin-bottom: 5px;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .feedback {
    margin: 3px 0;
    border-top: 1px solid #f5f5f5;
    padding: 5px 0;
    display: block;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .action a {
    padding: 0px 20px;
}

.ratings span {
    cursor: pointer;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time {
    margin-top: 10px;
    text-transform: uppercase;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cruise-grid .cruise-grid-wrapper .cruise-grid-caption .time>div>i {
    position: relative;
    top: 2px;
    margin-right: 5px;
    color: #838383;
}

.cruise {
    background-image: url(../img/boat-layout.png);
    min-height: 800px;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cruise-seat {
    top: 29%;
    position: absolute;
    left: 2px;
    padding-left: 10px;
    padding-right: 10px;
}

.cruise-seat ul {
    padding-left: 5px;
    margin-bottom: 0px;
}

.cruise-seat ul li button {
    list-style: none;
    display: contents;
}

.cruise-seat ul li {
    list-style: none;
    display: contents;
}

.cruise-seat ul li img {
    width: 27%;
    padding: 1px;
    margin: -7px 0px 19px 1px;
}

#cruise-2 {
    top: 52%;
}

#cruise-3 {
    top: 64%;
}

.seat span {
    font-size: 20px;
    padding-left: 12px;
    color: #000000;
}

.seat {
    margin-top: 10px;
    border: 1px solid #ccc;
}

.seat img {
    width: 26%;
    padding: 10px;
}

.seat .col-md-6 {
    background-color: #fff;
}

.seat-lb {
    font-size: 16px;
    font-weight: 700;
    color: #3e3e52;
}

.fareDetails-Lbl {
    font-size: 16px;
    font-weight: 700;
    color: #3e3e52;
    margin-top: 15px;
}

.selected-seats {
    float: right;
    line-height: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #3e3e52;
}

.seats-selected-container {
    color: #8f8f8f;
    font-size: 13px;
    font-weight: 200;
}

.fare-summary-container {
    font-size: 14px;
    font-weight: 200;
    color: #8f8f8f;
    margin-top: 20px;
    margin-bottom: 24px;
    float: left;
    width: 100%;
}

.fares-lb {
    font-size: 16px;
    color: #3e3e52;
    font-weight: 400;
}

.fare-summary-value {
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    color: #3e3e52;
}

.fr {
    float: right;
}

.button {
    display: inline-block;
    padding: 6px 16px 7px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: .1s;
    border: none;
    text-align: center;
    background: linear-gradient(to right, #8a6a2f, #8f7333, #8a6a2f);
    color: #fff;
}

/* End Booking */
.navbar-brandCustom {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

.theBlogHeroPanel{
        position: sticky;
    top: 67px;
    height: calc(100vh - 67px);
}
@media screen and (max-width: 992px) {
    .hero-header.home {
        height: inherit;
    }

    /* .heightCustomContent{
    height: 100vh;
} */
    .navbar {
        justify-content: space-between;
        /* background: #fff;
        z-index: 999; */
    }

    .navbar-brandCustom {
        display: block;
        margin-bottom: 30px;
    }

    .btn-primaryCustomSecond {
        margin-top: 10px;
    }

    .btn.btn-primary,
    .btn.btn-secondary {
        padding: 10px 35px;
    }

    .navbar-collapse {
        background: #fff;
        opacity: 0;
        transition: 0.3s;
    }

    .navbar-collapse.show {
        opacity: 1;
    }



    .navbar-collapse.show {
        transform: translateX(0);
        /* visible */
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        /* height:100%; */
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    body.menu-open .navbar-light .navbar-toggler {
        z-index: 9999;
        color: #fff !important;
    }

    .h-title:before,
    .h-title:after {
        display: none;
    }
}

@media(max-width: 768px) {
    .hero-header {
        background-position: 70%;
    }

    .hero-header.home .heightCustomContent {
        align-items: flex-start !important;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .hero-text h1 {
        margin-top: 2rem;
        font-size: 2rem;
    }

    .hero-text .sub {
        font-size: 14px !important;
    }

    .h-title {
        width: auto;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .aboutSectionBG .row .col-lg-6 {
        min-height: 150px !important;
    }

    .tour-card img {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .mission-section {
        padding: 0;
    }
}

@media(max-width: 576px) {
    .navbar-collapse {
        left: 0%;
        /* 👈 50% se start */
        width: 100%;
    }

    .info-row {
        justify-content: space-around;
        align-content: stretch;
        flex-wrap: wrap;
    }

    .value {
        margin-top: 4px;
    }

    .navbar-brand {
        margin-right: 0px;
    }

    .navbar-toggler {
        padding: .25rem .50rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .why-col:not(:last-child) {
        border-right: 1px solid;
        border-image: linear-gradient(to bottom, transparent, #4e380f, transparent) 1;
    }
}