body {
        background-color: white;
        background-size: cover;
        background-position: center center;
        height: 100vh; /* This will make it take the full viewport height */
        animation: fadeIn 1s ease-in-out forwards;
        cursor: none;

}

@font-face {
    font-family:myFirstFont;
    src: url('HelveticaNeue.ttf');
}

* {
    font-family: myFirstFont !important;
    text-rendering: optimizeLegibility;
    color:black;
 }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 

a .nounderline {
    text-decoration: none !important;
}

a .nounderline:hover {
    text-decoration: none !important;

}


a {
    color: black;
    text-decoration: none; /* This ensures no underline by default */
    transition: border-bottom 0.3s;
}



.nav-link {
    text-decoration: none !important;
}

a {
    color: black;
    text-decoration: none;
    transition: border-bottom 0.3s;
    line-height: 1.2; /* Adjust as needed */
}

a:hover {

    text-decoration: none !important;
    

}

#nounderline:hover {
    text-decoration: none !important;

}

.nav-link {
    text-decoration: none !important;
    color: black;
}

.navbar-nav.ml-auto {
    background-color: transparent;
    margin-left: auto !important;
    
}

.navbar {
    position: relative; /* Ensure the navbar has a relative positioning context */
    padding: 0.5rem 1rem;  /* Adjust to your needs. */
    background-color: transparent;
    text-decoration: none;

}

.nav-link:hover {
    border-bottom: 1px solid black;
    padding-bottom: 0; /* Adjust as needed */
}

.nav-link {
    text-decoration: none !important; /* Ensure no underline */
}

.navbar-toggler {
    margin: 0;  /* Remove margin to ensure the toggler doesn't push the navbar boundaries. */
    text-decoration: none;
    border: none; 
}

.navbar-toggler img {
    height: 60px; /* Adjust to desired size */
    width: auto;
}

.navbar-toggler:focus {
    outline: none !important; /* Removes the outline on focus */
    box-shadow: none !important; /* Removes any additional focus effects */
}



.bg-light {
    --bs-bg-opacity: 1;
    background-color: white;
}

.brand-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.responsive-text {
    font-size: 2vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

.responsive-text02 {
    font-size: 4vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
    letter-spacing: 2rem;
}

.responsive-text03 {
    font-size: 3vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 1rem 6rem; 
    width: 100%;
    margin-top: 40px;
}

.responsive-text04 {
    font-size: 2vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
    margin-top: -10px;
}

.responsive-image {
    max-width: 160%;
    height: auto;
    display: block;
    margin: auto; /* this will center the image */
    transform: translateX(-12%);
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white; /* light gray */
    padding: 5px 0;
    z-index: 99999 !important;
}

.footer-left,
.footer-right {
    display: inline-block;
}

.footer-left {
    float: left;
    margin-left: 10px;
}

.footer-right {
    float: right;
    margin-right: 10px;
    right:0;
    text-align: right;
    max-width: 70%;
}

#foottypo {
   font-size: 1.1vw;
}

.image-swap {
    position: relative;
    display: inline-block; /* or block, depending on your layout */
}

.resort {
    display: block;
    max-width: 100px; /* or specific size */
    height: auto;
    position: absolute;
    top: -30;
    left: -62;
    transition: opacity 0.3s ease;
}

.hover-logo {
    opacity: 0;
}

.image-swap:hover .hover-logo {
    opacity: 1;
}

.image-swap:hover .original-logo {
    opacity: 0;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.responsive-text05 {
    font-size: 2vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

.responsive-text08 {
    font-size: 4vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

.responsive-image {
    width: 20%; /* or any other fixed width */
    height: auto; /* maintain aspect ratio */
    object-fit: cover;
}

.vertical-line {
    border-left: 1px solid grey; /* Make the line thicker and ensure it's a visible color */
    height: 50px; /* Example height - adjust as needed */
    margin-top: 5%;
  }
  
  #paragraph1, #paragraph3 {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.img-hover:hover #paragraph1, 
.img-hover:hover #paragraph3 {
    visibility: visible;
    opacity: 1;
}

/*carrusel*/

#mainImageContainer {
    width: 50%;
    text-align: center !important; /* Center the main image */
    
}

#mainImage {
    width: 18%; /* Adjust size as needed */
    height: auto;
    text-align: center; /* Center the main image */
}

