/********** Template CSS **********/
:root {
    --primary: #ff8812 !important;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}
body{
    color: #000000 !important;
}
.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: #000000 !important;
    font-size: 18px;
    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(--primary) !important;
}

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

.sticky-top.navbar-light .navbar-brand img {
    max-height: 120px;
}
@media(max-width:768px){
    .tours-tabs{
        padding:20px 15px 15px !important;
    }
}
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #4df300;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
        text-align: center;
    }

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

@media (min-width: 992px) {
 .navbar-light {
  /* position: absolute; */
  width: 100%;
  top: 0;
  left: 0;
  height: 121px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* corrected 256 -> 255 */
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.83); /* smoky effect */
  backdrop-filter: blur(4px); /* optional: adds frosted glass effect */
}

    
    .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/images/pic-c.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 375px!important;
}

.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(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}
.b-section-info__text {
  position: relative;
}

.b-section-info__text.mb-4::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.b-section-info__text.mb-4::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.horizontal-line {
  position: relative;
  display: inline-block;

}


.horizontal-line::before {
  position: absolute;
  content: "";
  
  height: 2px;
  top: 23px;

  background: var(--primary);
  z-index: -1;
}

.horizontal-line::after {
  position: absolute;
  content: "";
 
  height: 2px;
  bottom: 14px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

/* .horizontal-line::before {
  width: calc(0% + 40px);
    left: 100%;
}

.horizontal-line::after {
 width: calc(0% + 60px);
    left: 100%;
} */

.section-title.text-start::before  {
    width: calc(100% + 40px);
    left: 0;
}
.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}
/* @media(max-width:768px){
    .horizontal-line{
        font-size: 23px !important;
    }
} */

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.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(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    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(--primary) !important;
    border-color: var(--primary) !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(--primary);
    border-color: var(--primary);
}


