*, *::before, *::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root{
  --pink:#ff72ab;
  --titleDuration:10s;
}

/* ---------------------fonts----------------------- */


@font-face {
  font-family: pinkRegular;
  src: url('./assets/font/woff/Pink-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: pinkBold;
  src: url('./assets/font/woff/Pink-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkCondBlack;
  src: url('./assets/font/woff/Pink-CondBold.woff') format('woff');
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: pinkCompRegular;
  src: url('./assets/font/woff/Pink-CompRegular.woff') format('woff');
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: pinkWideBlack;
  src: url('./assets/font/woff/Pink-WideBlack.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: pinkLight;
  src: url('./assets/font/woff/Pink-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: pinkCondExtraBlack;
  src: url('./assets/font/woff/Pink-CondExtraBlack.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkBlack;
  src: url('./assets/font/woff/Pink-Black.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkThunder;
  src: url('./assets/font/woff/Pink-Thunder.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkCompBold;
  src: url('./assets/font/woff/Pink-CompBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkNewRegular;
  src: url('./assets/font/woff/PPEditorialNew-Regular.woff') format('woff');
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: pinkBogan;
  src: url('./assets/font/woff/Pink-Bogam.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: pinkCoondBold;
  src: url('./assets/font/woff/Pink-CondBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: pinkNeuePlakSemiBold;
  src: url('./assets/font/woff/NeuePlakSemiBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
/* ----------------------------------------------- */

.body{
  background: #eeeeee;
  width: 100vw;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}
.sectionSize{
  padding: 1rem;
  min-height: 100vh;
}
img{
  max-width: 100%;
}

body::-webkit-scrollbar{
  width: 10px;    
  height: 8px;    
  background: #f3b2cc;

}
body::-webkit-scrollbar-thumb {
  background: #f08ab3;
  border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--pink);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-thumb:active {
  background-color: #f5468c;
}

/* start-----*/

.title span{
  z-index: 5;
}

.title span:nth-child(1){
  animation: ENCOURAGE var(--titleDuration) infinite;
  -webkit-animation: ENCOURAGE var(--titleDuration) infinite;
}
.title span:nth-child(2){
  animation: LOVE var(--titleDuration) infinite;
  -webkit-animation: LOVE var(--titleDuration) infinite;
} 
.title span:nth-child(3){
  animation: CREATE var(--titleDuration) infinite;
  -webkit-animation: CREATE var(--titleDuration) infinite;
} 
.title span:nth-child(4){
  animation: RISKS var(--titleDuration) infinite;
  -webkit-animation: RISKS var(--titleDuration) infinite;
}
.title span:nth-child(5){
  animation: LAUGH var(--titleDuration) infinite;
  -webkit-animation: LAUGH var(--titleDuration) infinite;
}
.title span:nth-child(6){
  animation: INSIST var(--titleDuration) infinite;
  -webkit-animation: INSIST var(--titleDuration) infinite;
}
.title span:nth-child(7){
  animation: EMBRACE var(--titleDuration) infinite;
  -webkit-animation: EMBRACE var(--titleDuration) infinite;
}
.title span:nth-child(8){
  animation: PARADISE var(--titleDuration) infinite;
  -webkit-animation: PARADISE var(--titleDuration) infinite;
}
.title span:nth-child(9){
  animation: DARE var(--titleDuration) infinite;
  -webkit-animation: DARE var(--titleDuration) infinite;
} 
.title span:nth-child(10){
  animation: THINK var(--titleDuration) infinite;
  -webkit-animation: THINK var(--titleDuration) infinite;
} 

@keyframes ENCOURAGE {
  0%, 10%{
    visibility: hidden;
  }
  9%{
    visibility: visible;
  }
}
@keyframes LOVE {
  10% , 20%{
    visibility: hidden;

  }
  11%{
    visibility: visible;
  }
}
@keyframes CREATE {
  20% , 30%{
    visibility: hidden;

  }
  21%{
    visibility: visible;
  }
}
@keyframes RISKS {
  30% , 40%{
    visibility: hidden;
  }
  31%{
    visibility: visible;
  }
}
@keyframes LAUGH {
  40%, 50%{
    visibility: hidden;
  }
  41%{
    visibility: visible;
  }
}
@keyframes INSIST {
  50%, 60%{
    visibility: hidden;
  }
  51%{
    visibility: visible;
  }
}
@keyframes EMBRACE {
  60%, 70%{
    visibility: hidden;
  }
  61%{
    visibility: visible;
  }
}
@keyframes PARADISE {
  70%, 80%{
    visibility: hidden;
  }
  71%{
    visibility: visible;
  }
}
@keyframes DARE {
  80%, 90%{
    visibility: hidden;
  }
  81%{
    visibility: visible;
  }
}
@keyframes THINK {
  90%, 100%{
    visibility: hidden;
  }
  91%{
    visibility: visible;
  }
} 

.title picture img{
  position: absolute;
  visibility: hidden;
  max-height: 400px;
  z-index: -20;
}
:root{
  --topImgStart1: 35vh;
  --topImgStart2: 25vh;
  --topImgStart3: 20vh;
  --leftImgStart: 55%;
  --leftImgStart2: 40%;
  
}
.title picture:nth-child(2) img{
  animation: img2 var(--titleDuration) infinite;
  -webkit-animation: img2 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}

@keyframes img2 {
  0%{
    visibility: hidden;
    
  }
  1%{
    visibility:visible;

  }
  9%{
    visibility:visible;
  }
  10%{
    visibility: hidden;
  }
}

.title picture:nth-child(3) img{
  animation: img3 var(--titleDuration) infinite;
  -webkit-animation: img3 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(2deg);
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  -o-transform: rotate(2deg);
}

@keyframes img3 {
  10%{
    visibility: hidden;
    
  }
  11%{
    visibility:visible;

  }
  19%{
    visibility:visible;
  }
  20%{
    visibility: hidden;
  }
}

.title picture:nth-child(4) img{
  /*height:45vh;
  */animation: img4 var(--titleDuration) infinite;
  -webkit-animation: img4 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

@keyframes img4 {
  20%{
    visibility: hidden;
    
  }
  21%{
    visibility:visible;

  }
  29%{
    visibility:visible;
  }
  30%{
    visibility: hidden;
  }
}

.title picture:nth-child(5) img{
  animation: img5 var(--titleDuration) infinite;
  -webkit-animation: img5 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(2deg);
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  -o-transform: rotate(2deg);
}

@keyframes img5 {
  30%{
    visibility: hidden;
    
  }
  31%{
    visibility:visible;

  }
  39%{
    visibility:visible;
  }
  40%{
    visibility: hidden;
  }
}

.title picture:nth-child(6) img{
  /*height:45vh;
  */animation: img6 var(--titleDuration) infinite;
  -webkit-animation: img6 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}

@keyframes img6 {
  40%{
    visibility: hidden;
    
  }
  41%{
    visibility:visible;

  }
  49%{
    visibility:visible;
  }
  50%{
    visibility: hidden;
  }
}

.title picture:nth-child(7) img{
  /*height:45vh;
  */animation: img7 var(--titleDuration) infinite;
  -webkit-animation: img7 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
}

@keyframes img7 {
  50%{
    visibility: hidden;
    
  }
  51%{
    visibility:visible;

  }
  59%{
    visibility:visible;
  }
  60%{
    visibility: hidden;
  }
}

.title picture:nth-child(8) img{
  /*height:45vh;
  */animation: img8 var(--titleDuration) infinite;
  -webkit-animation: img8 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}

@keyframes img8 {
  60%{
    visibility: hidden;
    
  }
  61%{
    visibility:visible;

  }
  69%{
    visibility:visible;
  }
  70%{
    visibility: hidden;
  }
}

.title picture:nth-child(9) img{
  /*height:45vh;
  */animation: img9 var(--titleDuration) infinite;
  -webkit-animation: img9 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(2deg) ;
  -webkit-transform: rotate(2deg) ;
  -moz-transform: rotate(2deg) ;
  -ms-transform: rotate(2deg) ;
  -o-transform: rotate(2deg) ;
}

@keyframes img9 {
  70%{
    visibility: hidden;
    
  }
  71%{
    visibility:visible;

  }
  79%{
    visibility:visible;
  }
  80%{
    visibility: hidden;
  }
}

.title picture:nth-child(10) img{
  /* height:45vh; */
  animation: img10 var(--titleDuration) infinite;
  -webkit-animation: img10 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart );
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}

@keyframes img10 {
  80%{
    visibility: hidden;
    
  }
  81%{
    visibility:visible;

  }
  89%{
    visibility:visible;
  }
  90%{
    visibility: hidden;
  }
}

.title picture:nth-child(11) img{
  /* height:45vh; */
  animation: img11 var(--titleDuration) infinite;
  -webkit-animation: img11 var(--titleDuration) infinite;
  top: var(--topImgStart1);
  left: var(--leftImgStart);
  transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  -o-transform: rotate(-2deg);
}

@keyframes img11 {
  90%{
    visibility: hidden;
  }
  91%{
    visibility:visible;
  }
  99%{
    visibility:visible;
  }
  100%{
    visibility: hidden;
  }
}

.start{
  background: var(--pink);
  max-width: 100%;
  overflow-x: hidden;
}

.start .title{
  font-family: pinkCompRegular;
  text-align: center;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 5;
}

.start .title h1{
  position: absolute;
  display: inline-block;
  right: 0;
  left: 0;
  top:-4rem;
  font-size: 25rem;
}

.start .title span{
  position: absolute;
  visibility: hidden;
  right: 0;
  left: 0;
}

.start footer{
  display: flex;
  justify-content:  space-between;
  font-size: .8rem;
  position: absolute; 
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: pinkNewRegular;
}
.start .arg,
.start .pana{
  width: 30vw;
}

.start .pana{
  text-align: right;
}

.start .arg p:nth-child(1),
.start .pana p:nth-child(1){
  font-family: pinkBold;
}

.start .that{
  background: #000;
  color: #eeee;
  height: max-content;
  padding: .4rem .8rem;
  border-radius:30px;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  -ms-border-radius:30px;
  -o-border-radius:30px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  font-family: pinkNewRegular;
  z-index: 300;
  text-decoration: none;
  overflow-y: hidden;

}
.start .that span{
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}

.start .that:hover span{
  color: var(--pink);
}
.start .that:hover svg{
  fill: var(--pink);
  animation: arrowSvg 1s infinite linear;
  -webkit-animation: arrowSvg 1s infinite linear;
}
@keyframes arrowSvg {
  0%{
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
  50%{
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
  }
  51%{
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
  }
  100%{
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }
}

.start .that svg{
  width: .7rem;
  margin-left: .2rem;
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
}

.masInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #090909;
  color: #eeeeee;
  font-size: .7rem;
  padding: .4rem .8rem;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transform: scale(.85);
  -webkit-transform: scale(.85);
  -moz-transform: scale(.85);
  -ms-transform: scale(.85);
  -o-transform: scale(.85);
  font-family: pinkLight;
}
.masInfo svg{
  width: .7rem;
  margin-left: .4rem;
}

.svgColorNatural{
  fill: var(--pink)
}
.svgParalax{
  fill:#eeeeee;
}
.svgGray{
  fill: #090909;
}
/* start */


/* header */

.headerBar{
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 20;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
.headerFixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* header */


/* paragraph */

.paragraph{
  font-family: pinkCondBlack;
  display: flex;
  font-weight: bold;
  justify-content: center;
  text-align: center;
  font-size: 7rem;
  line-height: .8;
}
.paragraph div{
  margin: auto 0;
}
.paragraph p:hover span{
  color: var(--pink);
}
.paragraph p{
  position: relative;
}

.paragraph p img{
  position: absolute;
  visibility: hidden;
  z-index: 10;
  width: 250px;
}
.paragraph p:hover img{
  visibility: visible;
}
.paragraph .Puno img{
  top: 0;
  left: 70%;
}
.paragraph .Pdos img{
  top: 0%;
  left: 41%;
}
.paragraph .Ptres img{
  top: 0%;
  left: 37%;
}
.paragraph .Pcuatro img{
  top: -140%;
  left: 5%;
}
.paragraph .Pcinco img{
  top: -150%;
  right: 15%;
}


/* twoParagraph */
.twoParagraph{
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: pinkCompRegular;
  line-height: 1;
  margin-top: 12rem;
  margin-bottom: 4rem;
}

.oneLevelSize{
  font-size: 15px;
}
.twoLevelSize{
  font-size: 21px;
}
.threeLevelSize{
  font-size: 30px;
}
.celebretP{
  margin-right: 2rem;
}
.laughP{
  margin-left: 1rem;
}
.yesP{
  margin-left: 2rem;
}
.giveP{
  display: inline-block;
  width: 40px;
}
.colaP{
  margin-left: 8rem;
}

.bigPink{
  padding: 1rem;
  display: flex;
  justify-content: center;
  
}
.bigPink img{
  max-width:90vw;
}

/* twoParagraph */

/* gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem;
  row-gap: 6rem;
  margin-bottom: 6rem;
}
.gallery a{
  text-decoration: none;
  color: none;
}
.gallery h2,
.gallery p{
  color: #090909;
}
.gallery article:nth-child(1){
  grid-column: 1/3;
}
.gallery article:nth-child(5){
  grid-column: 2/4;
}
article img{
  width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.branBlack{
  position: relative;
}
.branBlack span{
  font-family: pinkLight;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .6rem;
  padding: .3rem .5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.lastSpan {
  position: relative;
}
.lastSpan span{
  font-family: pinkLight;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: .6rem;
  padding: .3rem .5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.gallery .branBlack:nth-child(6) span{
  bottom: 1rem;
  right: 1rem;
}
.blackB{
  background: #090909;
  color:#eeeeee;
}
.whiteB{
  background:#eeeeee ;
  color:#090909 ;
}

.bodyGallery{
  display: flex;
  justify-content: space-between;
}
.bodyGallery h2{
  font-family: pinkWideBlack;
}
.bodyGallery div{
  text-align: right;
  font-size: .7rem;
  margin-top: 5px;

}
.bodyGallery div p:nth-child(1){
  font-family: pinkRegular;
}
.bodyGallery div p:nth-child(2){
  font-family: pinkBold;
  font-weight: bold;
}
.lastGallery{
  margin-top: -12rem;
}
/* gallery */

/* paralla */

.paralla {
  min-height: 150vh;
  background-image: url('./assets/faces/caras-23.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
  font-family: pinkCompRegular;
}


.paralla div{
  position: static;
  top: calc( 100vh - 220px ); 
  padding-bottom: 1rem;
  line-height: .9;
}


.parallaBlock{
  display: none;
}
.size1{
  font-size: 1rem;
}
.size2{
  font-size: 2rem;
}
.size3{
  font-size: 3rem;
}
.size4{
  font-size: 4rem;
}
.size5{
  font-size: 5rem;
}

.mLeft0{
  margin-left: .5rem;
}
.mLeft1{
  margin-left: 1rem;
}
.mLeft2{
  margin-left: 2rem;
}
.mLeft3{
  margin-left: 3rem;
}
.mLeft5{
  margin-left: 5rem;
}

/* paralla */


/* gray */ 

.gray{
  overflow: hidden;
  margin-bottom: 6rem;
}
.gray header{
  display: flex;
  font-family: pinkBold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: toLeft 60s in;
  -webkit-animation: toLeft 60s in;
}
.gray header a{
  background: #090909;
  animation: toLeft 60s infinite linear;
  -webkit-animation: toLeft 20s infinite linear;
  padding:5px 1px;
  margin-left: -2px;
  padding-bottom: 10px;
  cursor: pointer;
  text-decoration: none;

}
.gray header a span:nth-child(1){
  color: var(--pink);  
  font-size: .6rem;
}
.gray header a span:nth-child(2){
  color:#eeeeee;
  border: #eeeeee 1px solid;
  font-size: .6rem;
  padding: .3rem .8rem;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-right: 4rem;
  margin-left: 2rem;
}
.gray header a:hover span:nth-child(2){
  background: #eeeeee;
  color:#090909;
}

.what{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin:0 6rem;
}
.what > div {
  position: relative;
}
.what img{
  position: absolute;
  width: 100px;
  left: 64%;
  top: 40%;
}
.what h2{
  font-family: pinkCondExtraBlack;
  font-size: 12rem;
  text-align: center;
  margin-top: 3rem;
}
.enter{
  display: none;
}

.what p{
  font-family: pinkNewRegular;
  text-align: justify;
  text-align-last: center;
  width: 500px;
  font-size: .9rem;
  margin-bottom: 6rem;
}
.gray article{
  display: grid;
  grid-template-columns: 5rem 25rem auto 400px 5rem ;
  align-items: start;
  margin: 0 1rem;
  padding-top: 1rem;
  padding-bottom: 3rem;
  border-top: 2px #090909 solid;
  transition: all .2s;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}
.gray article h2{
  font-family: pinkBold;
  font-size: 4rem;
  margin-top: -1.5rem;
}
.gray article > div p{
  font-family: pinkRegular;
}
article .grayDesc{
  font-size: pinkNewRegular;
}
.descr p{
  font-family: pinkBlack;
  color:#eeeeee;
}
.infoGray{
  display: flex;
  justify-content: end;
  margin: 0;
}

.gray article img{
  width: 200px;
  margin-top: -100px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transform: rotate(-100px);
  -webkit-transform: rotate(-100px);
  -moz-transform: rotate(-100px);
  -ms-transform: rotate(-100px);
  -o-transform: rotate(-100px);
}
.gray article:hover img{
  transform: rotate(20px);
  -webkit-transform: rotate(20px);
  -moz-transform: rotate(20px);
  -ms-transform: rotate(20px);
  -o-transform: rotate(20px);
}
/* .gray div:last-child{
  
} */
.descr{
  display: flex;
  justify-content: space-around;
  visibility: hidden;
  position: relative;
}
.gray article:hover{
  background: #090909;
  color: #eeeeee;
}
.gray article:hover .descr{
  visibility: visible;
}
.gray article:hover .masInfo{
  visibility: hidden;
}

/* gray */

/* method */
.method{
  background: var(--pink);
  overflow: hidden;
  padding-top: 6rem;
  position: relative;
}

.titleMe{
  position: relative;
  padding-top: 8rem;
}
.titleMe h2{
  font-family: pinkThunder;
  font-size: 50rem;
  top: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: toLeft 35s linear infinite;
  -webkit-animation: toLeft 35s linear infinite;
}

@keyframes toLeft {
  0%{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100%{
    transform: translateX(-1000%);
    -webkit-transform: translateX(-1000%);
    -moz-transform: translateX(-1000%);
    -ms-transform: translateX(-1000%);
    -o-transform: translateX(-1000%);
  }
} 
.titleMe p{
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color:#eeeeee;
  font-size: 2rem;
  text-align: center;
  font-family: pinkNewRegular;
  max-width: 300px;
}

.swiper{
  padding-top: 200px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
}

.swiper-slide div{
  position: relative;
  padding-top: 347px;
}

.swiper-slide div p{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-slide div p:nth-child(1){
  font-size: 35rem;
  color:#090909;
  font-family: pinkBogan;
}
.swiper-slide div p:nth-child(2){
  font-size: 2rem;
  color:#ffffff;
  font-family: pinkNewRegular;
  top:48%;
}
 
.method footer{
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all .2s;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  background: var(--pink);
  z-index: 3;
}
.method footer div:nth-child(2){
  text-align: right;
}
.methodBol{
  font-family: pinkBold;
}
.methodReg{
  font-family: pinkRegular;
}
.listen{
  text-align: center;
  font-family: pinkBold;
  margin: 6rem 0;
}
.listen .sentences {
  max-height: 100vh;
  line-height: .9;
}
.listen .sentencesPuno{
  font-size: 1.5rem !important;
  margin-top: 8rem;
  font-size: pinkBold !important;
  line-height: .9;
}
.listen .sentenceRest{
 margin: 3rem 0;
 font-size: 3rem;
 font-family: pinkNewRegular;
}

.listen .sentences p:nth-child(6){
  font-size: 2rem;
}
.listen img{
  max-width: 80vw;
}

/* method */

/* footer */

.last{
  position: relative;
  z-index: 5;
}

.bodyFooter{
  padding: 12rem 1rem;
  background: #090909;
  color: #eeeeee;
  position: relative;
  overflow: hidden;
}
.isPink p{
  line-height: 1;
  font-family: pinkCompRegular;
  text-align: center;
  font-size: 3rem;
}
.lowSize{
  font-size: 1.5rem;
}
.bodyFooter img{
  width: 140px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  position: absolute;
}
.bodyFooter h2{
  font-family: pinkCondExtraBlack;
  text-align: center;
  margin: 1rem 0;
  font-size: 15rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bodyFooter img:nth-child(1){
  top:4rem;
}
.bodyFooter img:nth-child(2){
  top:13rem;
  left: 7rem;
}
.bodyFooter img:nth-child(3){
  top: 4rem;
  right: 7rem;
}
.bodyFooter img:nth-child(4){
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.bodyFooter img:nth-child(5){
  right: 1rem;
  bottom: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.imgFooterAppear{
  opacity: 1;
}
.imgFooterDISAppear{
  opacity: 0;
}
.footerPink{
  display: grid;
  grid-template-columns:300px 40% 1fr 1fr ;
  padding: 1rem 0;
  background: #090909;
  color: #eeeeee;
  font-size: .7rem;
  font-family: pinkRegular;
  row-gap: 6rem;
}
.footerPink img{
  width: 300px;
  padding-left: 1rem;
}
.footerPink ul li{
  list-style: none;
}
.footerPink div:nth-child(2){
  padding-left: 4rem;
}
.last img{
  max-width: 100%;
  margin-bottom: -2rem;
}
.footerData{
  grid-column: 1/3;
  padding-left: 1rem;
}
.footerPink > div:last-child{
  display: grid;
  grid-template-columns: auto auto auto;
}

.footerPink a{
  color:#eeeeee;
  text-decoration: none;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}
.footerPink a:hover {
  color: var(--pink);
}
.lifIsImg{
  position: relative;
}
.lifIsImg img{
  position: absolute;
  top: 50% !important;
  left: 10% !important;
}
.weAre{
  max-width: 300px;
}
/* footer */


/* navBar */
:root{
  --navTime:.2s
}
.openNavbar{
  animation:  openNavBar var(--navTime) forwards;
  -webkit-animation:  openNavBar var(--navTime) forwards;
}

@keyframes openNavBar {
  from{
    opacity: 0;
    z-index: -100;
  }
  to{
    opacity: 1;
    z-index: 700;
  }
}

.closeNavbar{
  animation: closeNavBar var(--navTime) forwards;
  -webkit-animation: closeNavBar var(--navTime) forwards;
}
@keyframes closeNavBar {
  from{
    opacity: 1;
    z-index: 7077
  }
  to{
    opacity: 0;
    z-index: -100; 
  }
}

.allHeight{
  height: 100%;
}
.navBar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* min-height: 100vh; */
  background: var(--pink);
  padding: 1rem;
  z-index: -100;
  opacity: 0;
}
.navBar nav{
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.navBar ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.navBar li{
  text-align: center;
  list-style: none;
}
.navBar a{
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: #090909;
  width: 100%;
}
.navBar li:nth-child(3) a > span:nth-child(2) {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navBar li a > span:nth-child(1){
  text-align: left;
}
.navBar a span:nth-child(2){
  font-family: pinkCompBold;
  display: inline-block;
  font-size: 6rem;
  transform:scaleY(1.3);
  -webkit-transform:scaleY(1.3);
  -moz-transform:scaleY(1.3);
  -ms-transform:scaleY(1.3);
  -o-transform:scaleY(1.3);
  transition: all .2s;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  line-height: 1;
}
.close{
  width: 105px;
  display: flex;
  justify-content:  flex-end;
}

.navBar a:hover span:nth-child(2){
  color: #eeeeee;
}
.navBar a span:nth-child(3),
.navBar a span:nth-child(1)  {
  visibility: hidden;
}

.headerNavBar{
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  height: 5vh;
}
.headerNavBar p{
  font-family: pinkCondBlack;
}

.preNavFooter{
  padding: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  
}
.navFooter{
  display: flex;
  justify-content: space-between;
}
.navFooter .arg,
.navFooter .pana{
  font-family: pinkNewRegular;
}
.navFooter .pana{
  text-align: right;
}
.navFooter div p:nth-child(1){
  font-family: pinkBold;
}

/* navBar */


/* ------------------------------------------------------- */
:root{
  --resto1: .5rem;
  --resto2: .7rem;
  --resto3: .9rem;
}


@media (width < 1100px){
  .gray article{
    grid-template-columns: 2rem auto auto auto 3rem ;
    grid-template-rows: 70px 70px;
  }
  .gray article p:nth-child(3){
    grid-row-start:2;
    grid-column-start: 2;
  }
  .infoGray{
    grid-column-start: 6;
  }
  .what h2{
    font-size: 8rem;
  }
}

@media (width < 1000px) or (height < 700px) {
  .start .title h1{
    font-size: 18rem;
  }
  .title picture:nth-child(2) img,
  .title picture:nth-child(3) img,
  .title picture:nth-child(4) img,
  .title picture:nth-child(5) img,
  .title picture:nth-child(6) img,
  .title picture:nth-child(7) img,
  .title picture:nth-child(8) img,
  .title picture:nth-child(9) img,
  .title picture:nth-child(10) img,
  .title picture:nth-child(11) img {
    top: 20vh;
    max-height: 300px;
  }
  .paralla div{
    top: calc( 100vh - 200px ); 
  }
  
}


@media (width < 1000px ) and (height > 700px){
  .title picture:nth-child(2) img,
  .title picture:nth-child(3) img,
  .title picture:nth-child(4) img,
  .title picture:nth-child(5) img,
  .title picture:nth-child(6) img,
  .title picture:nth-child(7) img,
  .title picture:nth-child(8) img,
  .title picture:nth-child(9) img,
  .title picture:nth-child(10) img,
  .title picture:nth-child(11) img {
    top: 21vh;
  }
}
@media (width < 1000px ) {
  .paralla div{
    top: calc( 100vh - 190px ); 
  }
  .size2{
    font-size:calc( 2rem - var( --resto1 ));
  }
  .size3{
    font-size:calc( 3rem - var( --resto1 ));
  }
  .size4{
    font-size:calc( 3rem - var( --resto1 ));
  }
  .size5{
    font-size:calc( 5rem - var( --resto1 ));
  }
  
  .mLeft0{
    margin-left:calc( .5rem - var(--resto1 ));
  }
  .mLeft1{
    margin-left:calc( 1rem - var(--resto1 ));
  }
  .mLeft2{
    margin-left:calc( 2rem - var(--resto1 ));
  }
  .mLeft3{
    margin-left:calc( 3rem - var(--resto1 ));
  }
  .mLeft5{
    margin-left:calc( 5rem - var(--resto1 ));
  }
  .last h2{
    font-size: 8rem;
  }
  .footerPink{
    grid-template-columns:1fr 1fr ;
  }
  .footerPink div:nth-child(2){
    padding-left: 1rem;
  }

  .footerPink ul{
    padding: 0 1rem;
  }
  .footerLeft{
    padding-left: 1rem;
  }
  .paragraph{
    padding: 0 1rem;
  }
  .swiper-slide div p:nth-child(1){
    font-size: 20rem;
  }
  .start footer{
    font-size: .6rem;
  }
  .what p{
    font-size: .8rem;
    width: 400px;
  }

  .bodyFooter img{
    width: 90px;
  }
  .bodyFooter img:nth-child(2){
    top: 10rem;
    left: 5rem;
  }
  .isPink p{
    font-size: 2.8rem;
  }
  .lowSize{
    font-size: 1.4rem;
  }
  .headerNavBar svg,
  .headerBar svg{
    transform: scale(.9);
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
  }
  .paralla {
    background-image: url('./assets/faces/caras_1300.jpg');
  }
} 

@media (width < 900px ) {
  .gray article img{
    width: 0px;
  }
  .preNavFooter{
    display: none;
  }
  .headerNavBar svg,
  .headerBar svg{
    transform: scale(.8);
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    margin-left: -.5rem;
  }
  .listen{
    padding: 0 1rem;
  }
}

@media (width < 800px ) {
  .size2{
    font-size:calc( 2rem - var( --resto2 ));
  }
  .size3{
    font-size:calc( 3rem - var( --resto2 ));
  }
  .size4{
    font-size:calc( 3rem - var( --resto2 ));
  }
  .size5{
    font-size:calc( 5rem - var( --resto2 ));
  }
  .mLeft1{
    margin-left:calc( 1rem - var(--resto2 ));
  }
  .mLeft2{
    margin-left:calc( 2rem - var(--resto2 ));
  }
  .mLeft3{
    margin-left:calc( 3rem - var(--resto2 ));
  }
  .mLeft5{
    margin-left:calc( 5rem - var(--resto2 ));
  }
  .start .title h1{
    font-size: 15rem;
  }
  .title picture img{
    top: 10vh;
    max-height: 200px;
  }
  .paragraph p img{
   width: 150px;
  }
  .what h2{
    font-size: 7rem;
  }
  .titleMe p{
    font-size: 1.5rem;
    width: 200px;
  }
  .titleMe h2{
    font-size: 40rem;
  }
  .listen .sentencesPuno{
    font-size: 1rem !important;
  }
  .listen .sentenceRest{
    font-size: 2rem;
  }
  .listen .sentences{
  line-height: 1;

  }
  .bodyFooter img{
    width: 80px;
  }
  .headerNavBar svg,
  .headerBar svg{
    transform: scale(.7);
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    -o-transform: scale(.7);
    margin-left: -1rem;
  }

  .paralla {
    background-attachment: initial;
    min-height: 100vh;
  }
  .paralla div{
    position: initial;
  }
}


@media (width < 700px ) {
  .size2{
    font-size:calc( 2rem - var( --resto3 ));
  }
  .size3{
    font-size:calc( 3rem - var( --resto3 ));
  }
  .size4{
    font-size:calc( 3rem - var( --resto3 ));
  }
  .size5{
    font-size:calc( 5rem - var( --resto3 ));
  }
  .mLeft1{
    margin-left:calc( 1rem - var(--resto3 ));
  }
  .mLeft2{
    margin-left:calc( 2rem - var(--resto3 ));
  }
  .mLeft3{
    margin-left:calc( 3rem - var(--resto3 ));
  }
  .mLeft5{
    margin-left:calc( 5rem - var(--resto3 ));
  }
  .title img{
    max-width: 200px;
  }
  .start .title h1{
    font-size: 12rem;
    top:0;
  }
  .paragraph p img{
   width: 120px;
  }
  .gallery article{
    padding: 1rem;
  }
  .gallery article:nth-child(1){
    grid-column: 1/5;
  }
  .gallery article:nth-child(2){
    grid-column: 1/3;
  }
  .gallery article:nth-child(3){
    grid-column: 3/5;
  }
  .gallery article:nth-child(4){
    grid-column: 1/3;
  }
  .gallery article:nth-child(5){
    grid-column: 3/5;
  }
  .gallery article:nth-child(6){
    grid-column: 1/5;
  }
  .start footer{
    font-size: .5rem;
  }
  .what h2{
    font-size: 5rem;
  }
  .what p{
    font-size: .7rem;
    max-width: 400px;
    padding: 0 1rem;
  }
  .what img{
    width: 80px;
  }
  .isPink p{
    font-size: 2.4rem;
  }
  .lowSize{
    font-size: 1.2rem;
  }
  .paralla {
    background-image: url('./assets/faces/caras_1000.jpg');
  }
} 

@media ( height < 600px ) {
  .navBar a span:nth-child(2){
    font-size: 5rem;
  }
}
@media ( width < 652px ) {
  .gray article{
    grid-template-rows: auto 70px;
  }
  .descr{
    grid-row-start: 1;
    grid-column-start: 4;
    align-items: center;
  }
  .gray article h2{
    font-size: 2.5rem;
    margin-top: -.8rem;
  }
  .descr p{
    font-size: 0;
  }
}
@media ( width < 600px ) {
  .titleMe p{
    font-size: 1.2rem;
    top: 52%;
  }
  .titleMe h2{
    font-size: 30rem;
  }
  .swiper-slide div{
    padding-top: 200px;
  }
  .swiper-slide div p:nth-child(1){
    font-size: 15rem;
  }
  .swiper-slide div p:nth-child(2){
    font-size: 1.5rem;
  }
  .last h2{
    font-size: 5rem;
  }
  .isPink p{
    font-size: 2rem;
  }
  .lowSize{
    font-size: 1rem;
  }
  .paragraph{
    font-size: 5.5rem;
  }
  .infoGray{
    transform: translateX(8px);
  }
  .what img{
    width: 70px;
    left: 62%;
    top: 50%;
  }
  .what{
    margin:0 1rem;
  }
  .paralla {
    background-image: url('./assets/faces/caras_500.jpg');
  }

}

@media ( width < 500px ) {
  .bodyGallery div p{
    text-align: right;
  }
  .bodyGallery{
    justify-content: start;
    flex-direction: column;
  }
  .bodyGallery div{
    text-align: left;
  }
  .listen .sentencesPuno{
    font-size: .8rem !important;
  }
  .listen .sentenceRest{
    font-size: 1.6rem;
  }
  .blackB,
  .whiteB{
   transform: scale(.8);
   -webkit-transform: scale(.8);
   -moz-transform: scale(.8);
   -ms-transform: scale(.8);
   -o-transform: scale(.8);
  }
  .branBlack span{
    top: .6rem;
    left: .6rem;
  }
  .what h2{
    line-height: .8;
    margin-bottom: 1rem;
  }
  .enter{
    display: block;
  }
  .what img{
    width: 80px;
    left: 34%;
    top: 60%;
  }
  .bodyFooter img:nth-child(3){
    right: 3rem;
  }
  .bodyFooter img:nth-child(2){
    top: 9.5rem;
    left: 3rem;
  }
  .method footer{
    line-height: .95;
    font-size: .8rem;
  }
  .parallaNone{
    display: none;
  }
  .parallaBlock{
    display: inline-block;
    margin-top: 5px;
  }
}

@media ( width < 450px ) {
  .paragraph{
    font-size: 4.3rem;
  }
  .footerPink > div:last-child{
    column-gap: 0;
  }
  .listen .sentencesPuno{
    margin-top: 6rem;
  }
  .what p{
    padding: 0 1rem;
  }
  .paragraph p img{
    width: 70px;
  }
  .title picture:nth-child(2) img,
  .title picture:nth-child(3) img,
  .title picture:nth-child(4) img,
  .title picture:nth-child(5) img,
  .title picture:nth-child(6) img,
  .title picture:nth-child(7) img,
  .title picture:nth-child(8) img,
  .title picture:nth-child(9) img,
  .title picture:nth-child(10) img,
  .title picture:nth-child(11) img {
    left: var(--leftImgStart2);
  }
  .headerNavBar p{
    display: none;
  }
}

@media ( width < 410px ) {
  .infoGray{
    display: none;
  }  
}

@media ( width < 400px ) {
  .start .title h1{
    font-size: 8rem;
  }
  .title picture:nth-child(2) img,
  .title picture:nth-child(3) img,
  .title picture:nth-child(4) img,
  .title picture:nth-child(5) img,
  .title picture:nth-child(6) img,
  .title picture:nth-child(7) img,
  .title picture:nth-child(8) img,
  .title picture:nth-child(9) img,
  .title picture:nth-child(10) img,
  .title picture:nth-child(11) img {
    top: 15vh;
  }
  .twoLevelSize{
    font-size: 11px;
  }
  .threeLevelSize{
    font-size: 20px;
  }
  .celebretP{
    margin-right: 2rem;
  }
  .laughP{
    margin-left: 1rem;
  }
  .giveP{
    display: inline-block;
    width: 40px;
  }
  .gallery{
    row-gap: 0;
  }
  .gallery article:nth-child(1),
  .gallery article:nth-child(2),
  .gallery article:nth-child(3),
  .gallery article:nth-child(4),
  .gallery article:nth-child(5),
  .gallery article:nth-child(6){
    grid-column: 1/5;
  }
  .swiper-slide div{
    padding-top: 100px;
  }
  .swiper-slide div p:nth-child(1){
    font-size: 10rem;
  }
  .swiper-slide div p:nth-child(2){
    font-size: 1rem;
  }

  .gray article{
    grid-template-columns: 2rem auto;
  }
  .what p{
    font-size: .7rem;
    width: 99vw;
  }
  .footerLeft{
    grid-column: 1 / span 2;
  }
  .footerPink{
    row-gap: 3rem;
  }
  .footerPink > div:last-child{
    display: flex;
  }
  .footerPink > div:last-child a:nth-child(2),
  .footerPink > div:last-child a:nth-child(3){
    margin-left: 1rem;
  }

}

@media ( width < 350px ) {
  .paragraph{
    font-size: 3.55rem;
  } 
}