/* Estilo para el cuerpo del sitio */
body {
    font-family: 'Kdam Thmor Pro', sans-serif;
    background-color: #000000;
    color: #ffffff; /* Color del texto */
}
.logo-container {
    text-align: center;
}

/* Estilo para el logo */
.logo-container img {
    max-width: 100%;
    height: auto;
}

/* Estilo para el encabezado en general */
header {
    background-color: #000000;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sutil sombra */
    
}


/* Estilos específicos para pantallas pequeñas, como dispositivos móviles */
@media (max-width: 600px) {
    nav ul li {
        display: block; /* Cambia a una disposición vertical */
        margin: 10px 0; /* Espacio entre elementos */
    }
}

/* Estilo para el contenido principal */
main {
    padding: 10px;
    background-color: #000000;
}

/* Estilo para el pie de página */
footer {
    background-color: #009ee2;
    padding: 10px;
    text-align: center;
    color: #ffffff;
}


.column-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Espacio entre las columnas */
    padding: 20px; /* Espacio alrededor de las columnas */
}

.column {
    background-color: #ffcf00; /* Color de fondo de las columnas */
    padding: 5px; /* Espacio interno de las columnas */
    border-radius: 8px; /* Bordes redondeados */
}
                
.column-text {
    text-align: center;
}                
/* Estilos específicos para pantallas pequeñas, como dispositivos móviles */
@media (max-width: 600px) {
    .column-container {
        grid-template-columns: 1fr; /* Cambia a una disposición vertical */
    }

    .column {
        margin-bottom: 20px; /* Espacio entre columnas en disposición vertical */
    }
}
/*
.column:hover {
    -webkit-transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
}
*/
/* Estilos para el contenedor de botones flotantes */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column; /* Cambia la dirección del contenedor a vertical */
    align-items: flex-start; /* Alinea los botones al final del contenedor */
    z-index: 1000; /* Asegura que los botones estén por encima de otros elementos */
}

.floating-buttons button {
    margin: 10px;
    padding: 10px;
    /* Otros estilos de los botones */
}
.new-section {
    margin: 15px;
    padding: 20px;
    background-color: #ffcf00;
    border-radius: 8px;
}
.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.two-columns .column {
    background-color: #080808;
    padding: 5px;
    border-radius: 8px;
}



