/* Set full page height */
html, body {
  height: 100%;
}

/* Set full page width */
body {
  display: flex;
  padding-bottom: 100px;
}

/* Navigation bar styles */
header {
  width: 10%;
  padding: 35px;
}

.logo img {
    /* width: 100% !important; */
    width: 90px;
  }
  
.nav {
  list-style-type: none;
  align-items: center;
}

.title h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;

}

.title a:hover {
  font-weight:bold;
}

.title a {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #000;
  text-decoration: none;
}


/* Gallery styles */
.container {
  width: 90%;
  margin: 0 auto;
  padding: 50px;
}

.carousel ul {
  list-style:none;
  padding-left:0;
}

h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;

}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;

}

h3 {
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  font-size: 13px;
  line-height: 13pt;
  color: #000;
}

h3:hover {
  color: #a4443c;
}

.research p {
    font-size: 13px;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #000;
  text-decoration: none;
}

.social-icons {
  display: flex;
  align-items:center;
}

 .social-icons img {
  margin-top:20px;
  margin-right:33px;
  display: inline-block;
  vertical-align:top;
  width: 10px;
}


/* Style a gallery with 4 columns */
#gallery {
  line-height:0;
  -webkit-column-count: 4;
  -webkit-column-gap:   20px;
  -moz-column-count:    4;
  -moz-column-gap:      20px;
  column-count:         4;
  column-gap:           20px;
}

/* Style the images inside the grid */
#gallery img {
  width: 80% !important;
  height: auto;
  padding: 5px;
  margin-bottom: 15px;
}

/* MOBILE VERSION */
@media (max-width: 800px) {
  /* Gallery */
  #gallery {
    line-height:0;
    -webkit-column-count: 1;
    -webkit-column-gap:   15px;
    -moz-column-count:    1;
    -moz-column-gap:      15px;
    column-count:         1;
    column-gap:           10px;
  }

  #gallery img {
  width: 100% !important;
  height: auto;
  padding: 5px;
  margin-bottom: 15px;
}

  /* Container */
  body {
    display: block;
  }

  .container {
    padding-top:0px;
    padding-left:0px;
    padding-right:0px;
  }


  /* Navigation Bar */
    .nav {
      display:flex;
      padding-left: 50%;
    }

   .logo img {
     width: 40px;
  }

  .title h1 {
    font-size: 13px;
    padding-left:30%;
  }

  .title a {
    font-size: 11px;
    padding-left:25px;
  }

  header {
   padding: 0px;
  }

  .pages {
    display:flex;
    padding-left:10px;
  }
  .social-icons {
      display: none;
  }

  .social-icons img {
      display: none;
  }
}
