@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;
}
.inner p {
  font-size: 1.375em;
}
.inner .bg-y {
  background-color: #F0BC3A;
}
.inner .menu-bar {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/paper-inner.png") center center no-repeat;
  height: 100px;
  z-index: 50;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner .menu-bar {
    height: 90px;
    background: url("../images/paper-mobile.png") center top no-repeat;
  }
}
.inner .menu-bar h1 {
  font-family: 'Caesar Dressing', Arial, Helvetica, sans-serif;
  color: #4e3122;
  font-size: 3.75em;
}
.inner .menu-bar h1 span {
  color: #E75616;
}
@media screen and (max-width: 768px) {
  .inner .menu-bar h1 {
    font-size: 3.75em;
  }
}
.inner .outer-menu {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .inner .outer-menu {
    top: 10px;
    right: 10px;
  }
}
.inner .header {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.inner .header:before {
  content: '';
  position: absolute;
  top: 0px;
  background-color: rgba(231, 86, 22, 0.2);
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.inner .header:after {
  content: '';
  bottom: 0px;
  position: absolute;
  background-image: url("../images/paper-after.png");
  background-repeat: no-repeat;
  height: 80px;
  width: 100%;
  z-index: 10;
}
.inner .header .ttlo-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.inner .header .ttlo-cap h2 {
  font-size: 7.5em;
  color: #F0BC3A;
}
.inner .header .ttlo-cap p {
  font-size: 2.5em;
  color: white;
}
@media screen and (max-width: 768px) {
  .inner .header .ttlo-cap h2 {
    font-size: 3.75em;
  }
  .inner .header .ttlo-cap p {
    font-size: 1.75em;
  }
}
.inner .header .big-image.bi-baile img {
  margin-top: 270px;
}
@media screen and (max-width: 768px) {
  .inner .header .big-image.bi-folclor img {
    margin-top: 40px;
    margin-left: -130px;
    height: 100vh;
  }
  .inner .header .big-image.bi-baile img {
    margin-top: 140px;
    margin-left: -130px;
    height: 100vh;
  }
  .inner .header .big-image img {
    max-width: inherit;
  }
}
.inner .hamburger {
  width: 60px;
  height: 60px;
}
.inner .video-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
}
.inner .video-area.folclor {
  background: url(../images/thumb-video1.jpg) center / cover no-repeat;
}
.inner .video-area.baile {
  background: url(../images/thumb-video2.jpg) center / cover no-repeat;
}
.inner .video-area.pelo {
  background: url(../images/thumb-video3.jpg) center / cover no-repeat;
}
.inner .video-area.gastro {
  background: url(../images/thumb-video4.jpg) center / cover no-repeat;
}
@media screen and (max-width: 768px) {
  .inner .video-area {
    height: 200px;
  }
}
.inner .video-area a {
  margin: auto;
  height: 80px;
  width: 80px;
  background: #fff;
  text-align: center;
  line-height: 80px;
  color: #3c3b35;
  border-radius: 50%;
  padding-left: 5px;
  font-size: 22px;
}
.inner .sticky {
  position: fixed;
  top: 0;
}
.inner .footer-area {
  background-color: #F0BC3A;
  color: #2f241f;
}
.inner .footer-area a.link-bgdark {
  color: #E75616;
  font-size: 0.875em;
}
.inner .footer-area p {
  font-size: 1.25em;
  margin-bottom: 0px;
}
.logo-footer {
  margin-bottom: 20px;
}
.social {
  margin-bottom: 30px;
}
.social li a {
  margin: 0px 5px;
}
.social li a img {
  height: 30px;
}
.social li a svg {
  height: 30px;
}
.social li a svg path {
  fill: #2f241f;
}
ul.share-buttons {
  list-style: none;
  padding: 0;
  z-index: 50;
}
.social li {
  display: inline-block;
}
/*# sourceMappingURL=./inner.css.map */