/* Estilos para el boton de catalogo */
.btn-container1{
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalogo{
    display: contents;
}

.button-oniyn {
  border-radius: 30px;
  border: solid;
  color: #d96e30;
  background: white;
  outline: none;
  font-size: 25px;
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 255px;
  width: 100%;
  display: flex;
  text-align: center;
  min-height: 140px;
  justify-content: center;
  align-items: center;
}
.button--bounce:hover {
  animation: bounce .3s ease-in-out 0s 1;
  
}
.button-oniyn:hover{
     color: #d96e30;
}
.button--pluse {
  position: relative;
}
.button--pluse::before, .button--pluse::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  border-radius: 30px;
}
.button--pluse::after {
  top: -16px;
  left: -13px;
  z-index: 1;
  width: 110%;
  height: 165px;
  border: 3px solid #d96e30;
}
.button--pluse::before {
  z-index: -1;
  width: 80%;
  height: 136px;
  background: #c45719;
  opacity: .4;
  top: 0;
  left: 24px;
  animation: pluse .6s ease-in-out 0s infinite alternate;
}
.button--pluse:hover::after {
  animation: pluse-ring 1.5s ease-out 0s infinite;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes pluse {
  0% {
    transform: scale(1.4, 1.4);
  }
  50% {
    transform: scale(1.6, 1.6);
  }
  100% {
    transform: scale(1.5, 1.5);
  }
}
@keyframes pluse-ring {
  0% {
    transform: scale(0, 0);
  }
  100% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}


/* Estilos para las imagenes del modulo de proyectos */
.textosDescripcion {
  padding-top:35px;
}

.textosDescripcionCategoria {
  padding-top: 35px;
  margin-left: 12%;
  margin-right: 14%;
}

.contenedorImagenProyecto{
  margin-left: 6%;
}

.imgProyecto2{
  border-radius: 20px;
  max-height: 600px;
  min-height: 600px;
  object-fit: fill;
  width: 90%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: invert(0%);
}
.contenedorCardProyectos{
  margin: 50px;
}
.cartasProyectos{
  margin-left: 10rem;
  margin-right: 11rem;
  justify-content: center;
}
.catalogoProyectos{
  margin-left: 11rem;
}
.page-description2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 6%;
  padding-left: 0;
}

.card-proyectos{
  background-color: black;
  width: 18rem;
  
}

.imagenCartaProyecto{
  max-height: 280px;
  min-height: 280px;
}

.btnProyectos{
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnContact{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3rem;
  margin-left: 10rem;
  margin-right: 18rem;
  margin-top: 20px;
}

.formularioContacto{
  color: white;
  background: black;
}

.btnContact a:hover{
  color: white;
}

@media (min-width: 768px) and (max-width: 1590.98px){
  .carousel-control-prev {
    left: 33px;
    opacity: 1;
  }
  .carousel-control-next {
    right: 33px;
    opacity: 1;
  }
  /* .carousel-control-prev-icon{
    background-image: url(../images/back.png);
  }
   */
  .cartasProyectos{
    margin-left: 0.5rem;
    margin-right: 7rem;
  }
  .catalogoProyectos{
  margin-left: 2rem;
  }
  .card-proyectos{
    width: 18rem;
  }
  .imagenCartaProyecto {
    max-height: 220px;
    min-height: 220px;
  }
  .imgProyecto2 {
    max-height: 400px;
    min-height: 400px;
    width: 80%;
  }
  .page-description2 {
    padding-right: 12%;
  }
}
@media (max-width: 576px){
  .breakProyectos{
    margin-top: 10px;
  }
  .breackCarousel{
    min-height: 380px;
    max-height: 380px;
    width: 100%;
  }
  .imgProyecto2{
    max-height: 380px;
    min-height: 380px;
  }
  .contenedorCardProyectos{
    margin: 0;
    margin-top: 10px;
  }
  .cartasProyectos{
    margin: 0;
    margin-left: 2rem;
  }
  .catalogoProyectos{
    margin-left: 0.4rem;
  }
  .page-description2{
    padding-left: 6%;
    padding-right: 0;
  }

}