/*** 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 .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;
}

.services .icon {
    line-height: 1.3;
    position: relative;
}

.services-section .container {
    margin-top: -120px;
    z-index: 2;
    position: relative;
}

.ftco-section {
    padding: 3em 0;
    position: relative;
}

.services {
    border-radius: 20px;
    height: 250px !important;
    background: #fff;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.03);
    padding: 10px;
    padding-top: 15px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
}

.services:hover{
color: rgb(255, 255, 255);
background-color: #ff8812;
}

.media-body h3:hover{
    color: white;
}

.flaticon-guarantee:before {
    content: "\f100";
}

.service-icon {
  font-size: 25px !important;
  color: #ff8812;
  transition: color 0.3s ease;
}

.media:hover .service-icon {
  color: white !important;
}


.title {
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.title__primary {
    margin: 0;
    line-height: 1.333em;
    font-size: 2.000em;
    
    font-weight: 700;
    font-style: normal;
}
.title--decoration-bottom-center:after {
    content: ' ';
    display: block;
    background: #ff8812;
    position: absolute;
    height: 5px;
    width: 30px;
    bottom: -7px;
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 50px;
}


.icons-set__row {
    margin-bottom: 40px;
}
.icons-set__item__field {
    display: table-cell;
    vertical-align: top;
}
.icons-set__item__field--fix-size {
    width: 85px;
}

.icons-set__item__icon-wrap {
    width: 66px;
    height: 66px;
    background: #ff8812;
    border-radius: 100%;
    position: relative;
    color: #fff;
}

.icons-set__item__icon-wrap:before {
    content: " ";
    display: block;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dotted rgba(255, 255, 255, 0.5);
    border-radius: 100%;
}

.icons-set__item__icon-wrap a {
    color: #fff;
}

.icons-set__item__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.667em;
}

.icons-set__item__title {
    margin: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.icons-set__item__description {
    line-height: 1.6em;
    color: #000000;
    font-weight: 700;
}

@media (max-width: 767px) {
    .icons-set__item {
        margin-bottom: 30px;
    }
}

footer.footer-three .footer-top {
    background: #111827;
    padding: 40px 0 20px 0;
}

footer .footer-top .footer-widget {
    margin-bottom: 20px;
}

footer.footer-three .footer-top .footer-about {
    max-width: 416px;
    width: 100%;
}


footer.footer-three .footer-top .footer-about p {
    color: #ffffff;
}

footer.footer-three .footer-top .footer-widget h5 {
    margin-bottom: 7px;
    color: #FFF;
}


.footer-input .input-group {
    width: 100%;
    border-radius: 54px;
    background: #FFF;
    padding: 8px 16px;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.footer-input .input-group .input-group-text {
    background: #FFF;
    border: 0 !important;
    border-radius: 54px 54px 54px 54px;
    color: #4E5561;
}


.footer-about a img {
    width: 230px;
}
img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

footer .footer-top .footer-widget .footer-menu li {
    margin-bottom: 8px;
}

footer.footer-three .footer-top .footer-widget .footer-menu li a {
    color: #fff;
}
footer .footer-top .footer-widget .footer-menu li a {
    position: relative;
    color: #ffffff;
}

.div {
    height: 2px;
    width: 100%;
    background-color: #4E5561;
    margin-bottom: 20px;
    border-radius: 10px;
}
footer.footer-three .footer-bottom {
    background: #111827;
    border-top: 1px solid #242B3A;
    padding: 20px 0 10px;
}


footer.footer-three .footer-bottom p {
    color: #7D828C;
}
footer .footer-bottom p {
    margin-bottom: 10px;
}

footer.footer-three .footer-bottom .policy-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    flex-wrap: wrap;
}


.footer-contact {
    padding: 20px 0;
}
.footer-contact .social-icon {
    margin-bottom: 0;
}
.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

footer.footer-three .social-icon li {
    margin-right: 8px;
    padding-right: 0;
}

.social-icon li {
  
    position: relative;
}

footer.footer-three .social-icon li a {
    width: 32px;
    height: 32px;
    background: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-icon li a {
    color: #111827;
}

.avatar.avatar-lg {
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
}
.avatar {
    position: relative;
    height: 2.625rem;
    width: 2.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #FFF;
    font-weight: 500;
}
ol, ul {
    list-style: none;
    margin-block-end: 0;
    padding: 0;
}

.avatar.avatar-lg {
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
    background-color: #9a9a9a;
}

@media(max-width:768px){
    .fotter-icosn-section{
        gap:16px !important
    }
}

.social-icon li a:hover{
    color: white;
    background: #ff8812 !important;
}

.list-car li{

    list-style: disc;

}

.package-item {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* horizontal, vertical, blur, color */
}




























.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #ff8812;
    border-color:none !important;
    margin-bottom: -1px;
}

.nav-tabs {
    border-bottom: 3px solid #ff8812;
}

.tour-categories-list {
    margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap if the screen is too small */
  gap: 15px; /* Optional: Adjust the spacing between the list items */
}

.tour-categories-list li {
  list-style: none; /* Remove the default list bullet */
  background: #ff8812;
padding: 0 15px;

border-radius: 3px;

}
.tour-categories-list li a{
    color: white;
}

.tab-content{
 
    padding-top: 40px;
    padding-right: 50px;
    padding-bottom: 40px;
    padding-left: 50px;

}

@media (max-width: 767px) {
    .tab-content {
        padding: 30px;
    }
}










.timeline {
  position: relative;
  margin: 2rem auto;
  padding: 2rem 0;
  max-width: 960px;
  border-left: 4px solid #ff8812;
}

.timeline__item {
  display: flex;
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline__item__icon-wrap {
  position: absolute;
  left: -30px;
  top: 0;
}

.timeline__item__icon {
  width: 40px;
  height: 40px;
  background-color: #ff8812;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  box-shadow:0 0 0 4px #00000029, 0 0 0 8px #ff881233;
}

.timeline__item__content {
  background-color: #f9f9f9;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.timeline__item__title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.timeline__item__description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  font-weight: 600;
}

@media (max-width: 768px) {
  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline__item {
    padding-left: 0;
    flex-direction: column;
  }

  .timeline__item__icon-wrap {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 0.5rem;
  }

  .timeline__item__content {
    padding: 0.5rem;
  }
  .timeline__item__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem; /* Optional spacing */
  font-size: 1rem; /* Adjust as needed */
}
.detail-label{
    font-size: 16px !important;
}
}



