@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,700,700i&display=swap');

:root {
  --mainColor: #ff003d;
  --secundaryColor: #ff003d;
  --btnsColor: #ff003d;
  --space: 0 auto 2.2rem;
  --mSpace: 0 auto 3.4rem;
  --defaultSpace: 0.75rem;
  --fwBolder: 700;
  --fwNormal: 300;
}

*{
  text-rendering: optimizeLegibility;
  font-family: 'Roboto Condensed', sans-serif;
}

body{
  margin: 0;
  background: #fff;
}

b, u, i, span{font-family: inherit;}
b{font-weight: var(--fwBolder);}
u{text-decoration-color: var(--mainColor);}

.container{
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}

.blocks{
  width: 100%;
  margin: 0;
  padding: var(--defaultSpace);
  position: relative;
}

.stHeader{
  text-align: center;
  background: #000;
}

.boxInfos{
  width: 100%;
  display: table;
  color: #fff;
}

h1, h2, h3, p, ul li, ol li{
  margin: var(--space);
  font-weight: var(--fwNormal);
}


h1{
  font-size: 1.8rem;
  font-weight: var(--fwBolder);
  line-height: 1.95rem;
  /* text-transform: uppercase; */
}

h2{font-size: 1.4rem;}
h2, h3{line-height: 1.75rem;}
h3{font-size: 1.3rem;}

p, ul li, ol li{
  font-size: 1.15rem;
  line-height: 1.55rem;
}

.logo{
  width: 100%;
  max-width: 180px;
  display: table;
  margin: 0 auto calc(var(--defaultSpace) * 5);
}

.btnDesk{display: none !important;}

.boxPromoCTA{
  width: 90%;
  padding: calc(var(--defaultSpace) * 1.5);
  border: solid 1.5px #fff;
  border-radius: calc(var(--defaultSpace) / 3);
  display: table;
  margin: var(--space);
}

.boxPromoCTA h3{margin-bottom: calc(var(--defaultSpace) * 1.4)}

.promoPrice b{
  font-size: 3.4rem;
  color: var(--mainColor);
}

.promoPrice small{font-size: 1.1rem;}

.arrowCircle{
  width: 60px;
  height: 60px;
  display: table;
  margin: var(--space);
  border: solid 1.5px var(--mainColor);
  border-radius: 100px;
  position: relative;
}

.arrowJump{
  width: 20px;
  height: 20px;
  border-right: solid 1.5px var(--mainColor);
  border-bottom: solid 1.5px var(--mainColor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);

  -webkit-animation: arrowJump 1s infinite linear;
  animation: arrowJump 1s infinite linear;
  animation-delay: -2s;
}

@-webkit-keyframes arrowJump {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(-75%) translateX(-50%) rotate(45deg);
  }
  40% {
    -webkit-transform: translateY(-60%) translateX(-50%) rotate(45deg);
  }
  60% {
    -webkit-transform: translateY(-40%) translateX(-50%) rotate(45deg);
  }
}

@-moz-keyframes arrowJump {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(-75%) translateX(-50%) rotate(45deg);
  }
  40% {
    -moz-transform: translateY(-60%) translateX(-50%) rotate(45deg);
  }
  60% {
    -moz-transform: translateY(-40%) translateX(-50%) rotate(45deg);
  }
}

@keyframes arrowJump {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(-75%) translateX(-50%) rotate(45deg);
  }
  40% {
    transform: translateY(-60%) translateX(-50%) rotate(45deg);
  }
  60% {
    transform: translateY(-40%) translateX(-50%) rotate(45deg);
  }
}

.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

/*------------------FOOTER------------------*/
footer {
  width: 100%;
  background-color: #efefef;
  color: #000;
  font-weight: var(--fwNormal);
  margin: 0 auto;
  padding: var(--defaultSpace);
  text-align: center;
}

footer p {
  max-width: 620px;
  font-size: 0.85rem;
  line-height: 1rem;
}

footer p:last-child{margin: 0 auto 100px;}

footer p a {
  color: #000;
  text-decoration: underline;
}
/*------------------/FOOTER------------------*/


/*---------BREAKPOINTS---------*/
@media only screen and (min-width: 411px){
  h1{font-size: 2rem;}
  h2{font-size: 1.5rem;}
  h3{font-size: 1.35rem;}
  p, ul li, ol li{font-size: 1.2rem;}
}

@media only screen and (min-width: 768px){
  .boxPromoCTA{
    width: 70%;
    padding: calc(var(--defaultSpace) * 2.2);
  }

  .boxPromoCTA h3{margin-bottom: calc(var(--defaultSpace) * 1.8)}

  .promoPrice b{
    font-size: 3.4rem;
    color: var(--mainColor);
  }

  .promoPrice small{font-size: 1.4rem;}
}

@media only screen and (min-width: 1000px){
  .blocks{padding: 3.5rem;}

  .container{max-width: 1140px;}

  .stHeader{
    min-height: 85vh;
    /* background-image: url(../img/bg-desktop.jpg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* text-align: left; */
  }

  .stHeader::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.8)); */
  }

  h1{
    font-size: 2.6rem;
    line-height: 2.75rem;
  }

  h2{font-size: 1.65rem;}
  h2, h3{line-height: 2rem;}
  h3{font-size: 1.4rem;}

  p, ul li, ol li{
    font-size: 1.3rem;
    line-height: 1.75rem;
  }

  footer p:last-child{margin: 0 auto;}

  .btnDesk{display: block !important;}
}

@media only screen and (min-width: 1280px){
  h1{font-size: 2.8rem;}
  h2{font-size: 1.8rem;}
  h2 h3{line-height: 2.2rem;}
  h3{font-size: 1.5rem;}

  p, ul li, ol li{
    font-size: 1.35rem;
    line-height: 2.2rem;
  }
}
/*---------/BREAKPOINTS---------*/
