body, html {
    height: 100%;
  }
  
h1 {
    font-size: 50px;
}
  
.bg {
    /* The image used */
    
  
    /* Full height */
    height: 100%;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

p {
  padding-top: 30px;
}

#nav {
    position: fixed;
    top: -60px;
    width: 100%;
    transition: top 1.0s;
    z-index: 9;
}

#icon-links{
    color: white;
    font-family: 'Montserrat', sans-serif;
    transition: ease-out;
}
#icon-links:hover{
    color: #00E5FF;
    transition: ease-in;
  }  

.logo {
    margin-left: 10px;
}

.nav-right {
    padding-left: 15px;
    padding-right: 15px;
}

.header {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: #E4E5E5;
  }
  
  /* The progress container (grey background) */
.progress-container {
    width: 100%;
    height: 8px;
    /* background: #E4E5E5; */
}
  
  /* The progress bar (scroll indicator) */
.progress-bar {
    height: 8px;
    background: #2979FF;
    width: 0%;
}

.front {
    background-color: #E4E5E5;
}

.imgbox {
    display: grid;
    height: 100vh;
    position: relative;
    left: -250px;
    text-align: center;
}

#intro {
    font-family: monospace;
    font-size: 3.5rem;
    font-weight: 900;
}

.intro-main-1 {
    font-family: monospace;
    font-size: 2rem;
}

.intro-main {
    padding-top: 20px;
    padding-bottom: 20px;
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    filter: brightness(0.9);
    margin: auto;   
}

.intro {
    position: absolute;
    left: 990px;
    top: 250px;
    width: fit-content;
}

#about {
    padding-top: 10px;
    margin-bottom: 10px;
    margin-top: 50px;
    margin-left: 70px;
    margin-right: 70px;
    text-align: center;
    line-height: 30px;
    padding-bottom: 30px;
}

.about-us {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 10px;
    font-family: 'Antonio', sans-serif;
}

hr {
    border-style: dashed;
    border-color: black;
    width: 10%;
    margin: auto;    
}

p {
    padding-top: 20px;
}

#bootstrap-overrides ul {
    float: right;
}

.carousel {
    background: #FAFAFA;
    margin-bottom: 60px;
    margin-left: 70px;
    margin-right: 70px; 
  }
  
  .carousel-cell {
    width: 66%;
    height: 500px;
    margin-right: 10px;
    background: #333333;
    border-radius: 5px;
    counter-increment: carousel-cell;
  }
  
.flickity-viewport {
    height: 500px;
    padding-top: 30px;
    background: #fff;
}  

.div-img {
    width: 100%;
    height: 100%; 
    /* max-height: 100%; */
}


.header-grid {
    margin-bottom: 100px;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 30px;
    width: 100%;
    height: 100vh;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    -ms-grid-columns: (1fr)(5);
        grid-template-columns: repeat(5, 1fr);
    grid-template-areas: "big-top big-top big-top small-top small-top" "small-middle small-middle big-middle big-middle big-middle" "big-bottom big-bottom big-bottom big-bottom big-bottom";
  }
  
  .block {
    height: 100%;
    width: 100%;
    border: 1px solid white;
    background: black;
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
  }
  
  .block:hover {
    transition: opacity 0.2s ease-in;
    opacity: 1;
  }
  
  #b1 {
    grid-area: big-top;
  }
  
  #b2 {
    grid-area: small-top;
  }
  
  #b3 {
    grid-area: small-middle;
  }
  
  #b4 {
    grid-area: big-middle;
  }
  
  .bottom-block {
    grid-area: big-bottom;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  
  #cta{
    background-color: #ff4c68;
    padding: 7% 15%;
    text-align: center;
  
  }
  .cta-head{
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.5;
  }
  #footer{
    padding-top: 2%;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
  }
  .social-icon{
    margin: 20px 10px;
  }
  .icon-links{
    color: white;
  }
  .icon-links:hover{
    color: #00E5FF;
  }    

#contact {
    color: white;
    padding-top: 10px;
    text-align: center;
    line-height: 30px;
    padding-bottom: 10px;
    background: #212529;
}  

#contacts {
    padding-top: 20px;
}

.yt-vid {
  width: 100%;
  height: 100%;
}

@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:300,400);
* {
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
section {
  position: relative;
  width: 100%;
  height: 100%;
}
section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 80%;
  background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 80%,rgba(0,0,0,.8) 100%);
  background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 80%,rgba(0,0,0,.8) 100%);
}
section {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font : normal 300 64px/1 'Josefin Sans', sans-serif;
  text-align: center;
  white-space: nowrap;
}




#thanks {
  background-color: #fff;
}
#thanks::after {
  content: none;
}
#thanks div {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
#thanks h2 {
  margin-bottom: 60px;
  color: #333;
  font : normal 300 64px/1 'Josefin Sans', sans-serif;
  text-align: center;
  white-space: nowrap;
}
#thanks p {
  color: #333;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
}
#thanks p a {
  color: #333;
  text-decoration: none;
  transition: color .3s;
}
#thanks p a:hover {
  color: #888;
}
.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  margin-left: -30px;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}

#section10 a {
  padding-top: 60px;
}
#section10 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
#section10 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}