/* Estilos para dispositivos más pequeños (por ejemplo, dispositivos móviles) */
@media (max-width: 768px) {
    .two-columns {
        display: block;
    }
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.popup img {
    max-width: 100%;
    max-height: 80vh;
}

.close {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* Estilos para el popup "imagenes" */
.popup {
    top: 15%;
    left: 5px;
    max-width: 99%; /* Puedes ajustar el ancho máximo según tus necesidades */


}

.popup-gallery {
    display: none;
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Ajusta según sea necesario */
    object-fit: cover; /* Para asegurar que la imagen cubra el contenedor */
}

/* Linea de tiempo  */
.timeline-section {
    background-color: rgb(215,213,213);
    display: flex;
    flex-direction: row; /* Cambiar a disposición horizontal */
    align-items: center; /* Centrar verticalmente los eventos */
    margin-top: 40px;
    overflow-x: auto; /* Agregar desplazamiento horizontal si los eventos son demasiado anchos */
}

.timeline {
    display: flex;
}

.timeline-event {
    flex-shrink: 0; /* Evitar que los eventos se estiren */
    margin-right: 20px; /* Agregar espacio entre los eventos */
    
    display: flex; /* Usamos flexbox para facilitar el centrado */
    flex-direction: column; /* Dirección de los elementos en columna */
    align-items: center; /* Centrar horizontalmente */
    justify-content: center; /* Centrar verticalmente */
    text-align: center; /* Centrar el texto */
}

.event-date {
    width: 120px;
    text-align: center; /* Alinear la fecha al centro */
    color: #000000;
    font-size: 16px;
}

.event-content {
    max-width: 300px; /* Ajustar el ancho máximo del contenido del evento */
    color: #000000;
}

.startup-section {
    background-color: #080303;
    padding: 20px;
    margin-top: 20px; /* Agregar espacio entre la línea de tiempo y la sección startup */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.investment {
    text-align: center;
}

/* También puedes centrar el texto dentro de la tabla */
.investment table {
    margin: 0 auto; /* Esto centrará la tabla horizontalmente */
    text-align: center;
}
.investment table, .investment th, .investment td {
    border: 1px solid #ffcf00; /* Ajusta el color del borde según tus preferencias */
    padding: 8px; /* Ajusta el espaciado interno según tus preferencias */
}

.centered-button {
    text-align: center;
    margin-top: 60px; /* Espacio entre la sección "investment" y el botón */
}

.seccion-con-tabla-y-botones{
    width: 100%;
}



/* Estilos para el popup "faqstext" */
.popupfaqs {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: #555353;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popupfaqs-content {
    text-align: center;
}

.popupfaqs h2 {
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
/* Estilos para el listado de preguntas frecuentes */
.faq-list {
    margin-top: 20px;
    text-align: left; /* Alineación del texto a la izquierda */
}
.titulo-timeline-section {
    text-align: center;
    /* Otros estilos según sea necesario */
}

/* Estilo para la sección de valores */
.values-section {
    text-align: center;
   /* padding: 20px;*/
  }
  
  
  /* Estilo para la tabla de valores */
  .tablevalues-section {
    width: 100%;
   /* max-width: 100%; /* Puedes ajustar el ancho máximo según tus necesidades */
    margin: 0 auto; /* Centra la tabla en la página */
    background-image: url('images/LOGOS NUEVOS-06.png'); /* Reemplaza 'ruta/a/tu/imagen.jpg' con la ruta de tu imagen */
    
    background-size: contain; /* Ajusta el tamaño de la imagen para cubrir el fondo */
    background-position: center; /* Centra la imagen en la tabla */
    background-repeat: no-repeat; /* Evita la repetición de la imagen */
  }
  
  /* Estilo para las celdas de la tabla */
  .tablevalues-section td {
    height: 80px; /* Altura de cada celda */
    padding: 5px;
    color: #fff; /* Color del texto en las celdas */
    text-align: left;
  }
  /* Estilos específicos para pantallas pequeñas, como dispositivos móviles */
@media (max-width: 600px) {
    .tablevalues-section {
        grid-template-columns: 1fr; /* Cambia a una disposición vertical */
        background-size: 50%; /* Ajusta el tamaño de la imagen para cubrir el fondo */
        background-position: center; /* Centra la imagen en la tabla */
        background-repeat: no-repeat; /* Evita la repetición de la imagen */
    }

    .column {
        margin-bottom: 20px; /* Espacio entre columnas en disposición vertical */
    }
}


/* Estilo para la nueva sección "detalleabout" */
.detalleabout {
    text-align: center;
   /* padding: 20px;*/
    margin-top: 10px;
    display: flex;
   
  }
  .detalleabout img{
    max-height: 50%;
    max-width: 50%;
    padding: 20px;
    margin-top: 20px;
    
   
  }

  .about-paragraph {
    margin-bottom: 15px; /* Ajusta el espacio entre los párrafos */
    line-height: 1.5; /* Ajusta la altura de línea para mejorar la legibilidad */
    max-width: 50%;
    padding: 20px;
    text-align: justify;
}
@media (max-width: 600px) {
    .detalleabout {
        text-align: center;
       /* padding: 20px;*/
        margin-top: 10px;
        display: grid;
       
      }
      .detalleabout img{
        max-height: 100%;
        max-width: 90%;
        padding: 20px;
        margin-top: 20px;
        
       
      }
      .about-paragraph {
        margin-bottom: 15px; /* Ajusta el espacio entre los párrafos */
        line-height: 1.5; /* Ajusta la altura de línea para mejorar la legibilidad */
        max-width: 90%;
        padding: 20px;
        text-align: justify;
    }
}

  
/* Agrega estos estilos a slider */

.contenidoashland {
    text-align: center;
   /* padding: 20px;*/
  }
  
  
  .slick-carousel {
    width: 80%;
    margin: auto;
   
  }

  
  .carousel-slide img {
    max-width: 90%; /* Ajusta el tamaño máximo según sea necesario */
    height: 90%;
  }
  
  .carousel-content {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .carousel-content h3 {
    color: #333;
  }
  
  .carousel-content p {
    color: #666;
  }

  .slick-arrow {
    visibility: hidden ;
  }


.timeline-event img {
    /* Si también hay imágenes, puedes ajustar su tamaño o centrarlas */
    width: 280px; /* Tamaño deseado en píxeles o porcentaje */
    height: auto; /* Esto mantiene la proporción original */
    display: block; /* Evita que la imagen afecte el espacio verticalmente */
    margin: 0 auto; /* Centra la imagen horizontalmente */
}


.column {
    position: relative;
    overflow: hidden;
}

/* Agrega estilos para la clase "column-hoverable" al pasar el ratón */
.column-hoverable {
    position: relative;
}

/* Estilos iniciales para la imagen de ratón pasando */
.column-hover-image {
    position: relative;
    top: 0;
    left: 0;
    display: none;
}

/* Mostrar la imagen de ratón pasando al pasar el ratón */
.column-hoverable:hover .column-image {
    display: none;
}

.column-hoverable:hover .column-hover-image {
    display: block;
}

/* Estilos específicos para pantallas pequeñas, como dispositivos móviles */
@media (max-width: 600px) {
    .column-hoverable:hover .column-hover-image {
        grid-template-columns: 1fr; /* Cambia a una disposición vertical */
    }

    .column {
        margin-bottom: 20px; /* Espacio entre columnas en disposición vertical */
    }
}

.close-buttonfaqs {
    position: absolute;
    bottom: 10px; /* Ajusta la distancia desde la parte inferior según sea necesario */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.close-buttonfaqs:hover {
    background-color: #555;
}
.popupfaqs-content {
    max-height: 500px; /* Ajusta la altura máxima según sea necesario */
    overflow-y: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }
  .form-group {
    margin-bottom: 1rem;
    box-sizing: border-box;
  }
  .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    box-sizing: border-box;
  }
  .form-row > .col, .form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  /* Estilos para dispositivos más pequeños (por ejemplo, dispositivos móviles) */
@media (max-width: 768px) {
    .form-row {
        display: block;
    }
}


  .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }


  .form-control {
    display: block;
    width: 90%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  } 

h2 {
    text-align: center;
    margin: 35px 0 20px 0 !important;
  }
  textarea.form-control {
    height: auto;
  } 

/* Estilo de pagina aboutus */


html{
    font-family: sans-serif;
    }
.lineatemp{
    position: relative;
    width: 80%;
    margin: 0 auto;
    border: 1px solid lightgray;
    border-radius: 10px;
    margin-top: 20px;
    }
.fila{
    display: flex;
    justify-content: start;
    border-bottom: 1px solid lightgray;
    position: relative;
    }
.fila .disco{
    width: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    }
.fila .disco:after{
    content:'';
    position: absolute;
    top: 0;
    left: calc(505 - 2px);
    height: 100%;
    width: 3px;
    background: #80DEEA;
    z-index: -1;
    }
.fila:first-child .disco:after{
    height: 50%;
    top: 50%;
    }
.fila:last-child .disco:after{
    height: 50%;
    }
.fila .disco > div{
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: lightblue;
    box-sizing: border-box;
    }
.fila:hover .disco > div{
    border: 3px solid red;
    background: white;
    }
.fila div:nth-of-type(2){
    width: 20%;
    padding: 4px;
    display: flex;
    align-items:center;
    }
.fila div:nth-of-type(3){
    width: 60%;
    padding: 4px;
    }
    


  /* Estilo de pagina own-cravingcave */

  .Seccion1-owncc {
    background-color: #000000; /* Color de fondo para la sección */
    padding: 20px; /* Añade espacio interno alrededor del contenido */
    /*height: 600px;*/
    display: flex;
}
@media (max-width: 768px) {
  .Seccion1-owncc {
      display: block;
  }
  .Slider-swiper .swiper{
    max-width: 25%;
  }
}
.Slider-swiper .swiper{
  max-width: 90%;
}

.mi-tabla {
    width: 100%; /* Hace que la tabla ocupe todo el ancho disponible */
    border-collapse: collapse; /* Combina los bordes de las celdas para un aspecto más limpio */
    height:90% ;
}

/* Estilo para la columna izquierda */
.columna-izquierda {
    width: 40%;
    height: auto;
}

/* Estilo para la columna derecha */
.columna-derecha {
    width: 60%;
}   

.seccion-con-video {
    padding: 20px;
    background-color: #009ee2; /* Color de fondo para la sección */
    padding: 20px; /* Añade espacio interno alrededor del contenido */
    text-align: center; /* Centra el texto en la sección */
    max-width: 100%; /* Define el ancho máximo de la sección */
    margin: 0 auto; /* Centra la sección horizontalmente */
    margin-top: 10px;
}
.seccion-own-video{
    padding: 20px;
    background-color: #ffcf00; /* Color de fondo para la sección */
    padding: 20px; /* Añade espacio interno alrededor del contenido */
    text-align: center; /* Centra el texto en la sección */
    max-width: 70%; /* Define el ancho máximo de la sección */
    margin: 0 auto; /* Centra la sección horizontalmente */
}

.seccion-con-video h2 {
    color: #ffffff; /* Color del texto */
    font-size: 24px; /* Tamaño del texto */
    margin-bottom: 20px; /* Añade espacio en la parte inferior del texto */
}

video {
    max-width: 100%; /* Asegura que el video no sea más ancho que su contenedor */
    /*height: 500px;*/
}


/* Otra seccion */
.mi-tabla td {
    padding: 10px; /* Añade espacio interno en las celdas de la tabla */
}



.mi-tabla img {
    width: 100%; /* Hace que la imagen ocupe todo el ancho de la columna */
    display: block; /* Elimina espacios debajo de la imagen */
    margin-bottom: 10px; /* Añade espacio entre la imagen y la lista */
}

.mi-tabla ul {
    list-style-type: none; /* Elimina viñetas de la lista */
    padding: 0; /* Elimina el espacio interno predeterminado de la lista */
}

.mi-tabla li {
    margin-bottom: 10px; /* Añade espacio entre elementos de la lista */
}

/* Estilos de pagina cravingcave-experience */
.detallecraexp {
    margin-top: 10px; /* Ajusta la distancia desde la parte inferior según sea necesario */
    text-align: center;
    height: 400px; /* Ajusta la altura según tus necesidades */
  }

input[type=radio] {
    display: none;
  }
  
  .card {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
  }
  
  .galeria-craexp {
    width: 100%;
   /* max-width: 800px;*/
    max-height: 600px;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .cards {
    /*position: relative;*/
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }
  
  img {
    width: 100%;
   /* height: 100%;*/
    border-radius: 10px;
    object-fit: fill;
  }
  .swiper img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: fill;
  }

  .cards img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: fill;
  }
  
  
  #item-1:checked ~ .cards #song-3, #item-2:checked ~ .cards #song-1, #item-3:checked ~ .cards #song-2 {
    transform: translatex(-40%) scale(.8);
    opacity: .4;
    z-index: 0;
  }
  
  #item-1:checked ~ .cards #song-2, #item-2:checked ~ .cards #song-3, #item-3:checked ~ .cards #song-1 {
    transform: translatex(40%) scale(.8);
    opacity: .4;
    z-index: 0;
  }
  
  .cards #song-1, #item-2:checked ~ .cards #song-2, #item-3:checked ~ .cards #song-3 {
    transform: translatex(0) scale(1);
    opacity: 2;
    z-index: 1;
    
    img {
      box-shadow: 0px 0px 5px 0px rgba(81, 81, 81, 0.47);
    }
  }
  
  .detallecraexp-resum {
    margin-top: 20px; /* Ajusta la distancia desde la parte inferior según sea necesario */
    background-color:#666;
    display: flex;
    justify-content: space-between;
    border-radius: 8px;

  }
  
  /* Estilos para tamaños de pantalla pequeños (como dispositivos móviles) */
