:root {

}

body {
  font-family: 'Montserrat', sans-serif;
}

* {
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.nav {
  position: fixed;
  height: auto;
  top: 0px;
  width: 100%;
  background-color: rgb(​42, 9, 68);
  z-index: 50;
  text-align: center;
  transition: all 0.35s ease .05s;
  -webkit-transition: all 0.35s ease .05s;
  -moz-transition: all 0.35s ease .05s;
  -ms-transition: all 0.35s ease .05s;
  -o-transition: all 0.35s ease .05s;
}

.nav-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.9s ease .05s;
  -webkit-transition: all 0.9s ease .05s;
  -moz-transition: all 0.9s ease .05s;
  -ms-transition: all 0.9s ease .05s;
  -o-transition: all 0.9s ease .05s;
}

.nav-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  transition: all 0.35s ease .05s;
  -webkit-transition: all 0.35s ease .05s;
  -moz-transition: all 0.35s ease .05s;
  -ms-transition: all 0.35s ease .05s;
  -o-transition: all 0.35s ease .05s;
}

.navbtn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  float: right;
  padding: 10px;
}

.navbtn-container a{
  display: flex;
  flex-direction: row;
  position: relative;
  float: left;
  margin: 5px;
  margin-left: 20px;
  margin-right: 20px;
}

.navbtn {
  cursor: pointer;
  position: absolute;
  top: 100%;
  bottom: auto;
  right: 25px;
  font-size: 25px;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  padding: 10px;
  width: 80px;
  border-radius: 0px 0px 20px 20px;
  -webkit-border-radius: 0px 0px 20px 20px;
  -moz-border-radius: 0px 0px 20px 20px;
  -ms-border-radius: 0px 0px 20px 20px;
  -o-border-radius: 0px 0px 20px 20px;
}

.navbtn-active {
  height: 0;
}

.nav .navbtn-container a {
  font-size: 12px;
  padding: 10px;
  height: 20px;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  border-bottom: #00000000 solid 5px;
  text-decoration: none !important;
}

.nav .navbtn-container a:hover::after,
.active:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 90%;
  padding-top: 5px;
  border-bottom: 3px solid #ebe5ec !important;
  transition: all 0.35s ease .05s;
  -webkit-transition: all 0.35s ease .05s;
  -moz-transition: all 0.35s ease .05s;
  -ms-transition: all 0.35s ease .05s;
  -o-transition: all 0.35s ease .05s;
}

.nav .active:after {
  width: 50%;
}

.navbtn:hover {
  transition: all 0.35s ease .05s;
  -webkit-transition: all 0.35s ease .05s;
  -moz-transition: all 0.35s ease .05s;
  -ms-transition: all 0.35s ease .05s;
  -o-transition: all 0.35s ease .05s;
  opacity: .75;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}

.jumbotron {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 35rem;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.jumbotron .img {
  pointer-events: none;
  height: inherit;
  position: relative;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.jumbotron video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%)translateY(-50%);
  -webkit-transform: translateX(-50%)translateY(-50%);
  -moz-transform: translateX(-50%)translateY(-50%);
  -ms-transform: translateX(-50%)translateY(-50%);
  -o-transform: translateX(-50%)translateY(-50%);
}

.jumbotron .container {
  position: absolute;
  color: white;
  font-weight: 500;
  font-size: 20px;
  top: 50%;
  left: 50%;
  text-align: center;
  z-index: 3;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
}

.jumbotron .container .scripting::after {
  position: relative;
  content: "|";
  animation-name: blinking;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  font-size: xx-large;
  transition: ease-in-out 0.5s;
  opacity: 1;
}

@keyframes blinking {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.jumbotron .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0 !important;
  z-index: 2;
}

.jumbotron .fun {
  position: absolute;
  margin: auto;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 2; 
}


.wrapper {
  position: absolute;
  width: 100%;
}

.main-container {
  position: relative;
  background: white;
  margin: auto;
}

.section-container {
  position: relative;
  padding: 50px;
  overflow: hidden;
}

.section .text {
  padding-top: 20px;
  position: relative;
  text-align: center;
}

.section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.90;
  background-color: rgb(0, 0, 0);
}

.footer-text {
  position: relative;
  text-align: left;
  color: white;
}

.footer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: white;
  position: absolute;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: rgb(0, 0, 0);
}

.split {
  position: relative;
  margin: 20px 0px 20px 0px;
  background-color: rgb(0, 0, 0);
  /*background-image: linear-gradient(to right, #ffffff, #904097, #a73d57, #7d4da1c4, #41235ada, #ffffff);*/
  height: 1px;
}

.projects {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap; 
  -webkit-flex-flow: row wrap;
  justify-content: center;
}

.project {
  position: relative;
  margin: 5px;
  border: white 10px solid;
  height: 300px;
  width: 450px;
  overflow: hidden;
}

.project_overlay {
  pointer-events: none;
  position: absolute;
  transition: ease-in-out 0.25s;
  top: 50%;
  left: 50%;
  height: 150%;
  width: 150%;
  opacity: 0;
  color: white;
  background-color: rgb(0, 0, 0);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.project_text {
  pointer-events: none;
  position: absolute;
  top: 45%;
  left: 50%;
  opacity: 0;
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.projects_img {
  pointer-events: none;
  height: inherit;
  position: relative;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transition: 0.25s;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -ms-transition: 0.25s;
  -o-transition: 0.25s;
}

#scroll_to_top {
  cursor: pointer;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 100;
  text-align: center;
  font-size: 25px;
  color: black;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  width: 80px;
  border-radius: 20px 20px 0px 0px;
  -webkit-border-radius: 20px 20px 0px 0px;
  -moz-border-radius: 20px 20px 0px 0px;
  -ms-border-radius: 20px 20px 0px 0px;
  -o-border-radius: 20px 20px 0px 0px;
}

#scroll_to_top:hover {
  cursor: pointer;
  transition: all 0.35s ease .05s;
  -webkit-transition: all 0.35s ease .05s;
  -moz-transition: all 0.35s ease .05s;
  -ms-transition: all 0.35s ease .05s;
  -o-transition: all 0.35s ease .05s;
  color: #ffffff;
  background-color: rgb(0, 0, 0);
}

a {
  color: #ffffff;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:link {
  text-decoration: none;
}

a:hover {
  color: #c2b3c4;
}