/* GLOBAL */
@font-face {
  font-family: 'Futura';
  src: url('../font/futuralightbt.ttf') format('ttf');
}
body {
    overflow-x: hidden;
    font-family: "Quicksand", sans-serif;
}
.page-section {
    height: 100vh;
}
hr.blue{
    background-color: #526EFC;
    color: #526EFC;
    height: 5px;
    width: 100px;
    border-radius: 50px;
    margin-top: 0;
    opacity: 1;
    margin: 20px auto 20px;
}
.display-6 {
    font-size: 2rem;
}
@media screen and (max-width: 768px) {
	.display-6 {
	    font-size: 1.2rem;
	}
}
/* INTRO VIDEO */
#intro {
    height: 100vh;
    width: 100%;
    /* background-image: url('./assets/img/Xeoair_1.gif');
    background-size: cover;
    background-position: center center; 
    animation-name: fadeOut;
    animation-duration: 1s;
    animation-delay: 6s;
    */
    background-color: #131313;
    position: relative;
    z-index: 999;
}
@keyframes fadeIn {
    0%   {opacity: 0%;}
    100% {opacity: 100%;}
}
#intro video {
   height: 110vh;
   width: 100vw;
   margin: 0 auto;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content {
	opacity: 0;
	position: absolute;
	bottom: 0;
	/*background: rgba(0, 0, 0, 0.5); */
	color: #f1f1f1;
	width: 100%;
  	padding-bottom: 50px;
  	text-align: center;
  	margin: 0 auto;
  	animation-name: fadeIn;
  	animation-duration: 1s;
  	animation-delay: 6s;
}



#intro-down-icon {
	width: 40px;
	margin-top: 20px;
	opacity: 0.2;
	
}
#intro-down-icon:hover{
	width: 50px;
	margin-top: 20px;
	opacity: 1;
	
}			

/* SECTION - FADE DOWN */
#fade-down {
	height: 200px;
	background: rgb(2,0,36);
	background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(19,19,19,1) 80%);
	position: relative;
	z-index: 9;
}

/* SECTION - DRONE VIDEO */
#drone-video {
	background-color: #0E56A4;
	margin-top: -250px;
}
#drone-video video {
   height: 100vh;
   width: 100vw;
   
}

#droneVideo {
  position: relative;
  right: 0;
  bottom: 0;
  transform: scale(1.2);
  min-width: 100%;
  min-height: 100%;
}

/* FOOTER */
#footer {
    background-color: #000;
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}
#footer #logo {
    margin-bottom: 20px;
    width: 200px;
    margin-left: -12px;
}
#footer p,
#footer h5 {
    color: #ffffff;
}
#footer a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

#footer #social {
    display: flex;
    justify-content: center;
}
#footer #social a {
    font-size: 1.5rem;
    color: #526EFC;
    margin: 40px 10px 0;
}

#copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding-top: 100px;
}