* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: black;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav {
  position: fixed !important;
  z-index: 1 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100px !important;
  -webkit-backface-visibility: hidden !important;
          backface-visibility: hidden !important;
}
.nav__list {
  display: flex !important;
  flex-flow: column wrap !important;
  height: 85vh !important;
  transform: translate(0, -100%) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.nav__list--active {
  transform: translate(0, 0) !important;
}
.nav__item {
  flex: 1 !important;
  position: relative !important;
}
.nav__link {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
  text-decoration: none !important;
  font-size: 24px !important;
  background: #282a2c !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.nav__link:hover {
  background: #272b2e !important;
}
@media (max-width: 640px) {
  .nav {
    width: 70px !important;
  }
  .nav__list {
    height: 90vh !important;
  }
}

.burger {
  height: 15vh !important;
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 2 !important;
  background: #2b3033 !important;
  cursor: pointer !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.burger:hover {
  background: pink !important;
}
.burger__patty {
  position: relative !important;
  height: 2px !important;
  width: 40px !important;
  background: white !important;
}
.burger__patty:before {
  content: "" !important;
  position: absolute !important;
  top: -10px !important;
  left: 0 !important;
  height: 2px !important;
  width: 100% !important;
  background: white !important;
}
.burger__patty:after {
  content: "" !important;
  position: absolute !important;
  top: 10px !important;
  left: 0 !important;
  height: 2px !important;
  width: 100% !important;
  background: white !important;
}
.burger__patty, .burger__patty:before, .burger__patty:after {
  will-change: transform !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.burger--active .burger__patty {
  transform: rotate(90deg) !important;
}
.burger--active .burger__patty:before {
  transform: rotate(-45deg) translate(-7px, -7px) scaleX(0.7) !important;
}
.burger--active .burger__patty:after {
  transform: rotate(45deg) translate(-7px, 7px) scaleX(0.7) !important;
}
@media (max-width: 640px) {
  .burger {
    height: 10vh !important;
  }
  .burger__patty {
    transform: scale(0.8) !important;
  }
  .burger--active .burger__patty {
    transform: scale(0.8) rotate(90deg) !important;
  }
}

.panel {
  
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
}
.panel__wrapper {
  padding: 7vh 7vw;
  perspective: 1000px;
}
.panel__content {
  will-change: transform;
  transform: scale(0.7) rotateX(-230deg);
  transform-origin: center 80%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.panel__content--active {
  transform: none;
  opacity: 1;
}
.panel__headline {
  font-weight: 700;
  opacity: 0.8;
  font-size: 48px;
  margin: 0 0 25px 0;
}
.panel p {
  margin: 0 0 25px 0;
  color: #1a1a1a;
  font-size: 20px;
  max-width: 800px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.panel p:last-child {
  margin-bottom: 0;
}
.panel__block {
  height: 2px;
  background: white;
  margin: 0 0 25px 0;
}
@media (max-width: 640px) {
  .panel__headline {
    font-size: 36px;
  }
  .panel__wrapper {
    padding: 10vh 10vw;
  }
  .panel p {
    font-size: 16px;
  }
}

.c-blue {
  color: white;
}

.c-red {
  color: #F7A2A2;
}

.c-green {
  color: #F66A6A;
}

.c-bermellon{
  color: #F34040;
}

.c-yellow {
  color: #F8D2D2;
}

.c-violet{
  color: #AE0707;
}

.b-blue {
  background-color: red;
}

.b-red {
  background: #e68568;
}

.b-green {
  background: #F7A2A2;
}

.b-yellow {
  background: #161616;
}

.b-violet {
  background: #161616;
}

.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 65px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: rotate(0);
}
.logo img:hover {
  transform: rotate(180deg) scale(1.1);
}

/* ------:::::::::::::::::------------*/
/*      CÓDIGO PERSONALIZADO          */
/* ------:::::::::::::::::------------*/


  /* --------------------
  BACKGROUND IMAGES
  ----------------------*/

  .fotoback {
    background-image: url("images/back3.JPG");
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    width: 100%;
  }

  .musicback {
    background-image: url("images/pasion.jpg");
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    width: 100%;
  }


  .contactoback {
    background-image: url("images/back4.JPG");
    text-align: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    width: 100%;
  }

  .contactoback:before {
    content:'';
    position: absolute;
          top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
  }

/* --------------------
  BODY
  ----------------------*/


h2{
  font-family: 'Abril Fatface', cursive;
  letter-spacing: 0.2em;
}

h3{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #F7A2A2;
  letter-spacing: 0.1em;
  font-size: 25px;
}

h4{
  font-family: 'Abril Fatface', cursive;
  color: #F7A2A2;
  letter-spacing: 0.1em;
}


/* --------------------
  COLUMNAS
  ----------------------*/

.caja {
  display: flex;
  flex-wrap: wrap;
}

.cajados {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.cajafondo {
  background-color: rgba(0,0,0,0.6);
  border-radius: 1em;
}

.espacio{
padding:8px;
}


/* --------------------
  FORMULARIO
  ----------------------*/

form{
  color: #FFFFFF;
  text-align: center;
}

.form-control{
  background-color: transparent !important;
  border: 2px solid white;
  border-radius: 5px;
  text-align: center;
  color: pink;
  margin-bottom: 5px;
  margin-top: 5px;
  width: 100%;
}

.form-label{
  padding: 1em;
}

.boton{
border-radius: 5px;
border: 1px solid white;
background-color: white;
text-decoration: none;
}

.boton:hover{
  border-radius: 5px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  }

::-webkit-input-placeholder { color: #F7A2A2; font-size:14px;  } 

:-moz-placeholder { /* Firefox 18- */ color: #F7A2A2;font-size:14px; } 

::-moz-placeholder { /* Firefox 19+ */ color: #F7A2A2;font-size:14px; } 

:-ms-input-placeholder { color: #F7A2A2;font-size:14px; }

:focus::-webkit-input-placeholder{color:transparent;}


/* --------------------
  FOOTER
  ----------------------*/

footer{
  font-size: 14px;
  background-color: black;
  color: gray;
  text-align: center;
}


/* --------------------
  BOTON ANIMADO
  ----------------------*/

.verde{
  color:green;
}

.rojito{
  color: red;
}

.btn {
  font-size: 0.8em;
  line-height: 1em;
  letter-spacing: 0.04em;
  display: inline-block;
  background-color: transparent;
}
.btn--svg {
  position: relative;
  height: 42px;
  width: 190px;
  overflow: hidden;
  border-radius: 21px;
}
.btn--svg:hover .btn--svg__circle circle {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.btn--svg:hover .btn--svg__label {
  color:white;
}
.btn--svg:hover .btn--svg__border--left path, .btn--svg:hover .btn--svg__border--right path {
  stroke-dasharray: 61.8204345703 61.8204345703;
  stroke-dashoffset: 0;
  -webkit-transition-delay: 0.25s;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-property: stroke-dashoffset;
  -moz-transition-delay: 0.25s;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-property: stroke-dashoffset;
  -ms-transition-delay: 0.25s;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-property: stroke-dashoffset;
  transition-delay: 0.25s;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-property: stroke-dashoffset;
}
.btn--svg__label {
  -webkit-font-smoothing: antialiased;
  font-family: sans-serif;
  font-weight: bold;
  text-align: center;
  color: #161616;
  z-index: 3;
  width: 100%;
  -webkit-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -ms-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}


.btn--svg__circle circle {
  -webkit-transition: transform 0.5s ease-in-out;
  -webkit-transform: scale(1.1);
  -webkit-transform-origin: 50% 50%;
  -moz-transition: transform 0.5s ease-in-out;
  -moz-transform: scale(1.1);
  -moz-transform-origin: 50% 50%;
  -ms-transition: transform 0.5s ease-in-out;
  -ms-transform: scale(1.1);
  -ms-transform-origin: 50% 50%;
  transition: transform 0.5s ease-in-out;
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
.btn--svg__border--left path, .btn--svg__border--right path {
  stroke-dasharray: 61.8204345703 61.8204345703;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-property: stroke-dashoffset;
  -webkit-transition-delay: 0.5s;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: ease-in-out;
  -moz-transition-property: stroke-dashoffset;
  -moz-transition-delay: 0.5s;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: ease-in-out;
  -ms-transition-property: stroke-dashoffset;
  -ms-transition-delay: 0.5s;
  transition-duration: 0s;
  transition-timing-function: ease-in-out;
  transition-property: stroke-dashoffset;
  transition-delay: 0.5s;
}
.btn--svg__border--left path {
  stroke-dashoffset: -61.8204345703;
}
.btn--svg__border--right path {
  stroke-dashoffset: 61.8204345703;
}
.btn--svg svg, .btn--svg__label  {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  -moz-transform: translate(-50%, -50%);
  -moz-transform-origin: 50% 50%;
  -ms-transform: translate(-50%, -50%);
  -ms-transform-origin: 50% 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

a {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  text-decoration: none;
  color: pink;
}
a:after {
  content: '';
  height: 1px;
  bottom: -4px;
  position: absolute;
  left: 5%;
  right: 95%;
  background: pink;
  transition: right 0.25s ease-in-out;
}
a:hover:after {
  right: 5%;
}

