@font-face {
  font-family: 'APHont';
  src: url('APHont.woff2') format('woff2'),
      url('APHont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'APHont';
  src: url('APHont-Bold.woff2') format('woff2'),
      url('APHont-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'APHont';
  src: url('APHont-Italic.woff2') format('woff2'),
      url('APHont-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'APHont';
  src: url('APHont-BoldItalic.woff2') format('woff2'),
      url('APHont-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --yellow: #E9FF32;
  --darkgray: #333333;
  --mediumgray: #555555;
  --mainpurple: #392A85;
  --darkpurple: #1B1356;
  --safeforeground: #4F311B;
  --safebackground: #E0D8C8;  
  --black: #000000;
  --white: #FFFFFF;
}
* {

}
html {
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  font-family: 'APHont';
  font-size: 16px;
  line-height: 1.5em;
  min-height: 100vh;
  color: var(--white);
  background: var(--mainpurple);
  background: linear-gradient(180deg, var(--mainpurple) 0%, var(--darkpurple) 100%);
}

html {

}

.no-scroll {
  overflow: hidden !important;
}

.has-capital::first-letter {
  font-family: 'Colby';
  font-weight: 700;
  float: left;
  font-size: 5em;
  line-height: 0.9em;
  margin-right: 0.65rem;
  margin-top: 0px;
  margin-bottom: -1px;
}
.sticky-nav {
  position: fixed;
  width: 100%;
  z-index: 2;
  -webkit-transition: transform 400ms ease-in-out;
  -moz-transition: transform 400ms ease-in-out;
  -o-transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
  padding: .5rem 1rem;
  background-color: var(--mainpurple);
}
.sticky-nav .column {
  display: flex;
  align-items: center;
}
.sticky-nav .separator {
  width: 1px;
  height: 40px;
  background-color: #FFF;
  margin: 0 1rem;
}
.nav-logos {
  display: flex;
  align-items: center;
}
.nav-logos .nav-title {
  font-family: 'Gochi Hand', cursive;
  font-size: 30px;
}
.nav-logos a img {

}
.nav-menu {
  font-weight: 500;
  display: flex;
  align-items: center;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.nav-menu.active {

}
.nav-menu > menu > li.has-sub > a > i {
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.nav-menu.active > menu > li.has-sub > a > i {
  transform: rotate(180deg);
}
.nav-menu menu {
  display: inline-block;
}
.nav-menu > menu > li {

}
.nav-menu > menu > li > a {
  line-height: 1em;
  color: var(--white);
}
.nav-menu > menu > li > a i {
  margin-left: 0.75rem;
}
.nav-menu > menu > li.has-sub {
  position: relative;
  padding: 0 1.5rem;
  display: flex;
}
.nav-menu menu.sub-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0.75rem 1rem;
  background-color: #FFF;
  border-radius: 7px;
  box-shadow: 0 0 8px rgba(0,0,0,0.25);
  width: 500px;
}
.nav-menu menu.sub-menu li {
  color: #000;
}
.nav-menu menu.sub-menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.nav-menu menu.sub-menu li.divider {

}
.nav-menu menu.sub-menu li.divider hr {
  margin: 1rem 0;
}
.nav-menu menu.sub-menu li a {
  color: #000;
}
.nav-menu menu.sub-menu li.for-share {
  line-height: 1em;
}
.nav-menu menu.sub-menu li.for-share a {
  color: #000;
  font-size: 26px;
}
.nav-menu menu.sub-menu li.for-share a:not(:last-child) {
  margin-right: 1rem;
}
.nav-menu menu.sub-menu li.for-share a i {

}


.between-containers .container {
  width: 100%;
}
.section {
  padding-top: 0;
  padding-bottom: 0;
}
.section.white {
  background-color: #FFF;
  color: #000000;
  padding-top: 0.1px;
  padding-bottom: 0.1px;
}
.section.white p a{
  color: var(--mainpurple);
  font-weight: 700;
}
.section.white p a i {
  margin-right: 6px;
}
.section.white p a:hover{text-decoration: underline;}
.white-divider {
  width: 100%;
  height: 150px;
  background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

p:not(:last-child) {
  margin-bottom: 1.5em !important;
}
p.p-legend {
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
}

.container.content {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.container.is-wide {
  box-sizing: border-box;
}
.is-flex-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dropcap {
  display: inline-block;
  float: left;
  height: 4.1em;
  margin-right: 0.75rem;
}
.podcast-embed {
  width: 100%;
  height: 280px;
}

.for-cover {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.for-cover h1.cover-title {
  font-family: 'Gochi Hand', cursive;
  font-size: 50px;
  line-height: 0.9em;
  margin-bottom: 1rem !important;
}
.for-cover.main-cover h1.cover-title {
  
}
.for-cover p.cover-summary {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 1rem !important;
}
.for-cover p.cover-credit {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
}
.for-cover p.cover-credit a{
  background: rgba(255,255,255,0.75);padding: 8px 10px 5px;color: #9B0018;border-radius: 2px;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;margin-top: 10px;display: inline-block;
}
.for-cover p.cover-credit a:hover{background: rgba(255,255,255,1);margin-top: 5px;}
.for-cover p.cover-credit a span{font-size: 24px;position: relative;top: 2px;}

.for-cover .cover-image-wrapper {
  
}
.for-cover:not(.main-cover) img {
  border: 10px solid var(--white);
  box-shadow: 0 0 6px var(--black);
}
.for-cover img.odd {
  transform: rotate(3deg);
}
.for-cover img.even {
  transform: rotate(-3deg);
}


ul.partner-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  flex-wrap: wrap;
}
ul.partner-logos li {
  padding: 0.75rem;
}
ul.partner-logos li img {
  height: 40px;
  width: 140px;
}



.goto-story {
  display: inline-block;
  text-align: center;
  color: #FFF;
}
.goto-image {
  margin: 0 auto 1rem;
  -webkit-transition: transform 200ms ease-in-out;
  -moz-transition: transform 200ms ease-in-out;
  -o-transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
}
.goto-story:hover .goto-image {
  transform: scale(1.1);
}

.goto-story .boton{font-size: 18px;display: inline-block;background: rgba(255,255,255,0.75);padding: 8px 10px 5px;color: #9B0018;border-radius: 2px;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;top: 10px;display: inline-block;position: relative;margin-bottom: 3rem;}
.goto-story:hover .boton{background: rgba(255,255,255,1);top: 5px;}
.goto-story .boton span{font-size: 18px;position: relative;top: 2px;}

p.goto-head {
  font-size: 38px;
  line-height: 1.1em;
  margin-bottom: 1rem !important;
}
p.goto-summary {
  font-weight: 200;
  font-size: 20px;
  line-height: 1.3em;
}

.main-cover {
  padding-top: 3rem;
}




.cover-logos {
  width: 100%;
  margin: 0 auto 2rem;text-align: center;
}
.cover-logos a{display: inline-block;}
.cover-logos a:not(:last-child) {
  margin-right: 1.5rem;
}
.cover-logos a img {
  width: 150px;
}

.anim-wrapper {
  width: 100%;
}




.for-media.in-body {
  margin-bottom: 1.5em !important;
}
.for-media:not(:last-child) {
  margin-bottom: 1.5em;
}
.for-media .columns {
  margin-bottom: 0;
}
.for-media img, .for-media video {
  width: 100%;
}
.for-media .media-footer {
  margin-top: 5px;
}
.for-media .media-footer p {
  
}
.for-media .media-credit {
  color: var(--mediumgray);
  margin-top: 5px;
}



.huge-media {
  position: relative;
}
.huge-media img, .huge-media video {
  width:100%;
}
.huge-media .media-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 75%;
  padding: 2rem 0 0.75rem;
  display: flex;
  align-items: flex-end;
  background: -moz-linear-gradient(top,  rgba(22,27,33,0) 0%, rgba(22,27,33,0.3) 100%);
  background: -webkit-linear-gradient(top,  rgba(22,27,33,0) 0%,rgba(22,27,33,0.3) 100%);
  background: linear-gradient(to bottom,  rgba(22,27,33,0) 0%,rgba(22,27,33,0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00161b21', endColorstr='#4d161b21',GradientType=0 );
}
.huge-media .media-footer p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  color: #FFF;
  padding: 0 1rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.huge-media .media-footer p i {
  font-weight: 400;
  font-style: italic;
}






.b-card {
  background-color: #eee;
  padding: 1rem;
}
.b-card p {
  font-size: 16px;
  line-height: 1.5em;
  color: #222;margin-bottom: .5em !important;
}
.b-card div span{display: block;font-size: .857rem;color:#222;line-height: 1.5rem;}


.lazy > .l-cont {
  opacity: 0;
  transform: translateY(20vh)
}







.next-story {
  display: block;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #FFF;
  -webkit-transition: all 0.3s ease;transition: all 0.3s ease;
}
.lessPadding.next-story {
  padding-top: 4rem;
  padding-bottom: 0rem;
  }
.next-story:hover {
  
}
.next-story .next {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2em;
  margin-bottom: 1rem;
  text-align: center;
}
.next-story .image {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.next-story .image img {
  width: 60%;
}
.next-story .image img.smaller {
  width: 30%;
}
.next-story .header {
  font-family: 'Gochi Hand', cursive;
  font-size: 36px;
  line-height: 0.9em;
  text-align: center;
  margin-bottom: 1rem;
}
.next-story .summary {
  font-size: 18 px;
  line-height: 1.3em;
  text-align: center;
}




footer{padding-bottom:50px;margin-bottom: 0 !important;}
footer.content h3{font:normal 26px/48px, sans-serif;color: #222;margin-top:5px;text-transform: uppercase;letter-spacing: 3px;}
footer.content h3 span{display: block;font-size: 60px;letter-spacing: 0;}
footer .creditos{text-align: center;}
footer .creditos p.footer-title {
  font-family: 'Gochi Hand', cursive;
  font-size: 36px;
  line-height: 0.9em;
  margin-bottom: 3rem !important;
  text-align: center;
}
footer .creditos p{line-height:2em;margin-bottom: 30px !important;margin-top: 15px;}
footer .creditos p span{font-weight: 700;font-size: 18px;}
footer .creditos p a{color: #fff;text-decoration: underline;width: 100px;display: inline-block;margin: 0 10px;}
footer .creditos p a:hover{color: #999;text-decoration: none;}
footer .creditos p a.xbigger{width: 200px;}
footer .creditos p a.bigger{width: 150px;}
footer .creditos p a.smaller{width: 70px;}

footer .libro{padding-left:50px;padding-top:0;font-size:14px;/*background:url(../media/images/small_pleca.png) no-repeat center left;background-size: contain;*/}
footer .libro a{position: relative;display: block;max-width: 180px;}
footer .libro a img{}
footer .libro a .Hover{background: rgba(252, 157, 3,0.75);top:0;left:0;right:0;bottom:0;color:#fff;text-align: center;position: absolute;
  display: flex;align-items: center;justify-content: center;-webkit-transition: all 0.4s ease;transition: all 0.4s ease;opacity: 0;}
footer .libro a:hover .Hover{opacity: 1;}



.modal a.close-modal {
  background-image: url('../fonts/data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAKKADAAQAAAABAAAAKAAAAABZLkSWAAAD7klEQVRYCcWZv0/TQRTA332/LRQBYRBlQWtMHNAYdBJ1YNO4UCNuJpbAAov8B+DmJi5NnMDEyWAsg7qyCIODOuhmBF1IGGxpIyUUzvcO3pfj/Lbf+/bblkvI3ffu3Xufvrt3vxBQY0qkVpJuXAwL2BsCKbpByG4BYoDUSZBfsC6HdTkJztLujlwsZQdXazElQnVKfe7uiJUeCwFp7JcM1RdgVUqYL5YTzyF7NWfb1w6QwUBOgUBvRUmSvCpmbUEDATvvL6dAwFxkMPNHISjOhdHCmxtZs0n/dvQPs9wxsjINjnhbdzgyRCOBupUN07D27e9BGtL41hxO+pQm27AiBlW2uNM26jc3fT3YTDj61eSIznjpmZ8H/gNEl880y3MGUJpsG3UIr6X2BytpJJ7Tqppf3JP39MA5BMR51xnb+tmQgAjzMzG6C+W28zwfvSHGBTj6GhcGpJIsRrdiOWjf92AI7/WdaoGzpxPw8ftmJRPR6zUvKg/aeo/gvmWuwYeZfshMXrAGIdnN19ft+2heVIC4tz6ysUae4/RwqMfKIMGRLCXOWUe1nJkcOpWgIP0FJhrWV0sbnlwQpA5HnfS+npLKhaQ6MbVeHksLIe5Uljva8u7TH+jraYUryXbVQDl9U72e/OAmMz90kcCycOSa23pp/ClGSjJQWhMIgqwH3IG57ZhmN1SRvcHzinNSopdpWFk2lAESxmBBQNlFu2EtiQ0zEOesKxKcUiK7HD6ms9KwOUH6Tf7ocOoQMeDtJGHBmiXvSICvUYyZAcG6aLipLUoiNvKg9QXGNGbC0bDqw10HyFwM6G6Ay3bY5AfHQUO6OGA419usbSGbG+8f6w2zUJPyILigddIWEIf4heteHF93XZiy7RQEx3rqAVkuiwlH3filXGPF1fKJu73e0JFc0FJiLkE03Df7T1Yz4bVRgBCbWmbwIj3vtVgWguBYjQn5e2Obm6rnEtR9eT866MAaL61iD9xVKqcWV/wdv33mBElk3q9XFvRpuYWe+4Vw9GeR8oWdRJKO/V74qtucgGmLzg0XwTecJ8WFwRky5O0k+FYyi995qjzmlD9gURgeoLpF7cn0McMBEIP2+nUIiGR0HyX3Hhck2dbvxMThzUEdqmNkOYuL97Be1/CyhJeFhcG0aeeIB7mxWG5LSykX+bvhOcGVE76bha8HGagZka1HLNvV86qAJHjwXkMRXnWN1JValvMUEOacM/sGAqoO9F6ITyN46KFhiAqaR6/RE/CsHq0mGH/bAbI0gwIuBUKc42qrHPd72lJtwVhnOEDuhbm6VMdkChUM0e1LSJlkaNroUQTfoOnBHJZ2yyJb678h/gEclqHUbfFKSwAAAABJRU5ErkJggg==') !important;
}
.modal {
  overflow: unset;
  max-width: 95% !important;
  width: 95%;
  padding: 0;
  border-radius: 0;
  font-size: 14px;
  box-shadow: none;
  background-color: transparent;
}
.modal .file-detail {
  width: 100%;
  color: #FFF;
}







/* Responsiveness */


/* Desktop */
@media screen and (min-width: 1009px) {

}

/* Full HD */
@media screen and (min-width: 1441px) {

}
/* Touch */
@media screen and (max-width: 1008px) {
  .container.content {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .for-cover h1.cover-title {
    text-align: center;
    font-size: 40px;
  }
}
/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1008px) {
  .side-quote p {
    font-size: 30px;
  }

  p.p-title {
    font-size: 62px;
  }
  p.p-subtitle {
    font-size: 50px;
  }
  .fs-gallery .frame.top .between-containers {
    align-items: flex-start;
    padding-top: 5rem;
  }




}

/* Mobile */
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
  }
  .nav-menu menu.sub-menu {
    width: calc(100vw - 1.5rem);
  }
  .is-reverse-mobile {
    flex-direction: column-reverse;
  }
  .nav-menu > menu > li > a i {
    font-size: 24px;
    margin: 0;
  }
  .nav-menu > menu > li.has-sub {
    padding: 0;
  }

  .for-cover {
    padding-top: 5rem; margin-bottom: 6rem;
  }
  .for-cover p.cover-title {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .for-cover p.cover-summary {
    font-size: 18px;
  }


  .container.content {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  p.p-title {
    font-size: 24px;
    line-height: 1.25em;
    margin: 0;
  }

  p.center-quote {
    font-size: 28px;
  }
  p.quote-credit {
    font-size: 18px;
  }


  .side-quote p {
    font-size: 28px;
  }

  .sticky-nav{
    padding: .5rem .75rem;
  }


  .main-title {
    font-size: 75px;
  }
  .main-subtitle {
    font-size: 45px;
  }
  p.p-subtitle {
    font-size: 34px;
    margin-bottom: 1.5rem !important;
    margin-top: 3rem;
    line-height: 1.5em;
  }


  .for-cover.main-cover p.cover-title {
    font-size: 42px;
  }

  p.goto-head {
    font-size: 26px;
  }
  p.goto-summary {
    font-size: 18px;
    margin-bottom: 2rem;
  }








  footer.content h3{margin-top:30px;}
  footer .creditos{padding-left:12px;background:none;}
  footer .libro{padding-left:12px;background:none;}
  footer .libro img{max-width: 50%;}
  footer .libro a{max-width: unset;}




  .cover-logos{width: 100%;margin: 0 auto 1.5rem;display: none;}
  .cover-logos img{display:block;height: initial;line-height: initial;min-height: initial;max-height: initial;}


  .next-story {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .next-story .next {
    font-size: 20px;
  }
  .next-story .header {
    font-size: 28px;
  }
  .next-story .summary {
    font-size: 18px;
  }
  .goto-story .boton{margin-bottom: 9rem;}

  ul.partner-logos {
    justify-content: space-evenly;
  }
  ul.partner-logos li img {
    width: 140px;
  }
}


/* Mini mobile, haha */
@media screen and (max-width: 320px) {

  .for-cover.main-cover p.cover-title {font-size: 36px;}

}
