/************************* MAIN *********************************/

/* MAIN-CONTACT */
main .mainContact {
  width: 100%;
  padding: 1rem;
  color: #888;
  /* TODO: remove */
  /* border: 1px dashed red; */
}

figure.contactUs {
  /* padding: 1rem; */
  text-align: center;
}

figure.contactUs > img {
  width: 80%;
  height: auto;
  border: 5px double rgb(71, 127, 251);
}

/* MAIN-CONTACT-INFO */

main .contactInfo {
  width: 100%;
  padding: 1rem;
  color: #888;
}

/* ADDRESS */

figure.addressImg {
  width: 90%;
  padding-top: 1%;
  padding-left: 10%;
  text-align: left;
}

figure.addressImg > img {
  width: 30%;
  height: auto;
}

main address {
  padding: 1%;
  padding-left: 20%;
  font-size: 1rem;
}

/* EMAIL */

figure.emailImg {
  width: 90%;
  padding-top: 3%;
  padding-left: 10%;
  text-align: elft;
}

figure.emailImg > img {
  width: 25%;
  height: auto;
}

div.emailAnchor {
  padding-top: 1%;
  padding-right: 1%;
  padding-bottom: 5%;
  padding-left: 20%;
  font-size: 1rem;
}

div.emailAnchor > a {
  text-decoration: none;
  color: #888;
}

div.emailAnchor > a:hover {
  text-decoration: underline;
  color: #800;
}

/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  header {
    display: block;
  }
  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .nav-bottom a {
    font-size: 0.96rem;
  }

  .rights img {
    width: 200px;
    height: auto;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  header {
    display: block;
  }

  .header {
    height: 0;
  }

  .csLogo {
    height: 100px;
    text-align: left;
  }

  .navigation {
    height: 20px;
    text-align: center;
  }

  .nav-top {
    height: 0;
  }

  .nav-bottom {
    word-spacing: 6px;
  }

  .rights img {
    width: 250px;
    height: auto;
  }
}