@media screen and (max-width: 768px) {
    section.detallecraexp-resum {
        flex-direction: column;
        align-items: center;
    }
    .detallecraexp-resum p {
        color: #ffffff; /* Color del texto */
        font-size: 24px; /* Tamaño del texto */
        margin-bottom: 20px; /* Añade espacio en la parte inferior del texto */
        margin-right: 1%;
        margin-left: 1%;
        min-width: 90%;
    }
    .detallecraexp-resum img {
    
        min-width: 100%;
    }
}



/*slide swiper */
.swiper {
    width: 600px;
    height: 400px;
  }
  
  swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
  }

  swiper-slide img {
    display: block;
    width: 100%;
  }
.columna-derecha li{
  color: #ffffff; /* Color del texto */
  font-size: 20px; /* Tamaño del texto */
  margin-bottom: 5px; /* Añade espacio en la parte inferior del texto */
}

.detallecraexp-resum p {
    color: #ffffff; /* Color del texto */
    font-size: 24px; /* Tamaño del texto */
    margin-bottom: 20px; /* Añade espacio en la parte inferior del texto */
    margin-right: 1%;
    margin-left: 1%;
    max-width: 50%;
    text-align: justify;
}
.detallecraexp-resum img {

    min-width: 50%;
}
.container-formulario{
    max-height: 30%;
}


