/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 245px;
    bottom: 45px;
    z-index: 99;
}

.text-primary {
  color: #f89343 !important;
  font-weight: 600;
}

/*** 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: "Open Sans", sans-serif;
  font-weight: 600;
  transition: .5s;
  text-transform: uppercase;
}

.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;
}

.btn-primary {
  color: #000;
  background-color: #b3281b;
  border-color: #c76a0a;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Abel";
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !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: 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: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 2px solid rgba(94, 162, 64, 0.1);
    background-color: rgb(11 102 45);
    z-index: 999;
    border-top: 2px solid rgba(94, 162, 64, 0.1);
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: rgb(11, 102, 45);
    }

    .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, .2), rgba(20, 20, 31, .4)), 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: #70ab43;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #70ab43;
    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: #000;
}

.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 {
  /* ox-shadow: 3px 3px 25px rgba(0, 0, 0, .08); */
  border: 2px solid #dedede;
  background-color: #fff;
  box-shadow: 3px 3px 5px #b03d34;
}

.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:rgba(255, 255, 255, 1);  */   /* 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: rgba(255, 255, 255, 1); */ /* 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: #458e2b !important;
    border-color: #458e2b !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: #000;
    border-color: #000;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #458E2B;
    font-weight: normal;
    border: 1px solid #458E2B;
    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: #FD5C00;
}

.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;
}

h3.tourH3, h4.tourH4 {
  font-size: 1rem;
  text-transform: uppercase;
}
h6.tourh6 {
  font-size: 1rem;
  background-color: #f5f5f5;
  padding-left: 10px;
}
article h3 {
  background-color: #e6f9e1;
  padding-bottom: 15px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  color: #458e2b;
}
article.ul {
   
   list-style: none;
   margin-left: 0;
   padding-left: 0;
}
article ul li {
   margin-left: 1em;
}
article ul li::before {
  content: "\2022";
  color: green;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}


.intro-column .ul-title000::after {
  content: "";
  display: block;
  width: 180px;
  height: 10px;
  border-bottom: 2px solid #313131;
  margin: 0 auto;
}

h2.ul-title  {
  color: #f7943c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-size: 1.625rem;
  font-weight: bolder;
}

/* Alignments ----------- */
article img.alignleft { 
    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1em;
    margin-bottom: 1em;
}

article img.alignright {
    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1em;
    margin-bottom: 1em;
}

article img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}


/************** faqs *****/
@import url('https://fonts.googleapis.com/css?family=Tajawal');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


article#accordion-style-1 h1, article#accordion-style-1 h2, article#accordion-style-1 h3,
article#accordion-style-1 a{
    color:#007b5e;
}
article#accordion-style-1 .btn-link {
    font-weight: 400;
    color: #007b5e;
    background-color: transparent;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: bold;
    padding-left: 25px;
}

article#accordion-style-1 .card-body {
    border-top: 2px solid #007b5e;
}

article#accordion-style-1 .card-header .btn.collapsed .fa.main{
    display:none;
}

article#accordion-style-1 .card-header .btn .fa.main{
    background: #007b5e;
    padding: 13px 11px;
    color: #ffffff;
    width: 35px;
    height: 41px;
    position: absolute;
    left: -1px;
    top: 10px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    display:block;
}


#fijocol1 {
    position: -webkit-sticky; /* Safari */ 
    position: sticky;
    top: 93px;
    width: 100%;
    z-index: 1030;
    height: fit-content;
    }

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #b2271b;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
  font-weight: 700;
  font-size: 1.2rem;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #B9281C;
  text-align: left;
  background-color: #ecf4e9;
  border: 0;
  border-radius: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
  font-weight: 600;
}    


.bg-miprecio {
  background-color: rgba(255,0,0,0.3);
}
.bg-celeste {
  background-color: #c6e9ff !important;
}

.antesicon::before { 
  display: inline-block;
  font-style: normal;
  font-weight: 600 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  border: 2px solid #fc6501;
  padding: 7px 7px;
  border-radius: 50% 50% 50% 50%;

 }

 .btn-outline-success {
    color: #123829;
    border-color: #198754;
    border-radius: 20px 20px 20px 20px;
}

/* Estilo Base para H2 Animados / Especiales */
h2.typing-effect, 
.us_custom_df2d7b11 {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    /* Tamaño fluido: se ajusta entre móvil y escritorio */
    font-size: calc(0.8rem + 4vw) !important;
    line-height: 1.2;
    transition-duration: 150ms;
    box-sizing: border-box;
}

/* Soporte para el efecto de escritura (Typing) */
.w-itext-part {
    display: inline-block;
    width: auto;
    position: relative;
    text-align: inherit;
    transition-property: width;
}

.w-itext.type_typingChars .w-itext-part {
    transition-property: none !important;
    width: auto !important;
}

/* Asegurar que herede el color si está dentro de una sección coloreada */
.l-section[class*="color_"] h2,
.has_text_color h2 {
    color: inherit;
}




/* Contenedor principal */
.hero-container {
    height: 80vh; /* Altura del hero */
    width: 100%;
    overflow: hidden;
}

/* Ajuste de las imágenes del carrusel */
.hero-slide-img {
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Capa de relleno transparente (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Relleno transparente verde oscuro a negro */
    background: linear-gradient(rgba(21, 31, 46, 0.5), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

/* Asegurar que el contenido esté sobre la capa */
.hero-overlay .container {
    z-index: 3;
}

/* Efecto de desvanecimiento suave entre fotos */
.carousel-fade .carousel-item {
    transition-duration: 2s;
    transition-property: opacity;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .hero-container, .hero-slide-img {
        height: 60vh;
    }
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
    .hero-overlay .w-75 {
        width: 100% !important;
    }
}