/* Estructura de la página ****************************************************/
.container-center {
  max-width: 100vw;
  display: flex;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.box {
  max-width: 100%;
  align-self: center;
}

.item-boxed {
  width: 100%;
  max-width: 1000px;
  ;
}

@media screen and (min-width: 701px) {
  .simulate-boxed {
    width: 100%;
    max-width: 500px;
  }
}


/* FUENTES ********************************************************************/

@font-face {
  font-family: 'HelveticaNeue';
  src: url('fonts/HelveticaNeueLTProLt.otf') format('opentype');
}

@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('fonts/HelveticaNeueLTProBd.otf') format('opentype');
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: 'HelveticaNeue';
  font-weight: 300;
  font-style: normal;
  box-sizing: border-box;
}

strong {
  font-family: 'HelveticaNeueBold';
  font-weight: 600;
  font-style: normal;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

h1 {
  vertical-align: center;
  font-family: 'HelveticaNeueBold';
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 65px;
}

h2 {
  vertical-align: center;
  font-family: 'HelveticaNeueBold';
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 40px;
  margin-block-start: 0;
  margin-block-end: 0;
}

h3 {
  vertical-align: center;
  font-family: 'HelveticaNeueBold';
  font-weight: 300;
  padding-bottom: 10px;
  font-size: 30px;
  margin-top: 0px;
  margin-block-start: 0;
  margin-block-end: 0;
}

p {
  font-size: 18px;
  line-height: 23px;
  margin: 0px;
}

.flavour-text {
  font-size: 25px;
  line-height: 34px;
}

.flavour-text-big {
  font-size: 30px;
  line-height: 30px;
  font-family: 'HelveticaNeueBold';
}

.flavour-text-big h2 {
  font-size: 85px;
  line-height: 65px;
  font-family: 'HelveticaNeueBold';
  margin-left: -4px;
}




@media screen and (max-width: 700px) {
  #main {
    max-width: 100vw;
    overflow-x: hidden;
  }

  p {
    font-size: 18px;
    line-height: 23px;
  }

  .flavour-text {
    font-size: 25px;
    line-height: 29px;
  }

  h1 {
    vertical-align: center;
    font-family: 'HelveticaNeueBold';
    font-weight: 600;
    padding-bottom: 10px;
    font-size: 45px;
  }

  h2 {
    font-size: 30px;
    line-height: 35px;
    font-family: 'HelveticaNeueBold';
    font-weight: 600;
    margin: 0;
  }

  h3 {
    font-size: 30px;
    line-height: 35px;
    font-family: 'HelveticaNeueBold';
    font-weight: 300;
    margin: 0;
  }

  h4 {
    font-size: 32px;
    font-family: 'HelveticaNeueBold';
    font-weight: 300;
    margin: 0;
  }

  .flavour-text {
    font-size: 18px;
    line-height: 23px;
    padding: 10px !important;
  }

  .flavour-text-big {
    font-size: 20px;
    line-height: 22px;
    font-family: 'HelveticaNeueBold';
  }

  .flavour-text-big h2 {
    font-size: 40px;
    line-height: 45px;
    font-family: 'HelveticaNeueBold';
  }
}


blockquote{
  display:block;
  background: #fff;
  margin: 25px 0px;
  padding: 15px 20px 15px 45px;
  position: relative;
  
  /*Font*/
  font-family: 'HelveticaNeue';
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  
  /*Borders - (Optional)*/
  border-left: 15px solid #707070;
  border-right: 2px solid #707070;
  
  /*Box Shadow - (Optional)*/
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  
  /*Font*/
  font-family: 'Georgia, serif';
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /*Positioning*/
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}


/* Esconder items *************************************************************/
@media screen and (max-width: 700px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 701px) {
  .hide-on-desktop {
    display: none !important;
  }
}


/*Espaciadores y márgenes */
.margin-bottom-low {
  margin-bottom: 25px;
}

.margin-bottom-mid {
  margin-bottom: 50px;
}

.margin-bottom-high {
  margin-bottom: 75px;
}

.img-full {
  width: 100%;
  max-width: 100vw;
  ;
}

.no-padding {
  padding: 0px;
}

.padding-extra {
  padding: 50px 10% 50px 10%;
}

.padding-top {
  padding-top: 10px;
}

.padding-base {
  padding: 10px 33px 10px 33px;
}

.padding-left-small {
  padding-left: 10px;
}


.text-align-right {
  text-align: right;
}

.text-align-left {
  text-align: left;
}