/*/*/


/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
/*
body{
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: #ececee;
	background-color: #1f2029;
	overflow: hidden;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
  height: 100vh;
  width: 100%;
}
*/
.section-center{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}
h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 7vw;
  line-height: 1;
  color: #ffeba7;
  text-align: center;
  -webkit-text-stroke: 2px #ffeba7;
  text-stroke: 2px #ffeba7;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  color: transparent;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}
.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 63px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}
.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease, 
              right 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
  position: fixed;
  top: 33px;
  right: 50px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
  background-color: #353746;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 10%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}
.nav ul li{
  position: relative;
  display: block;
  width: 80%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}
.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}
.nav ul li a{
  font-family: 'Montserrat', sans-serif;
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}
.nav ul li a:hover{
  text-decoration: none;
  color: #ffeba7;
}
.nav ul li a:after{
  display: block;
  position: absolute;
  top: 50%;
  content: '';
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #353746;
  opacity: 0.8;
  transition: width 250ms linear;
}
.nav ul li a:hover:after{
  width: 100%;
}


.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}
.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}



.logo {
	position: absolute;
	top: 60px;
	left: 50px;
	display: block;
	z-index: 11;
	transition: all 250ms linear;
}
.logo img {
	height: 26px;
	width: auto;
	display: block;
}



