html,
body {
  background-color: #fcfcfc;
  color: #636b6f;
  font-family: 'Nunito', sans-serif;
  font-weight: 200;
  font-size: 18px;
  height: 100vh;
  margin: 0;
}

.navbar {
  font-size: 18pt;
}

.navbar-brand {
  font-size: 22pt;
}

.bg-gl-dark {
  background-color: #36454f;
}

.bg-gl-blue {
  /* background-color: #A9BCD0; */
  background-color: #b8daff;
}

.nav-link-special {
  background-color: #7f888f;
  color: white;
}

.nav-link.active {
  border-bottom: 1px solid;
}

.nav-link:hover {
  border-bottom: 1px solid;
}

.footer {
  color: white;
}

.vh-8 {
  min-height: 8vh;
}

.vh-92 {
  height: 92vh;
}

.vh-10 {
  min-height: 10vh;
}

.main-title {
  /* background: rgba(252, 252, 252, 0.85); */
  background: rgba(220, 220, 220, 0.75);
  padding: 1em;
  border-radius: 5px;
  margin: 0 1em;
  height: max-content;
  margin-top: 4em;
}

.index-content {
  background: url("../images/worldswarmup.jpg") no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #363b3d;
  text-decoration: none;
}

a.bold {
  color: #363b3d;
  font-weight: 600;
}

a.bold:hover {
  text-decoration: underline;
}

a.main-link {
  font-size: 14pt;
}

.container.news-container {
  max-width: 960px;
}

.container > p {
  font-size: 14pt;
}

.img-container {
  position: relative;
  width: 60%;
}

.img-container > img {
  display: block;
  width: 100%;
  height: auto;
}

.img-overlay {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #36454f;
}

.img-container:hover .img-overlay {
  opacity: 0.8;
}

.text {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

a {
  color: #363b3d;
  font-weight: 600;
}

a.icon {
  color: white;
}

a.icon:hover {
  color: #7f888f;
}

b, strong {
  font-weight: 700;
}

.article {
  max-width: 750px;
}

.nav-link {
  font-weight: normal;
}

.navbar-brand {
  font-weight: normal;
}

/*****************************
*       Media Queries        *
******************************/

@media only screen and (max-width: 992px) {
  /*.nav-link-special.btn {*/
  /*  margin-top: 1em;*/
  /*}*/

  .img-container {
    position: relative;
    width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  .img-container {
    position: relative;
    width: 100%;
  }
}

/*****************************
*       CSS Animations       *
******************************/

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.main-title {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