.text-align-center {
  text-align: center;
}

.bck-black {
  background: #000;
  color: #fff;
}

.space-xl {
  min-height: 150px;
}

.space-l {
  min-height: 100px;
}

.space-m {
  min-height: 75px;
}

.space-s {
  min-height: 50px;
}

.item-full-width {
  width: 100%;
}

.item-align-right {
  text-align: right;
}

.item-align-left {
  text-align: left;
}


.right-border-thin {
  border-right: 1px #707070 solid
}

/*****************************************************************************/
/*****************************************************************************/
/* MENU  *********************************************************************/
/*****************************************************************************/
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #FFF;
  padding: 26px 1em 17px 1em;
  width: 100%;
  max-width: 1000px;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu>li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu>li>a {
  color: #fff;
  text-decoration: none;
  font-family: 'HelveticaNeue';
  font-size: 22px;
  line-height: 26px;

}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

.logo {
  padding: 5px;
  width: 278px;
  height: auto;
}

.menu .login a{
  color: #AFAFAF !important;
}

@media screen and (min-width: 701px) {
  .menu>li>a {
    font-size: 16px;
    line-height: 20px;

  }

  .menu .login {
    padding-left: 50px;
  }
}

@media screen and (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 0;
    margin-top: 125px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  #menu-toggle~.menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  #menu-toggle:checked~.menu li {
    border: 1px solid #333;
    height: 100px;
    padding: 30px 0px 30px 0px;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu>li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    height: 45px;
    background-color: #000;
  }

  .menu>li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}


/*****************************************************************************/
/*****************************************************************************/
/* SLIDER  *******************************************************************/
/*****************************************************************************/
#all_slides {
  position: relative;
  height: 70vh;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

@media screen and (max-width: 700px) {
  #all_slides {
    position: relative;
    height: 504px;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
  }

  .slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    color: #fff;
    font-size: 55px;
    text-align: left;
    line-height: 49px;
    font-family: 'HelveticaNeueBold';
  }

  .container-slider ul li {
    text-align: center;
  }

  .container-slider ul li span {
    font-size: 28px;
  }

}

@media screen and (min-width: 701px) {
  .container-slide .slide-content {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    bottom: 5%;
  }

  .container-slide .slide-content h2 {
    font-size: 85px;
    font-family: 'HelveticaNeueBold';
    font-weight: 300;
    line-height: 76px;
    text-align: left;
  }

  .container-slide .slide-content h3 {
    font-size: 30px;
    font-family: 'HelveticaNeue';
    font-weight: normal;
    line-height: 39px;
    text-align: left;
  }

}

@media screen and (max-width: 700px) {
  .container-slide .slide-content {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    bottom: 0px;
    left: 15px;
  }

  .container-slide .slide-content h2 {
    font-size: 55px;
    font-family: 'HelveticaNeueBold';
    font-weight: 300;
    line-height: 56px;
    text-align: left;
  }

  .container-slide .slide-content h3 {
    font-size: 18px;
    font-weight: normal;
    line-height: 22px;
    text-align: left;
  }

}

#all_slides {
  position: relative;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  color: #fff;
  vertical-align: bottom;
}

.container-slider ul li {
  text-align: center;
}

.container-slider ul li span {
  font-size: 28px;
}

.container-slide {
  max-width: 100vw;
  display: flex;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}






.active {
  opacity: 1;
  z-index: 2;
}


.controls {
  display: none;
}

.slide {
  box-sizing: border-box;
  background: #333;
  background-size: cover;
}

.slide-light {
  color: #000;
}

.slide-dark {
  color: #fff;
}