#thumbnailContainer {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between thumbnails */
    padding: 20px 0;
}

.thumbnail {
    width: 100px; /* Adjust thumbnail size as needed */
    height: auto;
    cursor: pointer; /* Change cursor on hover */
}



/*Descripción*/

#textContainer {
    text-align: center; /* Center the content */
    margin-bottom: 10%;
}

#titles h3 {
    cursor: pointer; /* Change cursor on hover */
    display: inline-block; /* Align titles in one line */
    margin: 0 10px; /* Space between titles */
    font-size: 2vw;
}

#textContainer {
    padding: 0 10% 0;
}

#mainParagraph {
    padding: 2% 25% 0;
}

#textContainer {
    text-align: center; /* Center the content */
    margin-bottom: 10%;
}

#titlesTwo h3 {
    cursor: pointer; /* Change cursor on hover */
    display: inline-block; /* Align titles in one line */
    margin: 0 10px; /* Space between titles */
    font-size: 2vw;
}

#textContainerTwo {
    padding: 0 10% 0;
}

#mainParagraph2 {
    padding: 2% 25% 0;
}

.image-scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap; /* Prevents wrapping of items */
    scrollbar-width: thin; /* Optional: for thinner scrollbars */
    width: 100%;
    margin-top: 4%;
}

.image-scroll-container img {
    flex: 0 0 auto;
    width: 50%;

}

.img-fluid {
    cursor: pointer;
}

#instagram{
    width: 10%;
}
/*CARUSELL*/



#thumbnail {
    width: 200px;
    cursor: pointer;
    border-radius: 10px;
}
.carousel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
    box-sizing: border-box;
}

.carousel img {
    width: 40%;
    max-width: 800px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}

.carousel-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 5px;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .carousel img {
        width: 80%;
        max-width: 90%;
        margin-left: 7%;
    }

    .carousel-button {
        font-size: 1.5rem;
        padding: 0.3rem;
    }

    .carousel-close {
        font-size: 1.5rem;
    }

    #foottypo {
        font-size: 3.2vw;
     }


    #titles h3 {
        cursor: pointer; /* Change cursor on hover */
        display: inline-block; /* Align titles in one line */
        margin: 0 10px; /* Space between titles */
        font-size: 4vw;
    }

    #mainParagraph {
        padding: 2% 10% 0;
    }
    
     
}

@media (max-width: 800px) {
    .footer-right {
        margin-left: 10px;
        left:0;
        text-align: left;
            max-width: 100%;

    }
    .footer-left {
        float: left;
        margin-left: 10px;
    }

    #instagram{
        width: 4.5%;
        
    }
    
}
/* Increasing specificity by including more of the hierarchy */
.navbar-nav .nav-item#smallfont a {
    font-size: 1.2vh;
    padding-top: 0.2em;
    line-height: normal;
}

/* Example of using !important to force a style, use as a last resort */
@media (max-width: 768px) {
    .navbar-nav .nav-item#smallfont a {
        font-size: 0.75em !important;
        padding-top: 0.15em !important;
    }
}

@media (max-width: 480px) {
    .navbar-nav .nav-item#smallfont a {
        font-size: 0.7em !important;
        padding-top: 0.3em !important;
    }
}


.nav-link {
    display: inline; /* Keeps links in line */
    padding-right: 8px; /* Optional, for some spacing between links */
    
}

.responsive-text05 {
    font-size: 1vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}


.responsive-text06 {
    font-size: 4vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

.responsive-text07 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1%;
}

.responsive-text10 {
   font-size: 20px;  /* Adjust this value as needed */
    text-align: center; 
    width: 100%;
    margin-top: 0%;
}

.responsive-text11 {
    font-size: 3vw;  /* Adjust this value as needed */
     text-align: center; 
     width: 100%;
     margin-top: 5%;
     padding-left: 8%;
     padding-right: 8%;

 }

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Add additional custom CSS as needed */

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.container-fluid {
    font-size: 4vw;
    margin-top: 2%;
}
/* Additional styling as needed */



