/*Secciones*/
.projects_section-all{
  width: fit-content;
  margin: 20px auto;
  height: auto;
  display: inline-block;
}
.projects_section{
  width: calc(33% - 16px);
  overflow:hidden;
  height: fit-content;
  margin:3px;
  padding: 0;
  display:block;
  position:relative;
  float:left;
  border: 5px solid #1c3e4b;
  transition: all 0.3s ease 0s;
}
.projects_section_img{
  width: 100%;
  transition-duration: .3s;
  max-width: 100%;
  display:block;
  overflow:hidden;
  cursor:pointer;
  border-bottom: 5px solid #1c3e4b;
}
.projects_section h3{
  color: #000;
  text-align: center;
  max-width: 100%;
}
.projects_section:hover{
  transform: scale(1.02);
  box-shadow: 0px 1px 5px 1px #1c3e4b;
}

/*Obras*/
.projects_container-all{
    width: fit-content;
    margin: 20px auto;
    height: auto;
    display: inline-block;
}
.projects_container{
    width: calc(33% - 16px);
    overflow:hidden;
    height: fit-content;
    margin:3px;
    padding: 0;
    display:block;
    position:relative;
    float:left;
    border: 5px solid #1c3e4b;
    background-color: #92b93a;
}
.projects_img{
    width: 100%;
    transition-duration: .3s;
    max-width: 100%;
    display:block;
    overflow:hidden;
    cursor:pointer;
}
.projects_title{
    text-align: center;
    position:absolute;
    display:block;
    cursor:pointer;
    top: 50%;
    display: none;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 2em;
    text-shadow: 1px 5px 10px #000;
    transition-duration: .3s;
}
.projects_text{
    position:absolute;
    top: 70%;
    cursor:pointer;
    max-width: 80%;
    text-align:center;
    left: 50%;
    text-shadow: 1px 5px 10px #000;
    font-size: 1em;
    display:none;
    margin-right: -50%;
    transition-duration: .3s;
    transform: translate(-50%, -50%) 
}
.projects_container:hover img{
    transform: scale(1.1);
    transition-duration: .3s;
    filter: opacity(25%);
    opacity: .7;
}
.projects_container:hover span{
    color:#FFF;
    display: block;
    transition-duration: .3s;
}

.projects_section-title{
  width: calc(90% - 32px); 
  display: inline-block;
}

/*Proyecto*/
.project_article{
  width: 48.8%;
  display: inline-block;
  margin: auto;
  text-align: justify;
  margin: 0.5%;
  vertical-align: text-top;
}
.project_ul{
  list-style: none;
}
.project_article li{
  padding: 6px 0px;
}
/*Slider*/
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}
.slider_img{
  width: 100%;
  border: 5px solid #1c3e4b;
}
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  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: #92b93a;
}

/* Caption text */
.text {
  color: #FFF;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 5px;
  width: 96.5%;
  text-align: center;
  background-color: #1c3e4b;
}

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

/* The dots/bullets/indicators */
.dot {
  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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

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

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

  @media (max-width: 1060px) {
    .project_article{
      width: 100%;
    }
  }
  @media (max-width: 900px) {
    .projects_section {
      width: calc(50% - 16px);
    }
    .projects_container {
      width: calc(50% - 16px);
    }
    .projects_section h3{
      font-size: 18px;
    }
	  .projects_title
      {
        font-size: 20px;
      }

  }
  @media (max-width: 400px) {
      .projects_container {
          width: 100%;
      }
      .projects_section {
          width: 100%;
      }
      .projects_section-title{
        color: #000;
        text-align: center;
        max-width: 100%;
        font-size: 20px;
      }
	  .projects_title
      {
        font-size: 15px;
      }
  }

  /* https://codepen.io/Peluko/pen/aQwYYV  Galeria para trabajos */