@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');


:root{
  --orange:#DAA520;
}

html, body {
	/*font-family: 'Montserrat', sans-serif; */
	margin: 0;
	overflow-x: hidden;  /* stops any border problems, quite important */
}


/* ====== transitioning navbar stuff ======== */

.navbar, .navbar2 {
	font-weight: 900; 
	font-size: 0.9rem; /* 1rem = 16px which is the inherent font size in Google Chrome*/
	letter-spacing: 0.1rem; /* space out the letters a bit */
	background: rgba(0, 0, 0, 0.99)!important /* rbg all zero = black, also have 1% transparency */
}

/*Currently Disabled the transparent navbar effect*/
/*
.navbar-transparent {
	font-weight: 900; 
	font-size: 0.9rem; 
	letter-spacing: 0.1rem; 
	background-color: transparent!important;
	transition: background-color 1s ease 0s; 
}

.navbar-transparent:hover {
	background: rgba(0, 0, 0, 0.9)!important 
}

.fadeIn { 
	transition: background-color 1s ease 0s;
}*/




/* ======= end of transition navbar stuff ======= */



/*=== general navbar stuff ====*/
.navbar-brand {
	font-family: 'Exo 2', sans-serif;
	color: var(--orange)
}

.nav-link {
	font-family: 'Exo 2', sans-serif;
	font-size: 1.2rem;
}


.navbar .logo {
  font-size: 1.5rem;
  color: var(--orange);
}


ul.navbar-nav li a:hover{
  color:var(--orange);
  text-decoration: none;
}

.navbar-custom {
  background-color: black;
}


/* change the color of hovered links */
.navbar-custom .collapse .nav-item:hover .nav-link {
  color: white;
}

/* change the color of active link */
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--orange);
}

/* change the color when hovering over active link */
.navbar-dark .navbar-nav .nav-link.active:hover {
  color: var(--orange);
}


/*==== end of general navbar stuff ====*/




/* ==== top carousel ====== */ 

.col-lg-12 .video-container video {
 	/* Make video to at least 100% wide and tall */
	min-width: 100%; 
 	min-height: 100%; 

 	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
 	width: auto;
 	height: auto;

 	/* Center the video */
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%,-50%);
}


.carousel-item {
	height: 100vh;
	width: 100%;
}



div.carousel-caption h1 {
	padding-bottom: 5rem; /*was set to 6.2rem*/

	font-family: 'Exo 2', sans-serif;
	font-weight: 700; /* can also use 700, bold, etc */
	font-size: 3.2rem;
	line-height: 6.5rem;
	color: white;
	justify-content: center;
	text-align: center;
	
  text-shadow: 0.1rem 0.1rem 0.8rem black; /* horizontal, vertical, blur radius, color */

}



}

@media (min-width: 1440px) { 
	div.carousel-caption h1 {
	font-size: 9.9rem;
	line-height: 8rem;
	}
}

@media (max-width: 768px) { 
	div.carousel-caption h1 {
	font-size: 4.9rem;
	line-height: 6.5rem;
	}
}


@media (max-width: 576px) { 
	div.carousel-caption h1 {
	font-size: 3.9rem;
	line-height: 6.5rem;
	}
}

/*===== End of Top Carousel ======*/






/*========== About Section ==========*/

#about .container-fluid {
	padding-top: 4.65rem;
	padding-bottom: 6.6rem;
	line-height: 4rem;
	background-color: #282828;
	margin-bottom: 2rem;
	margin-right: 0;
	margin-left: 0;
}

#about .container-fluid h1, #about .container-fluid p {
	color: white;
}


	/* adjusts the space between the jumbotron and the next section */
section#about {
	margin-bottom: -2rem;
}


#abouthr {
	border-top-color: white;
	width: 25%
}

@media (max-width: 765px) { 
	#about .container-fluid {
	line-height: 3.9rem;
	}
}


/*========= End of about section ============*/






/*========== Split Carousel ========*/

.split-test .col-lg-8 {
	padding: 0;
}

.split-test .col-lg-4 { /* padding for text col */
	padding: 3.5% 5%;
}

	/* this carousel-item styling is EXTREMELY important */
.carousel-item {
	height: 100vh;
	width: 100%;
}


	/* Absolutely essential to get any col-lg-8 video working on larger screens */
.col-lg-8 .video-container video {
 	/* Make video to at least 100% wide and tall */
	min-width: 100%; 
 	min-height: 100%; 

 	/* Setting width & height to auto prevents the browser from stretching or squishing the video */
 	width: auto;
 	height: auto;

 	/* Center the video */
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	transform: translate(-50%,-50%);
}



.button1, .button2, .button3, .button4, .button5 {
/*margin-top: 2rem;
*/
}


@media (min-width: 992px) { /* add some padding to the h1 so it looks better on larger devices */
	.col-lg-4 h1 {
	padding-top: 1rem;
	}
}


@media (max-width: 991px) { /* makes the text in the 'services' section sit under the videos, on tablet & mobile devices */
	.col-lg-4 {
		order: 2;
	}
}


/*========== End of Split Carousel ========*/








/*========= Contact ===========*/

#contact {
	margin-top: -1px;
	padding-top: 6.65rem;
	padding-bottom: 6.9rem;
	background-color: #282828;
}

#contact p, #contact div, #contact a {
	color: white;
} 

@media (min-width: 768px) and (max-width: 992px) { 
	#contact {
	padding-top: 7.75rem;
	padding-bottom: 9rem;
	}
}

@media (min-width: 993px) { 
	#contact {
	padding-top: 7.85rem;
	padding-bottom: 9.1rem;
	}
}


#contacthr {
	border-top-color: white;
	width: 25%
}



/*======== slide in elements ============= */

.slideanim {visibility:hidden;}  /* add the class 'slideanim' to whatever content you want to slide into the screen */
.slide {
  /* The name of the animation */
  animation-name: slide;
  -webkit-animation-name: slide; 
  /* The duration of the animation */
  animation-duration: 1s; 
  -webkit-animation-duration: 1s;
  /* Make the element visible */
  visibility: visible; 
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@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%);
  }
}







/*==== OnOff Button =====*/

.darkBg {
	background-color: #282828;
}

.white-text {
	color: white;
}



