/********** Template CSS **********/
:root {
    --primary: #153161;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
    --red: #e82c23;
}

body {
    color: #000;
    font-size: 1.1rem;
}


.shadow1
{
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);
}

.shadow2
{
  box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.3);
}

.shadow3
{
  box-shadow: 0 8px 17px 2px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);
}

.shadow4
{
  box-shadow: 0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -7px rgba(0,0,0,.2);
}

.shadow5
{
  box-shadow: 0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12),0 11px 15px -7px rgba(0,0,0,.2);
}

.shadow6 {
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.1);
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    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: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.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;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #153161 !important;
    font-size: 1.1rem;
    font-weight: 600;
    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(--red) !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        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: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: relative;
        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(--red);
        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/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--red);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--red);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--red);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--red);
    border-radius: 20px;
    border-bottom: 1px solid var(--red);
}

.team-item .btn:hover {
    background: var(--red);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--red) !important;
    border-color: var(--red) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--red);
    border-color: var(--red);
}


/*** 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(--red);
}

.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 .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;
}

.text-primary {
    color: #e82c23 !important;
}

.btn-primary {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
}

.radius30 {
    border-radius: 30px !important;
}

.home-about img {
    object-fit: cover;
}

.pd-box {
    border-radius: 30px;
}

.pd-box h4 {
    position: absolute;
    width: 100%;
    bottom: 12px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.pd-box::before {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #141414 105.28%);
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    border-radius: 30px;
    z-index: 1;
}

.destination img {
    transition: .5s;
    border-radius: 30px;
    object-fit: cover;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.destination-section {
    background-color: #daedef;
    position: relative;
}

.destination-section::before {
    position: absolute;
    content: "";
    background-image: url(../images/destination-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.75;
    width: 100%;
    height: 332px;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background-repeat: no-repeat;
}

.packages-card {
    margin-bottom: 30px;
    border-radius: 15px;
    background-image: radial-gradient(at top right, #FFFFFF 0%, #E8FBFF 80%);
}

.packages-card img {
    border-radius: 15px;
    height: 360px;
    object-fit: cover;
}

.packages-details .pd-list
{
    display: flex;
    margin-bottom: 12px;
    align-items: center;
    margin-right: 22px;
}

.packages-details .pd-list i
{
    margin-right: 12px;
    background: var(--red);
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-list-main {
    display: flex;
        /* justify-content: start;
        border-top: 1px #ccc solid;
        padding: 12px 0 0 0; */
}

.package-title {
    margin-bottom: 20px;
}

.pd-list-contact {
    border-top: 1px #ddd solid;
    padding: 26px 0 0 0;
    margin: 20px 0 0 0;
    justify-content: space-between;
}

.pd-list-contact span p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--red);
    margin: 0;
}

.w-icon i {
    background: #3bd36d !important;
}

.pd-list-contact i {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.4rem !important;
}

.pd-list-contact span h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.pd-list-contact span h3 small {
    font-size: 60%;
}