.star {
    position: absolute;
    color: black; /* Set the star color to black */
    pointer-events: none; /* Make sure the star doesn't interfere with mouse events */
    opacity: 1;
    transition: opacity 0.8s ease-out;
    font-size: 20px; /* Set size of the star */
    z-index: 99999;
  }

  .imagenes{
    background-color: grey;
}

.ekko-lightbox-nav-overlay a {
    color: goldenrod;
}

.ekko-lightbox{
    color: white;
}

  

html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-options, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-qty, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-btn--addToBag, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 div[customprop='addtobag'], html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-AddToBagButton {
    margin-top: 24px;
    margin-bottom: 24px;
    background-color: white;
    color: black;
    border-radius: 0;
    box-shadow: none;   
}

html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-options, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-qty, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-btn--addToBag, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 div[customprop='addtobag'], html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-AddToBagButton:hover {
    background-color: white;
    text-decoration: none !important;

}


html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 div[customprop='addtobag'] {
    position: relative;
    display: inline-block;
    border: 1px solid grey;
}

html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 div[customprop='addtobag']:hover {
    text-decoration: none !important;

}

@media (max-width: 300px) {
    .responsive-text {
        font-size: 12px;  /* Set a minimum size for very small screens */
    }
    .responsive-text02 {
        font-size: 12px;  /* Set a minimum size for very small screens */
    }
}

@media (min-width: 1000px) {
    .responsive-text {
        font-size: 1.5vw;  /* Set a fixed size for wider screens */
        margin-top: 5%;
    }
    .responsive-text02 {
        font-size: 22px;  /* Set a minimum size for very small screens */
    }
  
    
}


@media (max-width: 600px) {
    .brand-container {
        position: relative;
        left: 0;
        transform: translateX(-50%);
    }
    #mainImage {
        width: 38%; /* Adjust size as needed */
        height: auto;
        text-align: center; /* Center the main image */
    }

   
}

@media (max-width: 100px) {  /* Adjusting for the default Bootstrap navbar breakpoint */
    .navbar-toggler {
        position: absolute;
        top: 0.5rem;  /* Adjust as needed for vertical alignment */
        left: 0.5rem; /* Adjust as needed for horizontal spacing */
        z-index: 2;   /* To ensure the toggler remains above other navbar elements */
    }
}

@media (min-width: 768px) {
    .responsive-image {
        max-width: 200%;
        height: auto;
        display: block;
        margin: auto; /* this will center the image */
        transform: translateX(0%);
    }
    .resort {
        display: block;
        max-width: 100px; /* or specific size */
        height: auto;
        position: absolute;
        top: -30;
        left: -45;
        transition: opacity 0.3s ease;
    }

    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -3%;
     }

     .responsive-text11 {
        font-size: 1.3vw;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: 5%;
         padding-left: 8%;
         padding-right: 8%;
    
     }
     .container-fluid {
        font-size: 2vw;
        margin-top: 2%;
    }

    #instagram{
        width: 3%;
    }
    .responsive-text06 {
    font-size: 2vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

.responsive-text08 {
    font-size: 2vw;  /* Adjust this value as needed */
    text-align: center; 
    padding: 2rem 6rem; 
    width: 100%;
}

}


@media (max-width: 767px) {
    #mobile-img-1, #mobile-img-2 {
      width: 100%; /* Adjust the width as needed */
      height: auto;
    }

    .vertical-line {
        border-left: 1px solid grey;
        height: 50px;
        margin-top: 100px;
      }

      .responsive-text05 {
        font-size: 4vw; /* Larger font size for small devices */
    }
 
  }


  @media (min-width: 767px) {
    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -2.9%;
     }
  }

  @media (min-width: 967px) {
    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -2.8%;
     }
  }

  @media (min-width: 1200px) {
    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -2.2%;
     }

     #foottypo {
        font-size: 1vw;
     }
  }

  @media (min-width: 1500px) {
    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -2%;
     }
  }

  @media (min-width: 1800px) {
    .responsive-text10 {
        font-size: 20px;  /* Adjust this value as needed */
         text-align: center; 
         width: 100%;
         margin-top: -1.7%;
     }

     #foottypo {
        font-size: 0.8vw;
     }
  }
  
  /* Existing styles */


  .container {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.container::before,
.container::after {
    content: "";
    flex: 1;
}

.left-text {
    flex: 0 0 auto;
    margin-right: 30; /* Pushes the left-text to the left */
}

.center-text {
    flex: 0 0 auto;
}





html#ecwid_html body#ecwid_body .ec-minicart {
   position:absolute !important;
   top:2;
   right:10;

}

