@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);}

.targe{background: #fff;}
.targe p{color: #000;}

.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: left;}

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

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: 380px;
  display: table;
  margin: 0 auto calc(var(--defaultSpace) * 5);
}

.btnDesk{display: none !important;}

.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: 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---------*/