.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid #ff8812;
    border-bottom: none;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}
.nav-tabs .nav-link.active{
    border-bottom: none !important;
}
thead, tbody, tfoot, tr, td, th {
    color: black;
}

.tours-tabs {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.fixed-talk {
    position: fixed;
    bottom: 90px;
    left: 30px;
    z-index: 100;
}

.fixed-whatsapp {
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 100;
}

.fixed-talk img {
    width: 4.5rem;
    cursor: pointer;
    animation: bounce 0.8s infinite;
    margin-left: -2px;
}

.fixed-whatsapp img {
    width: 3.5rem;
    margin-top: 15px !important;
    cursor: pointer;
}



























.rating-wrapper {
  margin-bottom: 1rem;
}

.rating-label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stars {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  user-select: none;
}

.star {
  margin-right: 5px;
  transition: color 0.2s;
}

.star.filled {
  color: #f5a623; /* gold color */
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.cookies-label {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin: 1rem 0;
  gap: 5px;
}

.btn {
  padding: 10px 20px;

  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
/* Ensure proper styling for list items */
.description-content ul, .description-content ol {
  padding-left: 20px;  /* Adds padding to the left of lists */
  list-style-position: outside; /* Ensures the bullets/numbering are outside */
}

.description-content li {
    list-style: disc;
  margin-bottom: 10px;  /* Adds space between list items */
  font-size: 16px;  /* Adjust font size for better readability */
  line-height: 1.5;  /* Adjust line height */
}

.description-content p {
  font-size: 16px; /* Adjust paragraph font size */
  margin-bottom: 15px;  /* Adds space between paragraphs */
}


.inclusions-exclusions table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.table-content td {
  border: 1px solid #ccc !important;
  padding: 16px;
  vertical-align: top;
  background-color: #fafafa;
}
.table-content td strong {
  font-size: 18px;
  color: #222;
}

.inclusions-exclusions ul {
  padding-left: 1.2rem;
  margin: 0;
}

.inclusions-exclusions li {
list-style: disc !important;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}

.inclusions-exclusions li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-size: 14px;
}



.detail-label{
    background: #ff8812;
    color: whitesmoke;
    padding: 5px ;
    border-radius: 5px;
    font-size: 20px;
}





.tab-content {
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  margin-bottom: 1rem;
}

/* Table styling */
.tab-content table {
 
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.tab-content th,
.tab-content td  {
  padding: 10px;
  border: 1px solid #c7c7c7;
  text-align: left;
  vertical-align: top;
}

.tab-content th {
  background-color: #f1f1f1;
  font-weight: 600;
  color: #333;
}

.tab-content tr:nth-child(even) {
  background-color: #fafafa;
}
.inex ul li::before {
  content: "Ø ";
  font-weight: bold;
  color: #000; /* Optional: change color */
  margin-right: 4px;
}

/* Responsive tables */
/* .tab-content table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;  
} */
 @media(max-width:768px){
    .tab-content {
  padding: 0rem;
padding-top: 1rem;
}
    .tab-content table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
 }


.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark */
  border-radius: 50%;
  width: 40px;
  /* height: 40px; */
  font-size: 20px;
  background-size: 60% 60%;
}


.bottom-slide-modal .modal-dialog {
  position: fixed;
  bottom: 0;
  margin: 0;
  width: 100%;
  animation: slideUp 0.3s ease-out;
}
.button-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
          /* Adjust this height to your needs (100vh for full screen) */
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


.img-packages {
    width: 366px;
    height: 300px;
    object-fit: cover;
}

@media(max-width:768px){
   .img-packages {
    width: 364px !important;
    height: 306px !important;
    object-fit: cover;
} 
}