html#ecwid_html body#ecwid_body .ec-minicart__icon svg {
    display: none ;
    background-color: transparent !important;
    width: 50%;
    height: 50%;    
    box-shadow: none;
    content:"Bag";
}

#navbarNav {
    margin-right:5%;
}

html#ecwid_html body#ecwid_body div.ecwid-ProductBrowserPopup>div {
    border: 1px solid black !important;
    border-radius: 0px !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--s .ec-store .ec-cart-next {
    display: none !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--s .ec-store.ec-store__cart-page .ec-cart-item__picture {
    width: 170px !important;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--m .ec-store.ec-store__subscription-page .ec-cart__body, html#ecwid_html body#ecwid_body .ec-size.ec-size--m .ec-store.ec-store__cart-page .ec-cart__body, html#ecwid_html body#ecwid_body .ec-size.ec-size--m .ec-store.ec-store__account-page .ec-cart__body {
    width: 38.3333333333%;
}

html#ecwid_html body#ecwid_body .ec-size.ec-size--s .ec-store .ec-cart__shopping {
    display: none !important;

}

html#ecwid_html body#ecwid_body .ec-size.ec-size--s .ec-store .ec-cart__body .ec-page-title {
    display: none !important;
}

html#ecwid_html body#ecwid_body .ec-minicart.ec-minicart--pill {
    display: none !important;

}

    
html#ecwid_html body#ecwid_body div.ecwid-ProductBrowserPopup {
        z-index: 900;
        border: 0;
        left: 0 !important;
        right: 0 !important;
        padding: 0;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
        text-align: right !important;
        margin: 0;
        clip: auto !important;
    }
    
    
html#ecwid_html body#ecwid_body div.ecwid-overlay {
        background-color: transparent !important;
        opacity: 0.6;
        filter: alpha(opacity=60);
    }


div.ecwid-popup-content:before {
    content: '';
    background: url('LOGO_BAG_RESORT.png') no-repeat;
    background-size: contain;
    background-position: center;
    height: 80px;
    display: block;
}

div.ecwid-popup-content {
    padding-top: 10px;
}

.ec-minicart--animation-default.ec-minicart--animated .ec-minicart__counter::after {
    animation: none;
    display: none;
    color: white !important;
    background-color: white !important;

}

 .ec-minicart--animation-default.ec-minicart--animated .ec-minicart__counter {
    display: flex;
    color: black !important;
    background-color: transparent !important;
}

.ec-minicart__icon svg {
    display: none !important;
}

.ec-minicart__icon:after {
    content: 'Bag'
}

html#ecwid_html body#ecwid_body div.ecwid-productBrowser {
    padding: 0 10px 20px;
    background-color: transparent  !important;
}

.ec-size.ec-size--s .ec-store .ec-footer {
    padding-bottom: 16px;
    display: none;
}
.ec-size .ec-store .ec-footer {
    padding-bottom: 20px;
    display: none;
}

@media screen and (min-width: 768px) {.popupContent {
    width: 500px !important;
}
.ecwid-popup-content {
    display: block;
    width: 50%;
}
.ec-cart--empty .ec-cart__message, .ec-cart--empty .ec-cart__button { width: 40% !important;
}  
.ec-store .ec-cart {
    display: block !important;
}
.ec-cart__sidebar, .ec-cart__body {
    width: 50% !important;
}}


html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-options, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-SingleProduct-qty, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-btn--addToBag, html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 div[customprop='addtobag'], html#ecwid_html body#ecwid_body .ecsp.ecsp-SingleProduct-v2 .ecwid-AddToBagButton {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: white;
    color: black;
    border-radius: 0;
    box-shadow: none;
    
}