html,
body {
  padding: 0;
  margin: 0;
  background-color: #2476ab;
  color: white;
  text-align: center;
}

*{
  box-sizing: border-box;

  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;

  /* To avoid having lighter fonts on safari*/
  -webkit-font-smoothing: subpixel-antialiased;
}

p{
  line-height: 1.5;
}
em, b, i,
a,
span,
strong {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

#root{
  width: 100%;
  min-height: 100%;
}


.hero{
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #2476ab;
}
.inner{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  text-align: center;
  width: 80%;
  max-width: 900px;
}
.copyWrap{
  margin-top: 50px;
}
.mailToWrap{
  margin-top: 50px;
}





/* text  */
.textBase{
  margin: 0;
  padding: 0;
}

.bold{
  font-weight: bold;
}
.light{
  font-weight: 300;
}
.uppercase{
  text-transform: uppercase;
}


.size_default{
  font-size: 16px;
}
.size_xs{
  font-size: 12px;
}
.size_sm{
  font-size: 24px;
}
.size_md{
  font-size: 30px;
}
.size_lg{
  font-size: 50px;
}
.size_xl{
  font-size: 70px;
}



@media only screen and (max-width: 1024px) {
  .size_xl{
    font-size: 50px;
  }
  .size_lg{
    font-size: 40px;
  }
}


@media only screen and (max-width: 768px) {
  .size_xl{
    font-size: 33px;
  }
  .size_lg{
    font-size: 23px;
  }
}
/* end text  */



/* logo  */
.logo-link{
  display: inline-block;
}

.logoImageC{
  width: 70px;
  height: auto;
  margin-bottom: 20px;
}
.logoImageT{
  width: 200px;
  height: auto;
}
/* end logo  */


/* footer  */
.footerStyles{
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: .5;
}
.copyrightText{
  color:#ECECEC;
  text-align: center;
}
/* end footer  */