.pd-list-contact .btn-primary {
    border-radius: 20px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

.pd-list-title {
    font-size: 2rem;
    margin: 0 0 25px 0;
}

.pd-list-right {
    padding: 1.2rem;
}

.theme-red {
    color: var(--red);
}

.big-txt-pl {
    align-items: start;
}

.big-txt-pl span {  
    width: 90%;
}


.discover-the-magic {
    padding: 100px 0 100px 0;
    background: var(--white);
    background: linear-gradient(90deg, rgba(145, 162, 181, 1) 0%, rgba(231, 240, 251, 1) 48%, rgba(145, 162, 181, 1) 100%);
    background: url(../images/trip_bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
}

.discover-the-magic h4 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 30px 0;
    text-align: center;
    color: var(--primary);
}

.discover-the-magic h4 span {
   /* background: #282F79;
    background: linear-gradient(to right, #ed3825 13%, #fd7b03 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    color: var(--red);
    display: block;
}

.discover-the-magic i {
    font-size: 1.4rem;
    margin-right: 10px;
 }

 .discover-the-magic .btn-primary {
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
}

.tour-icons {
 width: 100%;
 max-width: 1100px;
 margin: 0px auto 0 auto;  
 display: block; 
}

.whatsapp-btn {
    background-color: #3bd36d;
    border-color: #3bd36d;
}

.object-fit-cover {
    object-fit: cover;
}

.about-us-banner {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../images/beach-img.jpg);
    background-position: center center;
}

.mt-40 {
    margin-top: 40px !important;
}

.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.package-detail-page {

}

.package-detail-page .card {
    border-radius: 20px;
    margin-bottom: 30px;
}

.package-detail-page .card h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.custom-list {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

.custom-list li {
    padding-left: 1.3em;
    margin: 0 0 7px 0;
}

.custom-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    width: 1.3em;
    font-weight: 900;
    color: #e82c23;
    margin: 0 5px 0 -1.3em;
}

.interary-item {
    margin-bottom: 0;
    overflow: hidden;
    padding-bottom: 20px;
}

.interary-item {
    position: relative;
    margin-bottom: 0;
    min-height: unset;
    display: flex;
    gap: 25px;
    width: 100%;
    flex-wrap: nowrap;
}

.interary-item:before {
    content: "";
    background: #01aa90;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 40px;
    left: 27px;
}

.interary-item .icon-left {
    --phys-body_color_second: #fff;
    border-color: #01aa90;
    border-style: solid;
    color: #01aa90;
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 700;
}

.interary-item .icon-left {
    border: 2px solid #01aa90;
    color: #01aa90;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    width: 55px;
    height: 55px;
    min-width: 55px;
    line-height: 55px;
}

.interary-item .item_content {
    padding-left: 0;
    overflow: hidden;
}

.interary-item .item_content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.interary-item .item_content h2, .interary-item .item_content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    min-height: 55px;
    background: transparent;
    align-items: center;
    display: flex;
}

.departure-dates {
    width: 100%;
    max-width: 500px;
    color: #000;
}

table {
    color: #000 !important;
}

.tour_help_1 {
    text-align: center;
}

.tour_help_1 a {
    color: #000;
    display: block;
    margin: 0 0 20px 0;
}

.tour_help_1 h4 a {
    color: #3bd36d;
}

.tour_help_1 h4:last-child i {
    color: #3bd36d;
    font-size: 2rem;
}

.card-right-pd .card-header {
    background: #153161;
    color: #fff;
    font-weight: 700;
    border-radius: 20px 20px 0 0;
}

.theme-position-sticky {
    position: sticky;
    top: 100px;
}

.footer-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 215px;
    text-align: center;
}

.footer-logo img {
    width: 120px;
}

.footer-logo span {
    display: block;
    color: #fff;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.copyright {
    background: #000;
    color: #fff;
    padding: 22px 0;
}

.copyright span {
    color: var(--red);
}

.mr-10 {
    margin-right: 10px !important;
}

.interary-item img {
    margin-bottom: 20px;
    width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
    background: #fff;
    width: 15px;
    height: 15px;
    opacity: 1;
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
}

.swiper-pagination-bullet-active {
    background: #007aff !important;
}



/*responsive css start*/

@media (max-width: 1366px) {
  .swiper-slide img {
      width: 100%;
    height: 470px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image is resized proportionally */
  }
}

@media only screen and (max-width: 768px) {
    .swiper-slide img {
      width: 100%;
    }

    .home-about .row .col-lg-6:first-child {
        order: 2;
    }

    .home-about .row .col-lg-6:last-child {
        order: 1;
    }

    .pd-box h4 {
        font-size: calc(1rem + .3vw);
      }

      .pd-list-main {
        flex-direction: column;
      }  

      .pd-list-main span {
        width: 90%;
      }

      .packages-details .pd-list {
        margin-right: 22px;
        align-items: start;
      }

      .packages-card img {
        border-radius: 15px;
        height: auto;
        object-fit: cover;
      }

      .discover-the-magic h4 {
        font-size: 2rem;
        margin: 0 0 30px 0;
      }

      .discover-the-magic .btn {
        margin: 0 0 20px 0;
      }

      .discover-the-magic .btn:last-child {
        margin-bottom: 0;
      }

      .discover-the-magic {
        padding: 50px 0;
        margin-bottom: 50px;
      }

      .footer {
        padding: 0 15px !important;
      }

      .res-mb-0 {
        margin-bottom: 0 !important;
      }

      .navbar-light .navbar-brand img {
        max-height: 65px;
    }

    .interary-item .icon-left {
        display: none;
    }

    .interary-item:before {
        display: none;
    }

    .interary-item .item_content h2, .interary-item .item_content h3 {
        margin-bottom: 0;
    }

    .interary-item {
        position: relative;
        margin-bottom: 20px;
        width: 100%;
        flex-wrap: nowrap;
        border-bottom: 1px #000 dashed;
    }

    .theme-position-sticky {
        position: relative;
        top: 0;
    }
    
  }