h1.home {
  font-size: 2.5rem;
}
h1 .thin {
  font-size: 2rem;
  font-family: 'Gillroy', sans-serif;
  font-weight: 400;
}
h2.home {
  font-family: 'Novecento', sans-serif;
  font-size: 2rem;
}
h5.home {
  font-size: 1rem;
  font-weight: 700;
}

/* SLICK ******************************************************************/
.slick {
  z-index: 9;
}
.slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  height: 20px;
  width: 20px;
  transform: translateY(-50%);
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, .4);
  font-size: 2rem;
  cursor: pointer;
  transition: all .5s linear;
}
.slick-slide {
  position: relative;
}
.slick-arrow:hover {
  color: rgba(255, 255, 255, 1);
}
.slick-prev1 {
  left: 50px;
  z-index: 12
}
.slick-next1 {
  right: 50px;
}
.slick-dots{
  position: absolute;
  bottom: 20px;
  display: block;
  width: 100%;
  padding: 10;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li button::before {
  font-size:10px;
  color: #403835;
  opacity: .9;
}
.slick-dots li.slick-active button:before{
  font-size:10px;
  color: #1D9ED5;
}
.slide {
  height: 100vh;
  background-position: top center;
  background-size: cover;
}
.slide_content {
  position: absolute;
  bottom: 20%;
  right: 70px;
  width: 50%;
}
.slide_state {
  text-align: right;
  color: rgba(0, 0, 0, 0.1);
  -webkit-text-stroke: 1px #FFF;
  /*text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF;*/
  text-transform: uppercase;
  font-family: 'Novecento', sans-serif;
  font-size: 3rem;
  font-weight: 400;
}
.slick-active .slide_state {
  opacity: 1;
  animation-name: slideFadein;
  animation-duration: 1s;
}
.slick-active .slide_name {
  opacity: 1;
  animation-name: slideFadein;
  animation-duration: 1.5s;
}
@keyframes slideFadein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.slide_name {
  color: #FFF;
  font-family: 'Novecento', sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 7rem;
  text-align: right;
}
.slide_link {
  text-align: right;
  color: #FFF;
  font-size: 1.25rem;
}

.slide2 {
  height: 380px;
  position: relative;
  background-position: center center;
}
.slide_text {
  background-color: rgba(255, 255, 255, .8);
  color: #000;
  font-family: 'Dosis', sans-serif;
  font-weight: 300;
  font-size: 3rem;
  padding: 10px 12px;
  line-height: 2.8rem;
}

.conocenos {
  background-image:url('../img/bg-conocenos.jpg');
  background-position: center center; 
  background-size: cover; 
  height: 450px;
  color: #FFF;
  font-size: 2rem;
  line-height: 2.5rem;
}

.button-green {
  margin-top: 30px;
  width: 280px;
  color: #FFF;
  background-color: #79863C;
  height: 56px;
  line-height: 56px;
  border-radius: 28px 28px 28px 0;
  text-align: center;
}

.proyectos {
  background-color: #D7D2CB;
  background-image: url('../img/bg-patron1.png');
  background-position: top center;
  background-repeat: repeat-x;
}
.proyecto-img-container {
  height: 370px;
  overflow: hidden;
}
.proyecto-img {
  width: calc(100% + 20px);
  background-position: center center;
  background-size: cover;
}
.proyecto-info-container{
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.proyecto-info {
  position: absolute;
  bottom: 0;
  transition: all .5s;
  transform: translatey(50px);
}
.proyecto-info-active {
  transform: none;
}
.proyecto-info-state {
  text-transform: uppercase;
}
.proyecto-button {
  font-weight: 700;
  margin-top: 10px;
  color: #FFF;
  width: 200px;
  height: 46px;
  line-height: 46px;
  border-radius: 23px 23px 23px 0;
  text-align: center;
}

section.blog {
  background-color: #8C857B;
  background-image: url('../img/bg-patron2.png');
  background-position: center top;
  background-repeat: repeat-x;
}
/* estilos heredados de la versión anterior */
.blog {
  background-color:#FFF;
}
.blog_photo {
  width: 100%;
  height: 130px
}
.blog_photo .w-100{
  background-size: cover;
}
.blog_info {
  overflow: hidden;
  height: 210px;
  padding: 20px;
  font-size: 0.9286rem;
}
.ahref_no_deco, .ahref_no_deco:hover {
  text-decoration: none;
}
.blog h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1D9ED5;
}

/* MEDIA QUERIES *****************************************************************/

@media screen and (max-width: 992px) { 
  .proyecto-info {
    position: relative;
    transform: none;
  }
  .slide_content {
    width: 80%;
  }
  .slide_name {
    font-size: 4rem;
    line-height: 5rem;
  }
  .slide_state {
    -webkit-text-stroke: .75px #FFF;
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) { 
  .slide_content {
    right: 30px;
    width: 80%;
    bottom: 30%;
  }
  .slide_name {
    font-size: 3rem;
    line-height: 3rem;
  }
  .slide_state {
    color: rgba(0, 0, 0, .1);
    -webkit-text-stroke: .9px #FFF;
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 576px) { 

}