/* =================

author: Dixsept
email: hello@dixse.pt
website: dixse.pt
  
================= */

/* * { box-sizing: border-box; } */
/* html, body { min-height: 100vh; margin: 0; } */

@font-face {
  font-family:"Varela Round Regular";
  src:url("../assets/fonts/VarelaRound-Regular.woff2") format("woff2"),
  url("../assets/fonts/VarelaRound-Regular.woff") format("woff"),
  url("../assets/fonts/VarelaRound-Regular.otf") format("opentype");
  font-style:normal;;
  font-display:swap;
}
      
body {
  font-family:"Varela Round Regular";
  font-weight: 400;
  color: #5DC4E9;
}

div,
html,
body,
nav,
header,
hgroup,
footer,
section,
article {
position: relative;
display: flex;
flex-direction: column;
flex-shrink: 0;
}

#logo-container {
  width: 300px;
  height: 100px;
  background-image: url('../assets/img/logo-desktop.svg');
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  #logo-container {
    width: 217px;
    height: 150px;
    background-image: url('../assets/img/logo-tablet-mobile.svg');
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
  }
}
  
#background-container {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center bottom;
}

@media screen and (max-width: 980px) {
  .this-is-ios #background-container {
    height: calc(100vh - calc(100vh - 100%))
  }
}

#content-container {
    height:80vh;
    width: 58vw;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 1441px)  {
  #content-container {
   width: 30vw;
  }

  #text-container {
    margin: 60px 0;
  }
}

@media screen and (min-width: 981px) and (min-height: 751px) {
  #content-container {
    max-height:750px;
  }
}

#content-container p {
  text-align: justify; 
  text-align-last: center;
}

#content-container a {
  color: #5DC4E9;
}

#logo-container img {
    max-width: 100px;
    margin: 0 auto;
}

#address-container,
address {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

@media screen and (max-width: 980px) {
  #address-container {
    padding-bottom: 40px;
  }

  #content-container {
      padding: 0 40px 0;
      width: 100%;
      text-align: center;
      flex-direction: column;
      justify-content: center;
  }

  #content-container p {
    margin: 20px 0;
    padding: 0 20px;
    text-align: center;
  }
}