html , body {
  background: #e8e7e7;
  background-color: #e8e7e7;
}
/* Intro */
#introduccion {
  width: 100%;
  height: auto;
  background: #ffffff;
  background-color: #ffffff;
  text-align: center;
  padding: 50px 0 0 0;
  line-height: 0;
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}
#introduccion::before {
  content: '';
  width: 100%;
  height: 50%;
  background: #e8e7e7;
  background-color: #e8e7e7;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .3s ease;
}
#introduccion img {
  position: relative;
}
/*  */

/* Post List */
#postList {
  width: 100%;
  height: auto;
  padding: 50px 5% 50px 5%;
  background: #e8e7e7;
  background-color: #e8e7e7;
  position: relative;
  overflow: hidden;
}
.postLista {
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
  position: relative;
  overflow: hidden;
}
.postLista:nth-child(n+2) {
  padding: 50px 0 0 0;
}

.postContainer {
  width: 100%;
  height: auto;
  padding: 0 0 50px 0;
  position: relative;
  overflow: hidden;
}
.postContainer:nth-child(2) , .postContainer:nth-child(3) , .postContainer:nth-child(4), .postContainer:nth-child(5) {
  width: 100%;
  height: auto;
  padding: 50px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.postContainer::after {
  content: '';
  width: 75%;
  height: 2px;
  background: #abaaaa;
  background-color: #abaaaa;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s ease;
}

.postMain {
  width: 100%;
  height: auto;
  padding: 0 5% 0 5%;
}

.imgPost {
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0 0 0 0;
  line-height: 0;
  position: relative;
}
.imgPost01 {
  width: 100%;
  height: auto;
  text-align: right;
  padding: 0 0 0 0;
  line-height: 0;
  position: relative;
}

.imgPost img, .imgPost01 img {
  -webkit-box-shadow: 0px 15px 5px -1px rgba(0,0,0,0.23);
  -moz-box-shadow: 0px 15px 5px -1px rgba(0,0,0,0.23);
  box-shadow: 0px 15px 5px -1px rgba(0,0,0,0.23);
  transition: all .3s ease;
}

.postInfo {
  width: 100%;
  height: auto;
  padding: 25px 15% 25px 15%;
  position: relative;
  transition: all .3s ease;
}
.postInfo h1 {
  font-size: 55px;
  color: #c1996a;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  transition: all .3s ease;
}
.postInfo p {
  font-family: 'Roboto';
  font-weight: normal;
  font-style: normal;
  text-align: justify;
  font-size: 16px;
  color: #9a9999;
  padding: 15px 0 0 0;
  transition: all .3s ease;
}

.postFooter {
  width: 100%;
  height: auto;
  padding: 35px 0 0 0;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.postLink {
  font-family: 'Roboto';
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  color: #4b4a66;
  text-transform: uppercase;
  border: 2px solid #4b4a66;
  padding: 10px 60px 10px 60px;
  letter-spacing: 8px;
  text-align: center;
  line-height: 30px;
  text-align: center;
  width: auto;
  height: 30px;
  margin: 0 auto;
  transition: all .3s ease;
}
.postLink:hover {
  color: #ffffff;
  background: #c49a6c;
  background-color: #c49a6c;
  border: 2px solid #c49a6c;
}
/*  */

/* Loader On Scroll */
.loaderMain {
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
}

.loaderCCAbogadas {
  border: 16px solid #4b4a66;
  border-radius: 50%;
  border-top: 16px solid #c49a6c;
  width: 60px;
  height: 60px;
  -webkit-animation: spin .7s linear infinite; /* Safari */
  animation: spin .7s linear infinite;
  margin: 0 auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

ul.pagination {
  display: none;
}
/*  */
