@import url('https://fonts.googleapis.com/css?family=Asap:400,600&display=swap');

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  transition: 0.2s;
}
body {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Asap', sans-serif;
}
a {
  text-decoration: none;
}

.texto1{
  font-size: 14px;
  margin-bottom: 5px;
}

.texto2{
  font-size: 14px;
}

.texto3{
  font-size: 12px;
  text-align: justify;
}

.titulo-portafolio{
  font-size: 15px;
  font-family: 'Asap', sans-serif;
}

.vermas{
  background-color: #c6893b;
  color: #fff;
  text-decoration: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #c6893b;
  border-radius: 20px;
  transition: .7s ease-in-out;
}

.vermas:hover{
  background-color: transparent;
  color: #c6893b;
  text-decoration: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border: 2px solid #c6893b;
  border-radius: 20px;
  transition: .7s ease-in-out;
}

.item {
  width: 350px;
  height: 500px;
  background: #fff;
  position: relative;
  box-shadow: -15px 7px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 10px;
}
.item .img {
  width: 100%;
  height: 50%;
  background: black;
  border-radius: 10px 10px 0 0;
  position: absolute;
  z-index: 5;
  overflow: hidden;
}
.item .img-content {
  width: 100%;
  height: 100%;
  transition: 0 !important;
  background-image: url(madisonVeracruz.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.item .text-container {
  width: 100%;
  height: 55%;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  z-index: 10;
  box-shadow: -3px -10px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
}
.item .content {
  height: 63%;
  margin-bottom: 10px;
  overflow: hidden;
}
.item h2 {
  margin-bottom: 10px;
  margin-top: 10px;
}
