@charset "UTF-8";
/* GLOBAL ELEMENTS */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  height: 100%;
  font-family: '';
  background: #000;
}

img {
  max-width: 100%;
}

/* NAV ELEMENTS*/
/* Menu */
header > .logo {
  color: gray;
  font-weight: bold !important;
  font-size: 1rem;
  z-index: 10;
  top: 10px;
  left: 10px;
  position: fixed;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: 'Sulphur Point', sans-serif !important;
}

header > .logo:hover {
  text-decoration: none;
  font-size: 1.2rem;
}

header > .menu-btn {
  width: 50px;
  float: right;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header > .menu-btn:hover {
  width: 70px;
}

header > .home-btn {
  width: 50px;
  float: right;
  cursor: pointer;
  top: 10px;
  right: 70px;
  position: fixed;
  z-index: 5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header > .home-btn:hover {
  width: 70px;
}

nav {
  position: fixed;
  background: white;
  padding: 2em;
  width: 100%;
  height: 100vh;
  display: none;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  z-index: 6;
}

nav > .close-btn {
  width: 50px;
  position: fixed;
  cursor: pointer;
  opacity: 0;
  right: 15px;
  top: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

nav > .close-btn:hover {
  width: 70px;
}

nav > .row {
  margin: auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

nav > .row .col {
  opacity: 0;
}

nav > .row .col a {
  color: black;
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 20px;
}

nav > .row .col span {
  color: gray;
  display: block;
  font-size: 0.75em;
}

.first-menu-list {
  padding-top: 35vh !important;
  padding-bottom: 30px !important;
  text-align: right;
}

.show-menu {
  display: block;
  -webkit-animation: slide-menu 1s ease-in forwards;
  animation: slide-menu 1s ease-in forwards;
}

.show-menu .row .col a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.show-menu .row .col a:hover {
  font-family: 'Knewave', cursive;
  text-decoration: none;
}

.show-menu .close-btn {
  -webkit-animation: show-x 1s 1s forwards;
  animation: show-x 1s 1s forwards;
}

.show-menu .col:nth-of-type(1) {
  -webkit-animation: menu-item-anim 0.6s forwards 1s ease-in-out;
  animation: menu-item-anim 0.6s forwards 1s ease-in-out;
}

.show-menu .col:nth-of-type(2) {
  -webkit-animation: menu-item-anim 0.6s forwards 1.2s ease-in-out;
  animation: menu-item-anim 0.6s forwards 1.2s ease-in-out;
}

.show-menu .col:nth-of-type(3) {
  -webkit-animation: menu-item-anim 0.6s forwards 1.4s ease-in-out;
  animation: menu-item-anim 0.6s forwards 1.4s ease-in-out;
}

.show-menu .col:nth-of-type(4) {
  -webkit-animation: menu-item-anim 0.6s forwards 1.6s ease-in-out;
  animation: menu-item-anim 0.6s forwards 1.6s ease-in-out;
}

@-webkit-keyframes slide-menu {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes slide-menu {
  from {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show-x {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes menu-item-anim {
  from {
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/*Contact Card*/
.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.artboard {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  position: absolute;
  bottom: 15px;
}

.artboard .modal-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  margin: auto;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  position: fixed;
  z-index: 3;
  transition: all .4s ease-in-out;
  bottom: 15px;
}

.artboard .modal-button:hover {
  width: 70px;
}

.artboard .close-button {
  left: -5px;
  bottom: 0px;
  position: fixed;
  padding: 0;
  overflow: auto;
  z-index: 1;
  opacity: 0;
}

.artboard .close-button img {
  width: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.artboard .close-button img:hover {
  width: 70px;
}

.artboard .close-button a {
  text-decoration: none;
  color: #FCD0BA;
}

.x-opa {
  opacity: 1 !important;
  z-index: 5 !important;
}

.overlay2 {
  overflow: auto;
  width: 100%;
  height: 100%;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  -webkit-transition: all  500ms linear;
  transition: all  500ms linear;
  z-index: 4;
}

.overlay2 a, .overlay2 p {
  visibility: hidden;
  text-transform: none;
}

.overlay2:target {
  visibility: visible;
  opacity: 1;
  height: 100%;
  width: 100%;
}

.overlay2:target a, .overlay2:target p {
  visibility: visible;
}

.overlay2:target .card {
  top: 50%;
  opacity: 1;
}

@-webkit-keyframes beat {
  to {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

@keyframes beat {
  to {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

.profile-card {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 290px;
  max-width: 450px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: bouncein 1s;
  animation: bouncein 1s;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.profile-card > .card-header {
  display: block;
  line-height: 0;
  width: 88%;
  max-width: 88%;
  background: #fff;
}

.profile-card > .card-header .telef, .profile-card > .card-header .email {
  padding-top: 5px;
  height: 30px;
  font-size: 1.2rem;
  font-weight: bold;
}

.profile-card > .card-header .telef a, .profile-card > .card-header .email a {
  color: #555;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.profile-card > .card-header .telef a:hover, .profile-card > .card-header .email a:hover {
  text-decoration: none;
  color: #000;
}

.profile-card > .card-header .telef h4, .profile-card > .card-header .email h4 {
  padding-top: 5px;
  font-size: 1.2rem;
}

.profile-card > .card-header > a {
  line-height: 0;
  display: block;
  background-image: url("/img/frame.jpg");
  background-size: 100% 100%;
}

.profile-card > .card-header a > img {
  width: 100%;
  opacity: 0;
}

.profile-card:hover > .card-header a > img {
  opacity: 1;
}

.profile-card:hover > .card-header + .profile-bio {
  max-height: 200px;
  -webkit-transition: max-height .5s ease-in;
  transition: max-height .5s ease-in;
}

.profile-card:hover > .card-header + .profile-bio p {
  -webkit-animation: fadein 2s;
  animation: fadein 2s;
}

.profile-bio {
  clear: both;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 88%;
  width: 88%;
  max-height: 0;
  -webkit-transition: max-height .5s ease-out;
  transition: max-height .5s ease-out;
  color: #fff;
  background: -webkit-gradient(linear, left top, right bottom, from(#000), to(#555));
  background: linear-gradient(to right bottom, #000, #555);
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-left: 10px;
}

.profile-bio p {
  margin: 4.5%;
  -webkit-animation: fadeout 2s;
  animation: fadeout 2s;
}

.profile-social-links {
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 12%;
  width: 12%;
  margin: 0;
  padding: 3.5%;
  list-style-type: none;
  text-align: center;
  background: -webkit-gradient(linear, left top, right bottom, from(#555), to(#000));
  background: linear-gradient(to right bottom, #555, #000);
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -webkit-flex-pack: end;
  -ms-flex-pack: end;
}

.profile-social-links img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.profile-social-links li {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.profile-social-links li:hover {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

@media (max-width: 480px) {
  .profile-card {
    flex-direction: column;
    -webkit-flerowx-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
  }
  .profile-card > .card-header,
  .profile-bio {
    max-width: 100%;
    width: 100%;
  }
  .profile-bio {
    max-height: 100%;
  }
  .profile-card:hover > .card-header + .profile-bio p,
  .profile-bio p {
    -webkit-animation: none;
    animation: none;
  }
  h1 {
    font-size: 16px;
  }
  h2 {
    line-height: 1.2;
    margin-top: 0.5%;
  }
  .profile-social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    max-height: 70px;
    background: -webkit-gradient(linear, left top, right bottom, from(#555), to(#000));
    background: linear-gradient(to right bottom, #555, #000);
    background-size: cover;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .profile-social-links img {
    width: auto;
    height: 18px;
    margin-top: 0;
    margin-left: 8px;
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
  40% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  60% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
  40% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  60% {
    -webkit-transform: translateX(-1px);
    transform: translateX(-1px);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes bouncein {
  0% {
    -webkit-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%, -50%);
    transform: translateY(-50%, -50%);
  }
}

@keyframes bouncein {
  0% {
    -webkit-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%, -50%);
    transform: translateY(-50%, -50%);
  }
}

/* NARRACIÓN */
/*dYNAMIC wORDS*/
#frm {
  position: absolute;
  height: 60%;
  width: 70%;
  left: 15%;
  top: 25%;
  font-size: 2em;
  font-weight: bold;
  font-family: verdana, arial;
  background: #030303;
  overflow: hidden;
  padding: 0.5em;
  margin: auto;
}

#frm span {
  position: relative;
  z-index: 1;
}

#mtxform {
  position: relative;
  z-index: 1;
}

#mtxform span #text {
  display: none;
}

.inputhidden {
  visibility: hidden;
}

.surfer {
  padding-top: 60px;
  position: relative;
  float: right;
  padding-right: 120px;
}

.stnd-cont {
  max-width: 90%;
  display: revert;
  position: relative;
}

.stnd-cont .row {
  padding-top: 50px;
  width: 100%;
}

.stnd-cont .row .col {
  color: #fff;
  padding: 20px;
  text-align: justify;
  text-justify: distribute;
}

/* Masculinidades */
.top {
  padding: 2em;
  margin: 0 auto;
  background-color: #000;
  text-align: center;
}

.top .title {
  color: #fff;
}

.top .title h1 {
  margin: 0;
  padding: 0;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #fff;
}

.top .title h3 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0;
  color: #fff;
  font-family: 'Sulphur Point', sans-serif !important;
}

/* Parallax */
.parallax1 {
  position: relative;
  background-image: url("/img/masc1.jpg");
  min-height: 70vh;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-image: url("/img/masc2.jpg");
  min-height: 50vh;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Rubik Mono One', sans-serif !important;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
}

.parallax2 h2 {
  font-size: 5em;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 1;
  color: #fbff00;
}

.parallax3 {
  position: relative;
  background-image: url("/img/masc3.jpg");
  min-height: 70vh;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Paragraph */
.paragraph {
  margin: 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Sulphur Point', sans-serif !important;
}

.paragraph p {
  width: 60%;
  font-size: 1.2em;
  line-height: 1.5em;
  letter-spacing: .1em;
  color: #fff;
  font-family: 'Sulphur Point', sans-serif !important;
}

.first span {
  font-size: 4em;
  color: #fbff00;
  float: left;
  font-weight: bold;
  line-height: 55px;
  padding: .05em .2em 0 0;
}

.second span {
  font-size: 4em;
  color: #bbb;
  float: left;
  font-weight: 400;
  line-height: 55px;
  padding: .05em .2em 0 0;
}

.third a {
  color: #fbff00;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.third a:hover {
  text-decoration: none;
  font-weight: bold;
}

.third span {
  font-size: 4em;
  color: #fbff00;
  float: left;
  font-weight: 400;
  line-height: 55px;
  padding: .05em .2em 0 0;
}

/* Selection */
::-moz-selection {
  color: var(--white);
  background: rgba(161, 181, 201, 0.8);
}
::selection {
  color: var(--white);
  background: rgba(161, 181, 201, 0.8);
}

/* SCROLLBAR */
::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(161, 181, 201, 0.8);
}

/* Publicaciones */
.featured-content {
  position: relative;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  width: 100%;
  top: -50px;
  font-family: 'Sulphur Point', sans-serif;
}

.feature {
  position: relative;
  width: 100%;
  background-color: #ddd;
}

@media (min-width: 768px) {
  .feature {
    overflow: hidden;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    height: 100vh;
  }
}

.feature:nth-child(2n) {
  background-color: #ccc;
}

.feature:nth-child(3n) {
  background-color: #bbb;
}

@media (min-width: 768px) {
  .feature:nth-child(odd) .feature-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .feature:nth-child(odd) .feature-image-container {
    margin-right: 4rem;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  .feature:nth-child(odd).show-feature .feature-image-container {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (min-width: 768px) {
  .feature:nth-child(even) .feature-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .feature:nth-child(even) .feature-image-container {
    margin-left: 4rem;
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
  }
  .feature:nth-child(even).show-feature .feature-image-container {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.feature-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .feature-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100vh;
  }
}

.feature-inner > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.feature-image-container {
  position: relative;
  margin-top: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-feature .feature-image-container {
  opacity: 1;
}

@media (min-width: 768px) {
  .feature-image-container {
    margin-top: 0;
    max-width: 70vmin;
  }
}

.feature-image-container img {
  position: relative;
  width: 100%;
  vertical-align: bottom;
  z-index: 2;
}

.feature-copy {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show-feature .feature-copy {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.feature-copy a {
  color: #000;
  font-size: 1.4rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: bold;
}

.feature-copy a:hover {
  text-decoration: none;
}

.feature-headline {
  font-size: 2.5rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.feature-subheadline {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.feature-text {
  margin-top: 2rem;
  font-size: calc(1rem + 0.5vmin);
  line-height: 1.4;
}

/* Talleres */
.opening-talleres {
  background: #000;
  margin: 0rem;
  height: 100vh;
  font-family: 'Sulphur Point', sans-serif;
}

.opening-talleres #canvas, .opening-talleres #text {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.opening-talleres #text {
  min-height: 100vh;
  width: 100%;
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  font-size: 8vmin;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: 'Sulphur Point', sans-serif;
}

.opening-talleres #text h3 {
  position: absolute;
  padding-top: 100px;
}

.talleres-container {
  z-index: 2;
  position: relative;
  display: block;
  padding-top: 10vh;
  font-family: 'Sulphur Point', sans-serif;
}

.talleres-container .talleres-content {
  max-width: 80%;
  margin: auto;
  margin-bottom: 50px;
}

.talleres-container .talleres-content .talleres-txt {
  text-align: justify;
  text-justify: distribute;
  padding: 3rem;
}

.talleres-container .talleres-content .talleres-txt h2 {
  font-size: 3rem;
  color: #fff !important;
}

.talleres-container .talleres-content .talleres-txt p {
  color: #fff !important;
  font-size: 1.2rem;
}

.talleres-container .talleres-content .talleres-img {
  padding: 3rem;
}

.talleres-container .talleres-content .talleres-img img {
  border-radius: 150px 15px 150px 15px;
  border: 2px solid white;
}

.talleres-container .background {
  background: url("/img/talleresend.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  margin: auto;
  padding: 50px 12%;
  color: #fff;
  text-align: justify;
  text-justify: distribute;
}

.talleres-container .background .talleres-lnk {
  text-align: center;
}

.talleres-container .background .talleres-lnk p {
  font-size: 1.2rem;
  color: #fff;
}

.talleres-container .background .talleres-lnk h2 {
  color: #aaa;
}

.talleres-container .background .talleres-lnk h2 a {
  font-weight: bold;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.talleres-container .background .talleres-lnk h2 a:hover {
  color: #ffbfc8;
  text-decoration: none;
}

/* EVENTOS */
.eventoscanvas {
  height: 100vh;
}

.eventoscanvas canvas {
  position: static;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: transparent;
}

.eventoscontainer {
  display: block;
  position: relative;
  width: 100%;
  background: #ff8800;
}

.eventossubtitle {
  width: 70%;
  margin: auto;
  display: block;
  padding-top: 150px;
  margin-bottom: 30px;
  z-index: -1;
}

.eventossubtitle p {
  text-align: justify;
  text-justify: distribute;
  text-align-last: center;
  color: #fff;
  padding: 20px;
  font-size: 1.5rem !important;
  font-family: 'Sulphur Point', sans-serif !important;
}

.carousel-slider {
  max-width: 1000px;
  position: relative;
  margin: 50px auto 0 auto;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  padding-bottom: 150px;
}

@media (max-width: 900px) {
  .carousel-slider {
    max-width: 95%;
    margin: 30px auto;
    margin-bottom: 0;
  }
  .carousel-slider .carousel {
    max-width: 1000px !important;
    margin: auto;
  }
  .carousel-slider .carousel .carousel-inner {
    border: 1px solid #0278aa;
    -webkit-box-shadow: 2px 3px 3px #a1d7ca;
            box-shadow: 2px 3px 3px #a1d7ca;
  }
}

.eventdescription {
  width: 80%;
  text-align: center;
  margin: auto;
  padding-bottom: 30px;
  font-family: 'Sulphur Point', sans-serif !important;
}

.eventdescription .col h1 {
  color: #ff8800;
  padding-top: 50px;
}

.eventdescription .col h1:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ff8800;
  display: block;
}

.eventdescription .col h3 {
  color: #ff8800;
  text-align: center;
}

.eventdescription .col h4 {
  color: #000;
  background: #ff8800;
  padding: 10px;
  border-radius: 15px 0 15px 0;
}

.eventdescription .col p {
  color: #fff;
  padding: 20px;
  text-align: justify;
  text-justify: distribute;
  font-size: 1.2rem;
}

.eventdescription .col h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
}

.eventdescription .col a {
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.eventdescription .col a:hover {
  text-decoration: none;
  font-weight: bold;
}

.eventdescription .col .eventcontact {
  color: #ff8800 !important;
  text-align: center;
}

.eventdescription .col .botonevent img {
  width: 70px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.eventdescription .col .botonevent img:hover {
  width: 80px;
}

.mini-nav {
  width: 100%;
  position: relative;
  bottom: 30px;
  display: block;
  text-align: center;
}

.mini-nav a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mini-nav a:hover {
  text-decoration: none;
  font-weight: bold;
}

.mini-nav a:hover img {
  -webkit-filter: drop-shadow(2px 2px #ead220);
          filter: drop-shadow(2px 2px #ead220);
}

.mini-nav a img {
  width: 7%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*# sourceMappingURL=stylescontent.css.map */