body {
  font-family: freight-text-pro, serif;
  font-size: 21px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: #4a4a4a;
  margin: 0;
  padding: 0;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
  -webkit-animation: fadein 1s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s;
  /* Firefox < 16 */
  -ms-animation: fadein 1s;
  /* Internet Explorer */
  -o-animation: fadein 1s;
  /* Opera < 12.1 */
  animation: fadein 1s;
}

.hero {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

#nav {
  display: flex;
  height: 20%;
  margin: 0px 50px;
  background: #fff;
}

.nav-item {
  padding-top: 50px;
}

.logo {
  margin-right: auto;
  padding-top: 50px;
}

.hero-img {
  width: 100%;
  height: 80%;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0;
}

.hero-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 100px;
  text-align: center;
  font-family: freight-display-pro, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 90px;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li a {
  margin: 0 0 0 75px;
  text-decoration: none;
}

li a:hover {
  color: #9B9B9B;
}

a {
  text-decoration: none;
  color: #4a4a4a;
  -o-transition: .3s;
  -ms-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s;
}

.acgt {
  width: 100%;
  height: 8px;
  background-image: url("../images/acgt.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

hr {
  display: block;
  margin-top: 200px;
  overflow: hidden;
  border-style: inset;
  border-width: .5px;
  width: 50px;
  border-color: #9013FE;
}

h2 {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 1.3;
  color: #4a4a4a;
  margin: 25px 25px 0 25px;
}

.lead {
  font-family: freight-display-pro, serif;
  font-weight: 500;
  font-size: 36px;
  font-style: normal;
  line-height: 1.3;
  color: #4a4a4a;
  margin: 200px 25px 100px 25px;
}

.list-sm li {
  line-height: 1.7;
  margin-top: 20px;
  color: #737373;
  font-style: italic;
  font-size: 19px;
}

#slide-container {
  margin: 0 auto;
  width: 100%;
  height: 400px;
}

.slide {
  margin-left: 25px;
  margin-right: 25px;
  max-height: 100%;
}

.container {
  display: flex;
  max-width: 960px;
  margin: auto;
}

.column {
  flex-grow: 1;
  flex-basis: 0;
}

.entry {
  margin: 25px;
}

.entry-about {
  margin: -75px 25px 75px 25px;
}


.footer {
  width: 100%;
  height: 500px;
  background-color: #000;
  margin-top: 200px;
  text-align: center;
}

.with {
  top: 50%;
  transform: translateY(-50%);
  color: #9B9B9B;
  position: relative;
}

.footer a {
  color: #fff;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 1px;
}

.footer a:hover {
  color: #9013FE;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slick-prev {
  left: 25px !important;
  z-index: 1 !important;
}

.slick-next {
  right: 25px !important;
  z-index: 1 !important;
}

@media only screen and (max-width: 750px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .hero-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 50px;
    text-align: center;
    font-family: freight-display-pro, serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
  }

  .nav-item {
    display: none;
  }

  #nav {
    height: 135px;
    text-align: center;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    justify-content: center;
  }

  .logo {
    margin-right: 0;
  }

  .hero-img {
    height: calc(100% - 135px);
  }

  .entry {
    margin: 0 25px;
  }

  h2 {
    margin-top: 25px;
  }
  .column {
  margin-bottom:0px;
  }

  .subhead {
  margin-top: 25px;
  }
}