@media screen and (max-width: 700px) {
  .slide:nth-of-type(1) {
    background-image: url('/img/atist-mobile-hungara.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  .slide:nth-of-type(2) {
    background-image: url('img/artist-mobile-pure-negga.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
  }
  .slide:nth-of-type(3) {
    background-image: url('img/atist-mobile-kadek-santa-anna.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }
  .slide:nth-of-type(4) {
    background-image: url('img/artist-mobile-El-Jincho-bultero.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }  
  .slide:nth-of-type(5) {
    background-image: url('img/artist-mobile-kike-y-manu.jpeg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }
}

@media screen and (min-width: 701px) {
  .slide:nth-of-type(1) {
      background-image: url('/img/artist-desktop-hungara.jpg');
      background-size: cover;
      background-position: 50% 50%;
      background-repeat: no-repeat;
  }
  .slide:nth-of-type(2) {
      background-image: url('img/artist-desktop-pure-negga.jpg');
      background-size: cover;
      background-position: 50% 50%;
      background-repeat: no-repeat;
  }
  .slide:nth-of-type(3) {
    background-image: url('img/atist-desktop-kadek-santa-anna.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }
  .slide:nth-of-type(4) {
    background-image: url('img/artist-desktop-El-Jincho-bultero.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }
  .slide:nth-of-type(5) {
    background-image: url('img/artist-desktop-kike-y-manu.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat
  }
}


.controls {
  display: inline-block;
  position: relative;
  top: 1rem;
  right: .5rem;
  border: none;
  outline: none;
  font-size: 20px;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 1.5rem;
  background: gold;
  width: 3rem;
  height: 3rem;
  margin-left: .5rem;
}







/*****************************************************************************/
/*****************************************************************************/
/* SECCIONES *****************************************************************/
/*****************************************************************************/


/* CLAIM */



@media screen and (max-width: 700px) {
  .claim {
    padding: 46px 23px;
  }

  .claim .container-full {
    width: 100%;
  }

  .claim .container-half {
    width: 100%;
  }

  .claim .item ul {
    margin-bottom: 50px;
  }

  .claim h2 {
    font-size: 25px;
    line-height: 30px;
  }
}



.claim .container-full {
  display: block;
  width: 100%;
}

.claim .container-half {
  width: 100%;
}

.claim .container-40 {
  width: 100%;
}

.claim .container-60 {
  width: 100%;
}


@media screen and (min-width: 701px) {
  .claim {
    max-width: 100vw;
    display: flex;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 46px 33px;
  }



  .claim .box {
    max-width: 1000px;
    width: 100%;
    align-self: center;
  }

  .claim .container-full {
    display: flex;
    width: 100%;
  }

  .claim .container-half {
    width: 50%;
  }

  .claim .container-40 {
    width: 40%;
  }

  .claim .container-60 {
    width: 60%;
  }


  .claim .item ul {
    margin-bottom: 50px;
  }

  .claim .item {
    max-width: 1000px;
    align-self: center;
  }
}

.claim-black {
  background-color: #000;
  color: #fff
}



/*HERO* **************************************************************************************************/
.hero {
  background: #000;
  color: #fff;
}

.hero .item {
  height: 100%;
  ;
}

@media screen and (max-width: 700px) {
  .hero {
    padding-bottom: 57px;
  }

  .hero h2 {
    padding: 30px 33px 30px 5px;
    text-align: right;
    font-family: 'HelveticaNeueBold';
    font-weight: 600;
    font-size: 40px;
    line-height: 49px;
  }

  .hero h3 {
    padding: 30px 33px 30px 5px;
    text-align: right;
  }

  .hero p {
    padding: 5px 33px 5px 33px;
  }

  .hero .container-full {
    width: 100%;
  }

  .hero .container-half {
    width: 100%;
  }
}

@media screen and (min-width: 701px) {
  .hero {
    max-width: 100vw;
    display: flex;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;

  }

  .hero .box {
    align-self: center;
  }

  .hero h2 {
    padding: 30px 0px 30px 0px;
    /* text-align: right; */
    font-family: 'HelveticaNeueBold';
    font-size: 40px;
    line-height: 43px;
    ;
    font-weight: 600;
  }

  .hero h3 {
    padding: 30px 33px 30px 5px;
    text-align: right;
  }

  .hero p {
    padding: 5px 33px 5px 33px;
  }

  .hero .container-full {
    display: flex;
    width: 100%;
  }

  .hero .container-half {
    width: 50%;
  }

  .hero .item-background {
    background-image: url('img/hero_desktop.jpg');
    background-position: right top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}


/*CTA*/

.button-cta-white {
  color: #fff;
  width: 80%;
  padding: 7px 0 7px 0;
  text-align: center;
  border: 1px solid #707070;
  text-decoration: none !important;
  margin: 55px 0 55px 0;
  max-width: 300px;
  font-size: 25px;
  line-height: 29px;
}

.button-cta-black {
  color: #000;
  width: 80%;
  padding: 7px 0 7px 0;
  text-align: center;
  border: 1px solid #707070;
  text-decoration: none !important;
  margin: 55px 0 55px 0;
  max-width: 300px;
  font-size: 25px;
  line-height: 29px;
}

@media screen and (max-width: 700px) {
  .button-cta-white {
    max-width: 229px;
    margin: 45px 0 25px 0;
  }

  .button-cta-black {
    max-width: 229px;
    margin: 45px 0 25px 0;
  }
}

.cta {
  background: #000;
  color: #fff;
  padding-bottom: 57px;
}

@media screen and (max-width: 700px) {


  .cta .container-full {
    width: 100%;
  }

  .cta .container-helf {
    width: 100%;
  }
}

/* Features *****************************************************************************************/
.features {
  background: #fff;
}


@media screen and (max-width: 700px) {

  .features .container-full {
    width: 100%;
  }

  .features .container-half {
    width: 100%;
  }

  .features .item ul {
    text-align: left;
    padding: 0;
    list-style-type: none;
  }

  .features .item ul li {
    margin-bottom: 33px;
  }
}

@media screen and (min-width: 701px) {

  .features-container-flex {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .features-container-block {
    display: block;
  }

  .features .container-full {
    display: flex;
    width: 100%;
    min-width: 100%;
  }

  .features .container-half {
    width: 50%;
  }

  .features .item ul {
    margin-bottom: 0px;
    list-style-type: none;
    padding: 10px;
  }

  .features .item ul li {
    margin-bottom: 33px;
  }

  .features .box {
    max-width: 1000px;
    width: 100%;
    display: flex;
  }

  .features .box-block {
    max-width: 1000px;
    width: 100%;
    display: block;
  }
}


/* Partners *****************************************************************************************/
.partners {
  background: #fff;
}

.partners .item {
  width: 100%;
  ;
}

@media screen and (max-width: 700px) {

  .partners .container-full {
    width: 100%;
  }

  .partners .container-half {
    width: 100%;
  }

  .partners .item ul {
    text-align: left;
    padding: 0;
    list-style-type: none;
    margin-bottom: 0;
  }

  .partners .item ul li {
    margin-bottom: 33px;
  }

  .partners .logos-container {
    max-width: 100vw;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .partners .logos-container-inner {
    max-width: 100vw;
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
  }
  .partners .logos-container ul li {
    max-width: 33%;
    text-align: center;
  }
  .partners .logos-container .img-logo{
    max-width: 100%;
    width: 100%;
  }
  
}

@media screen and (min-width: 701px) {
  .partners h2 {
    text-align: center;
    font-size: 42px;
    line-height: 45px;
    font-family: 'HelveticaNeue';
  }

  .partners p {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    font-family: 'HelveticaNeue';
    padding: 0px 80px;
  }

  .partners-container-flex {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .partners-container-block {
    display: block;
  }

  .partners .container-full {
    display: flex;
    width: 100%;
    min-width: 100%;
  }

  .partners .container-half {
    width: 50%;
  }

  .partners .item ul {
    margin-bottom: 0px;
    list-style-type: none;
    padding: 10px;
  }

  .partners .item ul li {
    margin-bottom: 33px;
  }

  .partners .box {
    max-width: 1000px;
    width: 100%;
    display: flex;
  }

  .partners .box-block {
    max-width: 1000px;
    width: 100%;
    display: block;
  }

  .partners .logos-container {
    max-width: 100vw;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 42px 69px 0 69px;
  }
  /* .partners .logos-container-inner {
    max-width: 100vw;
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  } */

  .partners .logos-container ul li {
    max-width: 30%;
    text-align: center;
    display: inline-block;
  }
  .partners .logos-container .img-logo{
    max-width: 100%;
    width: 100%;
  }
}

/* info **************************************************************************************************/

.info .black {
  background: #000;
  color: #fff;
  padding-bottom: 20px;
}

.info .white {
  background: #fff;
  color: #000;
  padding-bottom: 20px;
}

.info h2 {
  text-align: left;
}

.info p {
  padding: 0;
}

@media screen and (max-width: 700px) {

  .info {
    padding: 25px 0 35px 0;

  }

  .info h2 {
    font-size: 55px;
    line-height: 60px;
    font-family: 'HelveticaNeueBold';
    padding-bottom: 36px;
  }

  .info h3 {
    font-size: 40px;
    line-height: 40px;
    font-family: 'HelveticaNeueBold';
    padding-bottom: 36px;
  }


  .info .container-full {
    width: 100%;
  }

  .info .container-helf {
    width: 100%;
  }
}


@media screen and (min-width: 701px) {
  .info {
    max-width: 100vw;
    display: flex;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }

  .info .box {
    max-width: 1000px;
    align-self: center;

  }

  .info h2 {
    margin-bottom: 15px;
    padding: 30px 33px 30px 0px;
    font-size: 55px;
    line-height: 49px;
  }

  .info p {
    padding: 0;
  }

  .info .container-full {

    width: 100%;
  }

  .info .container-half {
    width: 50%;
  }

  .info .item ul {
    text-align: justify;
    padding: 30px 25px 30px 25px;
    list-style-type: none;
  }

  .info .item ul li {
    margin-bottom: 33px;
  }
}



/* TEAM **************************************************************************************************/
.team {
  max-width: 100vw;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 79px 0 110px 0;
}

.team .box {
  max-width: 1000px;
  width: 1000px;
  align-self: center;
}

.team .black {
  background: #000;
  color: #fff;
  padding-bottom: 20px;
}

.team .white {
  background: #fff;
  color: #000;
  padding-bottom: 20px;
}

.team h2 {
  text-align: left;
}

.team .container {
  display: flex;
  flex-flow: row wrap;
}

.team-container-flex {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.team .item {
  position: relative;
}

.team-member-container {
  position: relative;
  width: 24%;
  height: 100%;
  margin-bottom: 25px;
}

@media screen and (max-width: 700px) {
  .team-member-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 15px;
  }
}

.team-member-degradado {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin-left: 5px;
  mix-blend-mode: luminosity;
}

.team-member-container .datos {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0px 15px 20px 15px;
  color: #fff;

}

.team-member-container .datos .nombre {
  font-size: 23px;
  line-height: 28px;
  font-family: 'HelveticaNeueBold';
}

.team-member-container .datos .cargo {
  font-size: 13px;
  line-height: 16px;
}

.team-member-container .datos .social {
  font-size: 13px;
  line-height: 16px;
  color: #707070;
  text-align: right;
  padding-top: 13px;
}

.team-member-container .datos a {
  text-decoration: none;
  color: #707070;
}

.team-member-imagen {
  height: auto;
  width: 100%;
  padding: 0px 5px 0px 5px;
}






/*Playlist*/
.playlist {
  background: #fff;
  color: #000;
}

.container-noticia {
  position: relative;
}

.noticia-degradado {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 369px;
  height: auto;
  margin-left: 5px;
}

.container-noticia h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0px 15px 20px 15px;
  color: #fff;
  font-size: 40px;
}

#nav-noticias {
  width: 100%;
  Top: 0;
  position: absolute;
}

.playlist .item {
  position: relative;
}


.playlist .container .noticia-imagen {
  min-height: 100%;
  height: 100%;
  width: auto;
  padding: 0px 5px 0px 5px;
}


.img-arrow {
  max-width: 75px;
}

.img-arrow-right {
  max-width: 75px;
  position: absolute;
  right: -30px;
  top: 250px;
}

.img-arrow-left {
  max-width: 75px;
  position: absolute;
  left: -30px;
  top: 250px;
}

@media screen and (min-width: 701px) {
  .playlist .item {
    height: 580px;
    max-height: 580px;
    width: 90%;
    margin-left: 5%;
  }

  .playlist .container {
    display: flex;
    align-items: center;
    overflow-y: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
    position: relative;
    overflow-x: hidden;
  }

  .playlist .box {
    max-width: 1000px;
    width: 100%;
    display: flex;
  }

  .playlist h2 {
    font-size: 85px;
    font-family: "HelveticaNeueBold";
    font-weight: 300;
    line-height: 76px;
  }

}

@media screen and (max-width: 700px) {
  .playlist h2 {
    margin-bottom: 15px;
    text-align: left;
    padding: 30px 33px 30px 33px;
    font-size: 55px;
    line-height: 49px;
    font-family: 'HelveticaNeueBold';

  }

  .playlist .container-full {
    width: 100%;
  }

  .playlist .container-half {
    width: 100%;
  }

  .playlist .container {
    display: flex;
    align-items: center;
    overflow-y: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
    position: relative;
  }

  .playlist .box {
    width: 100%;
  }

  #nav-noticias {
    display: none;
  }
}





/* LEGAL ***********************************************************************************************/
.legal {
  max-width: 100vw;
  display: flex;
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 75px 10px;
}

.legal .box {
  max-width: 1000px;
  align-self: center;

}

@media screen and (max-width: 700px) {}








/*Footer *************************************************************************************/
.footer {
  background: #000;
  color: #707070;
}

.footer a {
  text-decoration: none;
  color: #707070;
}

@media screen and (max-width: 700px) {
  .footer p {
    font-size: 18px;
    line-height: 23px;
    padding: 10px 33px 40px 33px;
    text-align: right;
  }

  .footer img {
    padding: 30px 33px 0px 33px;
  }

  .footer .container-half {
    width: 100%;
  }
}

.container-footer {
  width: 100%;
  max-width: 1000px;
  display: block;
  padding: 25px 5px;
}

.container-footer .logo {
  width: 268px;
  height: auto;
}

.container-footer .container-half {
  width: 100%;
}






/* MODAL **********************************************************************************************/
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

  display: none;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;

  background: hsla(0, 0%, 40%, .6);
}

@media screen and (max-width: 700px) {}

/* using :target */
.modal-container:target {
  display: flex;
}

.modal {
  width: 60rem;
  padding: 35px 20px;
  color: #000;
  background: #fff;
  box-shadow: .4rem .4rem 2.4rem .2rem hsla(236, 50%, 50%, 0.3);
  position: relative;
  overflow: hidden;
}



.modal__details {
  text-align: center;

  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsla(0, 0%, 100%, .4);
}

.modal__title {
  font-size: 3.2rem;
}

.modal__description {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-style: italic;
}

.modal__text {
  padding: 0 4rem;
  margin-bottom: 4rem;
  font-size: 1.6rem;
  line-height: 2;
}

.modal__text::before {
  content: '';

  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);

  width: 18rem;
  height: 18rem;
  border: 1px solid hsla(0, 0%, 100%, .2);
  border-radius: 100rem;

  pointer-events: none;
}



.modal__btn {
  margin-top: 25px;
  padding: 20px;
  border: 1px solid hsla(0, 0%, 100%, .4);
  color: inherit;
  background: transparent;
  font-size: 1.4rem;
  font-family: inherit;
  letter-spacing: .2rem;
  transition: .2s;
  cursor: pointer;
  border: 1px #cacaca solid;
}

.modal__btn:hover,
.modal__btn:focus {
  border-color: hsla(0, 0%, 100%, .6);
  transform: translateY(-.2rem);
}

@media screen and (max-width: 700px) {
  .modal {
    width: 90%
  }

  .modal__text {
    padding: 0 10px;
    margin-bottom: 4rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}




/* links */
/* =============================================== */
.link-1 {
  font-size: 1.8rem;
  box-shadow: .4rem .4rem 2.4rem .2rem hsla(236, 50%, 50%, 0.3);
  border-radius: 100rem;
  padding: 1.4rem 3.2rem;

  transition: .2s;
}

.link-1:hover,
.link-1:focus {
  transform: translateY(-.2rem);
  box-shadow: 0 0 4.4rem .2rem hsla(236, 50%, 50%, 0.4);
}

.link-2 {
  width: 4rem;
  height: 4rem;
  border: 1px solid hsla(0, 0%, 100%, .4);
  border-radius: 100rem;

  color: inherit;
  font-size: 2.2rem;

  position: absolute;
  top: 5px;
  right: 5px;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: .2s;
}

.link-2::before {
  content: '×';

  transform: translateY(-.1rem);
}

.link-2:hover,
.link-2:focus {
  border-color: hsla(0, 0%, 100%, .6);
  transform: translateY(-.2rem);
}

/* Second Version Link */
/* =============================================== */
/* .second-version-link,
.second-version-link:link {
  color: hsl(236, 50%, 50%);
  padding: .8rem 1.6rem .8rem .2rem;
  border-bottom: 2px solid hsl(236, 50%, 50%);

  font-size: 1.4rem;
  font-weight: bold;

  position: absolute;
  top: 4rem;
  right: 4rem;
}

.second-version-link::after {
  content: '\2197';

  position: absolute;
  top: 0;
  right: 0;

  font-size: .9em;
}

.abs-site-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: hsla(0, 0%, 0%, .6);
  font-size: 1.6rem;
} */



/* FORM **********************************************************************************************/
/* Style inputs */
input[type=text],
select, input[type=email], input[type=tel] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  border-top: none;
  border-right: none;
  border-left: none;
}

input[type=text]:focus-visible, input[type=email]:focus-visible, input[type=tel]:focus-visible {
  outline-color: #000;
}

/* Style the submit button */
input[type=submit] {
  width: 100%;
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  border-top: none;
  border-right: none;
  border-left: none;
}

/* Add a background color to the submit button on mouse-over */
input[type=submit]:hover {
  background-color: #45a049;
}

/* boostrap classes */

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.font-size-0-9 {
    font-size:0.9rem;
}
.cursor {
    cursor:pointer;
}