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

:root {
  --mainColor: #0095ff;
  --secundaryColor: #0095ff;
  --btnsColor: #0084ff;
  --space: 0 auto 1.4rem;
  --mSpace: 0 auto 3rem;
  --sidePadding: 0.75rem;
  --fwBolder: 700;
  --fwNormal: 300;
}

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

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

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

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

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

.stHeader{
  /* background: #f8fbff; */
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  text-align: center;
}

.stHeader::after{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}

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

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

h2, h3, p, ul li, ol li{line-height: 1.6rem;}

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

h2{font-size: 1.3rem;}
h3{font-size: 1.2rem;}
p, ul li, ol li{font-size: 1.1rem;}

.email {
  width: 100%;
  max-height: 70px;
  margin-bottom: 8px;
}

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

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

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

@media only screen and (min-width: 411px){
  h1{font-size: 1.8rem;}
  h2{font-size: 1.4rem;}
  h3{font-size: 1.3rem;}
  p, ul li, ol li{font-size: 1.2rem;}
}

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

  .container{
    max-width: 800px;
  }

  .stHeader{
    min-height: 82vh;
    background-image: url(../img/bg-desktop.jpg);
  }

  .stHeader .container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .stHeader::after{
    background: rgba(0, 0, 0, 0.6);
  }

  h1{
    font-size: 2.4rem;
    line-height: 2.65rem;
  }
  h2{font-size: 1.65rem;}
  h2, h3, p, ul li, ol li{line-height: 2rem;}
  h3{font-size: 1.4rem;}
  p, ul li, ol li{font-size: 1.3rem;}
}

@media only screen and (min-width: 1280px){
  h1{font-size: 2.6rem;}
  h2{font-size: 1.75rem;}
  h3{font-size: 1.5rem;}
  p, ul li, ol li{font-size: 1.35rem;}
}