@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 55px;
  }
  .logo {
    left: 30px;
  }
  .nav{
    right: 30px;
  }
  h1{
    font-size: 9vw;
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    -webkit-text-fill-color: #ffeba7;
    text-fill-color: #ffeba7;
    color: #ffeba7;
  }
  .nav ul li a{
    font-size: 8vh;
  }
}

.ccgallery-container{
  background-color: #009ee2;
}
.text-Disclaimer{
  font-size: 9px;
  
}

.text-writeus{
  font-size: 26px ;
  text-align: center;
}
.titulo-ccgallery {
  text-align: center;
  margin: 20px 0; /* Agrega margen superior e inferior según sea necesario */

}
h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 7vw;
  color: #ffcf00;
  text-align: center;
  -webkit-text-stroke: 2px #ffcf00;
  color: transparent;
}

/* Estilo para la sección de locaciones imágenes */
.Location-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilo para cada contenedor de imagen */
.Location-image-container {
  flex: 0 0 48%; /* Ajusta según sea necesario para el espacio entre las imágenes */
  margin-bottom: 20px;
}

/* Estilo para las imágenes */
.Location-image-container img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd; /* Bordes opcionales para resaltar las imágenes */
  border-radius: 8px; /* Bordes redondeados opcionales */
}
/* Estilos específicos para pantallas pequeñas, como dispositivos móviles */
@media (max-width: 600px) {
  .Location-content {
      display: grid; /* Cambia a una disposición vertical */
  }
}

.carousel slide{
  max-height: 50%;
  max-width: 90%;
  background-color: rgba(255, 255, 255, 0.8);
  }
.carousel-item {
  height: 400px;
  width: 90%;
  margin: 20px 0; /* Agrega margen superior e inferior según sea necesario */


}
.w-100{
  width: 80%;
  height: 100%;
}
.w-200{
width: 80%;
height: 100%;
align-items: center; /* Centrar horizontalmente */
margin-left: 10%;

}

.divider-ashland{
  background-color: #009ee2;

}