@import url('https://fonts.googleapis.com/css?family=Aubrey');
@import url('https://fonts.googleapis.com/css?family=Caesar+Dressing');
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Caesar Dressing', Arial, Helvetica, sans-serif;
}
p {
  font-family: 'Aubrey', Arial, Helvetica, sans-serif;
}
#loader-container {
  background: #2f241f;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999 !important;
}
.loader:before,
.loader:after,
.loader {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  margin: 8em auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-animation-delay: 0.16s;
  animation-delay: 0.16s;
}
.loader:before {
  left: -3.5em;
}
.loader:after {
  left: 3.5em;
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em #ffffff;
  }
  40% {
    box-shadow: 0 2.5em 0 0 #FFF;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em #ffffff;
  }
  40% {
    box-shadow: 0 2.5em 0 0 #FFF;
  }
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
* {
  box-sizing: border-box;
  font-family: 'Caesar Dressing', Arial, Helvetica, sans-serif;
  font-weight: 300;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
.outer-menu {
  position: fixed;
  top: 46vh;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .outer-menu {
    top: 10px;
    right: 10px;
  }
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 80px;
  height: 80px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: .75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  padding: .5em 1em;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .outer-menu .hamburger {
    width: 60px;
    height: 60px;
  }
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 5px;
  background: #F0BC3A;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -13.33333333px;
  left: 0;
  width: 100%;
  height: 5px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 13.33333333px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #F0BC3A;
  background: #2f241f;
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 0.5em;
  font-size: 2.125em;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #e5e5e5;
}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 5px;
  background: #e5e5e5;
  transition: width 0.4s ease;
}
.outer-menu .menu > div > div > ul > li.redes a {
  margin: 0px 5px;
}
.outer-menu .menu > div > div > ul > li.redes a svg {
  height: 30px;
  width: 30px;
  transition: all .5s ease;
}
.outer-menu .menu > div > div > ul > li.redes a svg path {
  fill: #F0BC3A;
  transition: all .4s ease;
}
.outer-menu .menu > div > div > ul > li.redes a:hover:after {
  width: 0%;
}
.outer-menu .menu > div > div > ul > li.redes a:hover svg {
  transform: scale(1.1);
}
.outer-menu .menu > div > div > ul > li.redes a:hover svg path {
  fill: #fff;
}
#categorias {
  position: relative;
  width: 100%;
  margin: 0;
  background: #363533;
  height: 100vh;
}
#categorias a,
#categorias button {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#categorias a:hover,
#categorias button:hover,
#categorias a:focus,
#categorias button:focus,
#categorias a:active,
#categorias button:active {
  text-decoration: none;
  outline: none;
}
#categorias .header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/paper.png") center center no-repeat;
  height: 318px;
  z-index: 50;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #categorias .header {
    position: fixed;
    top: 0px;
    left: 0px;
    transform: translate(0, 0);
    height: 90px;
    background: url("../images/paper-mobile.png") center top no-repeat;
  }
}
#categorias .header h1 {
  font-family: 'Caesar Dressing', Arial, Helvetica, sans-serif;
  color: #4e3122;
  font-size: 8.75em;
  line-height: 1em;
}
#categorias .header h1 span {
  color: #E75616;
}
@media screen and (max-width: 768px) {
  #categorias .header h1 {
    font-size: 3.75em;
  }
}
#categorias .header p {
  font-size: 1.875em;
}
#categorias .accordion {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}
#categorias .accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
#categorias .accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 20%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  #categorias .accordion ul li {
    border-bottom: 5px solid #F0BC3A;
  }
}
#categorias .accordion ul li .by {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(231, 86, 22, 0.2);
}
@media screen and (max-width: 768px) {
  #categorias .accordion ul li .by .p-uno {
    border-bottom: 2px solid #F0BC3A;
    margin-top: 4rem;
  }
}
#categorias .accordion ul li .by a {
  display: block;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  transition: all 200ms ease;
}
#categorias .accordion ul li .by a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
#categorias .accordion ul li .by a .paragraph {
  font-family: 'Aubrey', Arial, Helvetica, sans-serif;
  text-overflow: clip;
  font-size: 1.25em;
  margin-bottom: 2px;
  max-width: 550px;
  clear: both;
}
@media screen and (max-width: 768px) {
  #categorias .accordion ul li .by a .paragraph {
    font-size: 1.125em;
    line-height: 21px;
  }
}
#categorias .accordion ul li .by a .author {
  font-family: 'Caesar Dressing', Arial, Helvetica, sans-serif;
  font-size: 1.875em;
  border-top: solid 2px #F0BC3A;
  padding-top: 10px;
  max-width: 450px;
  display: block;
  clear: both;
}
@media screen and (max-width: 768px) {
  #categorias .accordion ul li .by a .author {
    font-size: 1.25em;
    line-height: 21px;
  }
}
#categorias .accordion ul li:nth-child(1) {
  background-image: url("../images/protagonista01.jpg");
  background-size: cover;
}
#categorias .accordion ul li:nth-child(2) {
  background-image: url("../images/protagonista02.jpg");
  background-size: cover;
}
#categorias .accordion ul li:nth-child(3) {
  background-image: url("../images/protagonista03.jpg");
  background-size: cover;
}
#categorias .accordion ul li:nth-child(4) {
  background-image: url("../images/protagonista04.jpg");
  background-size: cover;
}
#categorias .accordion ul:hover li {
  width: 8%;
}
#categorias .accordion ul:hover li:hover {
  width: 100%;
}
#categorias .accordion ul:hover li:hover a {
  background-color: rgba(54, 53, 51, 0);
}
#categorias .accordion ul:hover li:hover a * {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #categorias .accordion {
    height: auto;
  }
  #categorias .accordion ul li .by a {
    background-color: rgba(231, 86, 22, 0.15);
  }
  #categorias .accordion ul li .by a * {
    opacity: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    -webkit-transition: inherit;
    transition: inherit;
  }
  #categorias .accordion ul li,
  #categorias .accordion ul li:hover,
  #categorias .accordion ul:hover li,
  #categorias .accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
}
/*# sourceMappingURL=./home.css.map */