.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ff6947;
  box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  width: 100%;
  padding: 20px 30px;
  background: #ff6947;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  transition: background 0.1s, color 0.1s;
}
.label:hover {
  background: #bfd0db;
}
.label:active {
  background: #ccc;
}
.input:focus + .label {
  z-index: 1;
}
.input:checked + .label {
  background: #fff;
  color: #000;
}
@media (min-width: 600px) {
  .label {
    width: auto;
  }
}
.panel {
  display: none;
  padding: 20px 30px 30px;
  background: #fff;
  width: 100%;
}
.panel {
  display: none;
  padding: 20px 30px 30px;
  background: #fff;
}
@media (min-width: 600px) {
  .panel {
    order: 99;
  }
}
.input:checked + .label + .panel {
  display: block;
}
.cosmo-button {
  font-size: 16px; 
  height: 40px; 
  width: 200px; 
  background-color: #ff6947; 
  border-radius: 10px; 
  padding: 5px; 
  margin: 20px; 
  border: none;}

.cosmo-button a {
  color: #fff;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.cards .card {
    padding: 170px 10px 10px;
    max-width: 300px;
    min-height: 770px;
    position: relative;
    border: 1px solid #292929;
    border-radius: 10px;
}

.cards .card .img {
    position: absolute;
    height: 150px;
    width: 298px;
    top: 0;
    left: 0;
    
}

.cards .card .body {
  display: flex;
  flex-direction: column;
  align-items: center;
    
}
.cards .card .img img{
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 100%;
}

  .panel {
    order: 99;
  }
}
.input:checked + .label + .panel {
  display: block;
}



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


.principal-img {
 cursor: pointer;
}
    dialog.modal {
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        position: relative;
    }

    .close {
     position: absolute;
    right: 40px;
    top: 20px;
    font-size: 2rem;
    }


    a img {
        width: 100%;
    }


    .slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    }

    /* Hide the images by default */
    .mySlides, .mySlides1 {
    display: none;
    }

    /* Next & previous buttons */
    .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    }

    /* Position the "next button" to the right */
    .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    }

    /* Caption text */
    .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    }

    /* Number text (1/3 etc) */
    .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    }

    /* The dots/bullets/indicators */
    .dot ,  .dot1 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    }

    .active, .dot:hover {
    background-color: #717171;
    }

    /* Fading animation */
    .fade {
    animation-name: fade;
    animation-duration: 1.5s;
    }

    @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
    }