html {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: white;
  background-color: #040505;
}

h1.title {
  font-size: 5rem;
  animation: fadeIn 4s;
  -webkit-animation: fadeIn 4s;
  -moz-animation: fadeIn 4s;
  -o-animation: fadeIn 4s;
}

p {
  font-family: "Syne Mono";
  font-size: 2rem;
}

p.headinfo {
  margin-top: 5rem;
  text-transform: uppercase;
}

p.caps {
  text-transform: uppercase;
}

p.followmsg {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 1.5rem;
  padding: 0;
  margin: 0;
}

h1 {
  font-family: "Syne", "Arial", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-size: 5rem;
  margin-top: 4%;
  margin-bottom: 40px;
}

h2 {
  font-family: "Syne", "Arial", sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
}

h3 {
  font-size: 2.5rem;
  font-style: italic;
  padding: 10px;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  margin-bottom: 25px;
}

h4 {
  margin-top: 10px;
  padding-top: 10px;
}

button {
  margin: 25px;
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.navbar {
  margin-bottom: 0;
  background-color: #040505 !important;
  z-index: 9999;
  border: 0;
  font-size: 12px !important;
  letter-spacing: 4px;
  border-radius: 0;
}

.navbar li a, .navbar .navbar-brand {
  color: #fff !important;
  height: 100px;
  line-height: 100px;
}

.navbar-nav li a:hover, .navbar-nav li.active a {
  color: #21a3db !important;
  text-decoration: underline !important;
  background-color: #040505 !important;
}

.navbar-default .navbar-toggle {
  color: #fff !important;
  background-color: #272022 !important;
}

a img {
  padding-top: 10px;
  object-fit: contain;
}

#top-portion {
  margin-top: 100px;
}

.container-fluid {
  padding: 60px 50px;
}

.bg-grey {
  background-color: #16181c;
}

.circle-imgs img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
}

.thumbnail {
  padding: 0 0 15px 0;
  border: none;
  border-radius: 0;
  margin: 5px;
}

img:hover {
  opacity: 0.5;
}

.thumbnail:hover {
  box-shadow: 5px 0px 40px rgba(0, 0, 0, .2);
}

.carousel-control.right, .carousel-control.left {
  background-image: none;
  color: #26B1E8;
}

.carousel-indicators li {
  text-decoration: underline;
}

.carousel-indicators li.active {
  text-decoration: underline;
}

.item h4 {
  font-size: 19px;
  line-height: 1.375em;
  font-weight: 400;
  font-style: italic;
  padding: 10%;
}

.item span {
  font-style: normal;
}

.slideanim {
  visibility: hidden;
}

.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

footer.container-fluid {
  background-color: black;
  padding: 40px 0 20px;
}

footer a i {
  color: #fff;
  transition: color 0.3s;
  font-size: 2.5rem;
  margin-left: 20px;
  border: none;
}

footer a:hover i {
  color: #E1306C;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

@media screen and (max-width: 1024px) {
  .col-sm-4 {
    text-align: center;
    margin: 25px 0;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1.5rem;
  }

  .container-fluid {
    padding: 20px;
  }
}
