@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6,ul,li,a,input,textarea,p,body,span {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  height: auto;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  color: #232a2f; /* Hades grey */
}
p {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
}
h1 {
  font-weight: 400; /* Regular */
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
}
h2 {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 10px;
}
h3 {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 10px;
}
h4 {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 10px;
}
/* unvisited link */
main a:link {
  color: #232a2f; /* Hades grey */
}
/* visited link */
main a:visited {
  color: #4d8af1; /* Hermes blue */
}
/* mouse over link */
main a:hover {
  color: #61d2cc; /* Poseidon teal */
}
/* selected link */
main a:active {
  color: #61d2cc; /* Poseidon teal */
  text-decoration: underline;
}
/* Top Nav */
html {
  scroll-behavior: smooth;
}
header {
  box-sizing: border-box;
  margin: 10;
  padding: 30px 7%;
  background-color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 2px solid #ebeef0; /* Zeus grey */
}
header li, a, button {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 16px;
  letter-spacing:-0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #232a2f; /* Hades grey */
}
.logo {
  cursor: pointer;
  display: block;
  margin-right: auto;
  min-width: 240px;  /* I ADDED */
}
.logo h1 {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 24px;
  line-height: 22px;
  text-transform: uppercase;
  color: #232a2f; /* Hades grey */
}
.logo h1 span {
  margin-left: 1px;
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  list-style: none;
}
.nav-links li {
  display: inline-block;
  padding: 0px 20px;
}
.nav-links li a {
  opacity: 0.4;
}
.nav-links li a:hover {
  opacity: 1;
}
.nav-links li a:active {
  text-decoration: underline;
  color: #61d2cc; /* Poseidon teal */
}
.social-links {
  margin-left: 20px;
}
.social-links a {
  padding: 9px 6px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #232a2f; /* Hades grey */
  transition: 0.4s ease 0s;
}
.social-links a:hover {
  color: #61d2cc; /* Poseidon teal */
}
.social-links a:hover > i {
  transform: scale(1.2);
}
.social-links a:active {
  color: #4d8af1; /* Hermes blue */
}
.social-links a:active > i {
  transform: scale(1.2);
}
/* Home Page */
main {
  margin: 0 auto;
}
img {
  display: block;
  width: 100%;
}
#photo-gallery {
  max-width: 900px;
  margin: auto;
}
#portfolio-gallery {
  max-width: 1200px;
  margin: inherit;
}
#title {
  padding: 1rem;
  text-align: center;
  background: #fff;
}

/* TEAL DIVIDER
#title span {
  display: block;
  width:35px;
  height: 5px;
  border-radius: 50px;
  background: #61d2cc; /* Poseidon teal */
