/* GLOBAL ELEMENTS */
html{
    box-sizing: border-box;
}

*, *:before, *:after{
    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;
        transition: all 0.5s ease;
        font-family: 'Sulphur Point', sans-serif !important;
        &:hover{
            text-decoration: none;
            font-size: 1.2rem;
        }
    }
    > .menu-btn{
        width: 50px;
        float: right;
        cursor: pointer;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 5;
        transition: all 0.5s ease;
        &:hover{
            width: 70px;
        }
    }
    > .home-btn{
        width: 50px;
        float: right;
        cursor: pointer;
        top: 10px;
        right: 70px;
        position: fixed;
        z-index: 5;
        transition: all 0.5s ease;
        &: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;
    > .close-btn{
        width: 50px;
        position: fixed;
        cursor: pointer;
        opacity: 0;
        right: 15px;
        top: 15px;
        transition: all 0.5s ease;
        &:hover{
            width: 70px;
        }
    }
    > .row{
        margin: auto;
        padding: 0;
        display: flex;
        width: 80%;
        transition: all 1s ease;
        .col{
            opacity: 0;
            a{
                color: black;
                font-weight: bold;
                font-size: 1.4em;
                margin-top: 20px;
            }
            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;
    .row{
      .col{
        a{
          transition: all 0.5s ease;
          &: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 {
	user-select: none;
}

.artboard{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: end;
	justify-content: left;
  position: absolute;
  bottom: 15px;
  .modal-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: auto;
    transition: all .4s ease-in-out;
    position: fixed;
    z-index: 3;
    transition: all .4s ease-in-out;
    bottom: 15px;
    &:hover {
        width: 70px;
    }
  }
  .close-button {
    left: -5px;
    bottom: 0px;
    position: fixed;
    padding: 0;
    overflow: auto;
    z-index: 1;
    opacity: 0;
    img{
      width: 50px;
      transition: all 0.5s ease;
      &:hover{
        width: 70px;
      }
    }
    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: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
	opacity: 0;
	background: rgba(255,255,255,0.9);
	position: fixed;
  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;
}

@keyframes beat{
	to{
		transform: scale(1.4);
	}
}

.profile-card{
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 290px;
  max-width: 450px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: bouncein 1s;
  animation: bouncein 1s;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.profile-card > .card-header{
  display: block;
  line-height: 0;
  width: 88%;
  max-width: 88%;
  background: #fff;
  .telef, .email{
    padding-top: 5px;
    height: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    a{
      color: #555;
      transition: all 0.5s ease;
      &:hover{
        text-decoration: none;
        color: #000;
      }
    }
    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;
  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: linear-gradient(to right bottom, #000 , #555);
  -webkit-order: 1;
  -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-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  max-width: 12%;
  width: 12%;
  margin: 0;
  padding: 3.5%;
  list-style-type: none;
  text-align: center;
  background: linear-gradient(to right bottom, #555 , #000);
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-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);
  -ms-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;
    -webkit-flex-direction: column;
    -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-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    width: 100%;
    max-height: 70px;
    background: linear-gradient(to right bottom, #555, #000);
    background-size: cover;
    -webkit-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-order: -1;
    -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;
    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;
  .row{
    padding-top: 50px;
    width: 100%;
    .col{
      color: #fff;
      padding: 20px;
      text-align: justify;
      text-justify: distribute;
    }
  }
}

/* Masculinidades */
.top {
  padding: 2em;
  margin: 0 auto;
  background-color: #000;
  text-align: center;
  .title {
    color: #fff;
    h1 {
      margin: 0;
      padding: 0;
      font-size: 35px;
      font-weight: 400;
      letter-spacing: 8px;
      text-transform: uppercase;
      color: #fff;
    }
    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: flex;
  justify-content: 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, .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: flex;
  justify-content: center;
  align-items: center;
  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;
    transition: all 0.5s ease;
    &: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 */
::selection {
  color: var(--white);
  background: rgba(161, 181, 201, .8);
}
/* SCROLLBAR */
::-webkit-scrollbar-track {
      background-color: #F5F5F5;
}
::-webkit-scrollbar {
      width: 12px;
      background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
      background-color: rgba(161, 181, 201, .8);
}

/* Publicaciones */
.featured-content {
  position: relative;
  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) {
    overflow: hidden;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
    height: 100vh;
  }
  
  &:nth-child(2n) {
    background-color: #ccc;
  }
  
  &:nth-child(3n) {
    background-color: #bbb;
  }
  
  &:nth-child(odd) {
    @media (min-width: 768px) {
      .feature-inner {
        flex-direction: row-reverse;
      }
    
      .feature-image-container {
        margin-right: 4rem;
        transform: translateX(-2rem);
      }
      
      &.show-feature .feature-image-container {
        transform: translateX(0%);
      }
    }
  }
  
  &:nth-child(even) {      
    @media (min-width: 768px) {
      .feature-inner {
        flex-direction: row;
      }
    
      .feature-image-container {
        margin-left: 4rem;
        transform: translateX(2rem);
      }
      
      &.show-feature .feature-image-container {
        transform: translateX(0%);
      }
    }
  }
}

.feature-inner {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  
  @media (min-width: 768px) {
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100vh;
  }
  
  > * {
    flex: 0 1 50%;
  }
}

.feature-image-container {
  position: relative;
  margin-top: 2rem;
  opacity: 0;
  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);
  
  .show-feature & {
    opacity: 1;
  }
  
  @media (min-width: 768px) {
    margin-top: 0;
    max-width: 70vmin;
  }
  
  img {
    position: relative;
    width: 100%;
    vertical-align: bottom;
    z-index: 2;
  }
}

.feature-copy {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(2rem);
  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);
  .show-feature & {
    opacity: 1;
    transform: translateY(0);
  }
  a{
    color: #000;
    font-size: 1.4rem;
    transition: all 0.5s ease;
    font-weight: bold;
    &: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;
  #canvas, #text {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #text {
    min-height: 100vh;
    width: 100%;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 8vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Sulphur Point', sans-serif;
    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-content{
    max-width: 80%;
    margin: auto;
    margin-bottom: 50px;
    .talleres-txt{
      text-align: justify;
      text-justify: distribute;
      padding: 3rem;
      h2{
        font-size: 3rem;
        color: #fff !important;
      }
      p{
        color: #fff !important;
        font-size: 1.2rem;
      }
    }
    .talleres-img{
      padding: 3rem;
      img{
        border-radius: 150px 15px 150px 15px;
        border: 2px solid white;
      }   
    }
  }
  .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-lnk{
      text-align: center;
      p{
        font-size: 1.2rem;
        color: #fff;
      }
      h2{
        color: #aaa;
        a{
          font-weight: bold;
          color: #fff;
          transition: all 0.5s ease;
          &:hover{
            color: #ffbfc8;
            text-decoration: none;
          }
        }
      }
    }
  }
}

/* EVENTOS */

.eventoscanvas{
  height: 100vh;
  canvas {
    position: static;
    width: 100%;
    height: 100%;
    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;
  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;
  transition: all 1s ease;
  padding-bottom: 150px;
	@media(max-width:900px){
		max-width: 95%;
		margin: 30px auto;
		margin-bottom: 0;
		.carousel{
			max-width: 1000px !important;
			margin: auto;
			.carousel-inner{
				border: 1px solid #0278aa;
				box-shadow: 2px 3px 3px #a1d7ca;
			}
		}
	}
}

.eventdescription{
  width: 80%;
  text-align: center;
  margin: auto;
  padding-bottom: 30px;
  font-family: 'Sulphur Point', sans-serif !important;
  .col{
    h1{
      color: #ff8800;
      padding-top: 50px;
      &:after{
        content: "";
        width: 100%;
        height: 2px;
        background: #ff8800;
        display: block;
      }
    }
    h3{
      color: #ff8800;
      text-align: center;
    }
    h4{
      color: #000;
      background: #ff8800;
      padding: 10px;
      border-radius: 15px 0 15px 0;
    }
    p{
      color: #fff;
      padding: 20px;
      text-align: justify;
      text-justify: distribute;
      font-size: 1.2rem;
    }
    h2{
      color: #fff;
      text-transform: uppercase;
      font-size: 1rem;
    }
    a{
      color: #fff;
      transition: all 0.5s ease;
      &:hover{
        text-decoration: none;
        font-weight: bold;
      }
    }
    .eventcontact{
      color: #ff8800 !important;
      text-align: center;
    }
    .botonevent{
      img{
        width: 70px;
        transition: all 0.5s ease;
        &:hover{
          width: 80px;
        }
      }
    }
  }
}

.mini-nav{
  width: 100%;
  position: relative;
  bottom: 30px;
  display: block;
  text-align: center;
  a{
    transition: all 0.5s ease;
    &:hover{
      text-decoration: none;
      font-weight: bold;
      img{
        filter: drop-shadow(2px 2px #ead220);
      }
    }
    img{
      width: 7%;
      margin: auto;
      padding-left: 20px;
      padding-right: 20px;
      transition: all 0.5s ease;
    }
  }
}