html {
  font-family: 'Barlow Semi Condensed', sans-serif;
}


/* BEGIN HEADER AND NAVIGATION */

body > label[for="hdr-nav"] {
  position: fixed;
  top: .7rem;
  left: .7rem;
  cursor: pointer;
  z-index: 9999;
  transition-property: all;
  transition-duration: 500ms;
  transition-timing-function: ease;
}

body > label > .icon-plus_sign {
  fill: #14568c;
  font-size: 1.4rem;
}

/*begin control show-hide of sidebar*/

body > input[type="checkbox"] {
  display: none;
}

body > input#hdr-nav:checked ~ header {
  left: 0;
  z-index: 10;
}

body > input#hdr-nav:checked + label {
  transform: rotate(45deg);
  left: 13rem;
}
/*end control show-hide of sidebar*/

body > header {
  position: fixed;
  top: 0;
  left: -18rem;
  width: 16rem;
  height: 100vh;
  border-right: 1px solid darkgray;
  background-color: rgba(214, 214, 214, 0.7);
  transition-property: all;
  transition-duration: 500ms;
  transition-timing-function: ease;
  box-shadow: 1px 0 3px gray;
  z-index: 1;
  
}

header > h1 {
  display: none;
}

header > nav {
  position: absolute;
  top: 4rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  
}

header > nav > a {
  display: flex;
  width: 100%;
  padding: 2rem 1.5rem;
  font-size: 1.7rem;
  
}

header > nav > a:hover {
  background-color: rgba(255, 0, 0, 0.25);
}

/* END HEADER AND NAVIGATION */


body > main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient( rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)), url("../img/pexels-photo-461077.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

body > main > h1 {
  font-size: 2rem;
  padding-top: .7rem;
  color: whitesmoke;
}

body > main > h3 {
  max-width: 768px;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.2em;
  color: whitesmoke;
}

.box {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  width: 100%;
  padding: 1rem;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
}

.content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-uniF2C0, .icon-_462, .icon-search {
 width: 6rem;
 height: 6rem;  
 padding-bottom: .7rem; 
 fill: #14568c;
 
}

.box h3 {
  font-size: 1.7rem;
  padding-bottom: .7rem;
  text-transform: uppercase;
}

.box p {
  font-size: 1.3rem;
  line-height: 1.2em;
  text-align: left;
  width: 100%;
}

.service-list, .ext-links {
  font-size: 1.3rem;
  padding: .7rem 0;
  width: 100%;
  color: #14568c;
}

.service-list:hover, .ext-links:hover {
  /*color: rgb(255, 0, 0);*/
  text-decoration: underline;
}

footer {
  width: 100%;
  height: 18rem;
  background-color: rgba(214, 214, 214, 0.7);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 1.1rem;
  
}

footer h1 {
  font-size: 2rem;
  font-weight: 700;
}

.info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: .7rem;
  
}

.icon-home, .icon-mobile_phone, .icon-phone, .icon-envelope {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  padding-right: .3rem;
}