#title a {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Medium */
  text-decoration: underline;
  text-transform: none;
  color: #4d8af1; /* Hermes blue */
}
#title h1 {
 font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
 font-weight: 500; /* Medium */
 font-size: 28px;
 letter-spacing:0.04em; /* Equivalent to Tracking:40 (40/1000) */
 text-decoration: none;
 color: #232a2f; /* Hades grey */
 /* padding-top: 0.6rem; */
 display: inline-block;
}
#title h2 {
 font-family: 'Roboto', 'Helvetica', Arial, sans-serif;
 font-weight: 500; /* Medium */
 font-size: 16px;
 letter-spacing:0.15em; /* Equivalent to Tracking:150 (150/1000) */
 text-transform: uppercase;
 text-decoration: none;
 color: #7b7f82; /* Hades grey at 60% */
 padding-top: 0.6rem;
 display: inline-block;
}
#title h5 {
  padding: 0.6rem;
}
#title p {
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 300; /* Light */
  font-size: 18px;
  line-height: 30px;
  letter-spacing:0.05em; /* Equivalent to Tracking:50 (50/1000) */
  color: #232a2f; /* Hades grey */
  padding: 0.6rem;
  padding-bottom: 1.2rem;
  text-align: left;
}
#title p > a {
  font-size: 18px;
  line-height: 30px;
  letter-spacing:0.05em; /* Equivalent to Tracking:50 (50/1000) */
}
#icon img {
  height: 95px;
  width: 95px;
  padding-bottom: 0.5em !important;
  display: inline-block;
}
#portfolio-gallery h5 > a {
  font-size: 18px;
  line-height: 30px;
  letter-spacing:0.05em; /* Equivalent to Tracking:50 (50/1000) */
  text-transform: none;
  font-weight: 500; /* Medium */
  text-decoration: underline;
  text-transform: none;
  color: #4d8af1; /* Hermes blue */

}
.credits {
  margin-bottom: 2.5em;
  padding: 1em;
  column-count: 3;
  column-gap: 2em;
}
.credits h5 {
  text-transform: uppercase;
}
.credits li {
  margin-bottom: .5em;
}
.credits li > ul > li{
  margin-bottom: 0;
}
.caption {
  color: #232a2f; /* Hades grey */
  padding: 1.5rem;
  text-align: center;
}
.caption h5 {
  padding-top: 1.5em;
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 500; /* Semi-Bold */
  font-size: 18px;
  line-height: 30px;
  letter-spacing:0.04em; /* Equivalent to Tracking:40 (40/1000) */
}
#portfolio-gallery .caption {
  padding: 1.5em;
}
#portfolio-gallery img {
  padding-bottom: 3em;
}
#about {
  max-width: 1200px;
  margin: auto;
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .left-side {
  position: relative;
  width: 250px;
}
#about .left-side video {
  width: 80%;
  height: 100%;
}
#about .right-side {
  position: relative;
  width: 400px;
  margin-top: 100px;
  margin-left: 30px;
}
#about .right-side h1 {
  position: relative;
  margin-top: -100px;
  margin-bottom: 10px;
}
::selection {
  background: #b1ebe5; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #b1ebe5; /* Gecko Browsers */
}
#breakdown {
  max-width: 800px;
  margin: auto;
}
/* Footer */
footer {
  box-sizing: border-box;
  margin: 0;
  background-color: #f6f7f8; /* Cronos grey */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 2px solid #ebeef0; /* Zeus grey */
  text-align: left;
}
footer .footer-text {
  display: block;
  margin-right: auto;
}
footer .footer-text h1 {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  font-family: 'Roboto', 'Gotham', 'Arial', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 14px;
  line-height: 17px;
  letter-spacing:-0.5px;
  text-transform: capitalize;
  text-decoration: none;
  color: #232a2f; /* Hades grey */
}
.footer-social-links {
  margin-left: 20px;
}
.footer-social-links a {
  padding: 9px 6px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: #232a2f; /* Hades grey */
  transition: 0.4s ease 0s;
}
.footer-social-links a:hover {
  color: #61d2cc; /* Poseidon teal */
}
.footer-social-links a:hover > i {
  transform: scale(1.2);
}
.footer-social-links a:active {
  color: #4d8af1; /* Hermes blue */
}
.footer-social-links a:active > i {
  transform: scale(1.2);
}
.to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 8px;
  right: 25px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  color: #232a2f; /* Hades grey */
}
.to-top a {
  padding: 5px 7px;
  opacity: 0.8;
  border-radius: 3px;
}
.to-top a:hover {
  background-color: #61d2cc; /* Poseidon teal */
  color: white;
  opacity: 1;
  transition: 0.4s ease 0s;
}
/* Interior Pages */
.wrapper {
  margin: 0 auto;
  width: auto;
}
video {
  width: 100%;
}
.videowrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0px;
}
.videowrapper iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
}


/*Screen Sizes 500px and Up*/
@media(min-width: 500px) {
  .image {
    max-width: 230px;
    margin: auto;
    margin-top: 0px;
  }
  #photo-gallery img {
    border-radius: .5rem;
  }
  footer {
    padding: 20px 7%;
    text-align: left;
  }
  .footer span {
    margin-left: 0px;
  }
  .caption {
    padding: 0;
  }
  .image img {
    margin-top: 50px;
  }
  .caption h4 {
    padding-top: 15px;
    padding-bottom: 12px;
    color: #232a2f; /* Hades grey */
  }
  .caption h5 {
    padding-bottom: 25px;
    padding-top: 0em;
  }
  #photo-gallery {
    padding-top: 50px;
    color: #232a2f; /* Hades grey */
  }
  #thumbnails {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
  }
  /*
  a:hover img {
    max-height: 120px;
  }
  */
}
