.rounded-image {
    border-radius: 50%;
}

.headshot {
	border-radius: 25%; /* This makes the image appear as a circle */
	max-width: 400px; /* Adjust the width as needed */ /* Adjust the height as needed */
	object-fit: cover; /* Ensures the image covers the entire circle */
  }


nav {
    float: right;
    text-align: right;
    
	
  }

hr {
    border: none;
	border-top: 5px dashed rgb(255, 255, 255, 0.3);
    
  }

.mobile-menu {
	z-index: 4;
	position: fixed;
	top: 0;
	left: -250px; /* Start hidden off-screen */
	width: 100%; /* Adjust the width to match your hamburger icon */
	background-color: rgb(184, 134, 11);
	transition: left 0.3s ease;
  }
  
  .hamburger-icon {
	display: none;
	position: fixed;
	z-index: 999;
	padding: 20px;
	cursor: pointer;
  }
  
  .bar {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 4px 0;
  }
  
  .mobile-nav {
	display:none;
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
	margin-top: 50px;
	list-style-type: none;
	padding: 0;
  }
  
  .mobile-nav li {
	color:#fff;
	padding: 15px 20px;
  }
  
  .mobile-nav a {
	color: #fff;
	text-decoration: none;
  }
  
  @media (min-width: 320px) and (max-width: 429px) {
	.mobile-menu {
	  left: -250px; /* Hide the menu initially */
	}
	.hamburger-icon {
	  display: block;
	}
	.mobile-nav {
	  display: none; /* Initially hide the mobile-nav */
	}


  }

.fade-in {
	opacity: 0;
	transform:translate3d(0, 100%, 0);
	transition: opacity 1.5s ease-in-out, transform 1s ease-in-out;
	will-change: opacity, transform;
  }
  
  .fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
  }
  

.hero-title h1 {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    opacity: 0;
    animation: fadeIn 3s ease-in-out 0.5s forwards;
  }

  .scroll img {
    opacity: 0;
    animation: fadeIn 3s ease-in-out 1.5s forwards;
  }

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

 .loading-screen {
    position: fixed;
    background-color: rgb(28, 0, 41); 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; 
}

.loader {
    border: 20px solid #f3f3f3;
    border-top: 20px solid rgb(184, 134, 11); 
    border-radius: 100%;
    width: 100px;
    height: 100px;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 
*/
h2.heading {
	font-size: 1.5em;
}

.subtext {
	font-size: 1.5em;
}
.maintext {

	font-size: 1.2em;
}

.comparison-container {
    display: flex;
    justify-content: center; /* Horizontally center-align content */
    align-items: center; /* Vertically center-align content */
    height: 100vh; /* Set the container height to the viewport height */
}

.comparison {
    border-collapse: collapse;
    max-width: 90%;
    font-family: Arial, sans-serif;
    border: 1px solid #ddd;
    background-color: #000;
    color: #fff;
    margin: 0 auto; /* Center the table horizontally within the container */
	margin-bottom:50px;
}

.comparison th,
.comparison td {
    padding: 12px;
    text-align: left;
}

.comparison th {
    background-color: #333;
    font-weight: bold;
    color: #fff;
}

.comparison tr:nth-child(even) {
    background-color: #222;
}

.comparison tr:hover {
    background-color: #444;
}

.comparison td {
    border-top: 1px solid #ddd;
    color: #eee;
}

.comparison td:first-child {
    font-weight: bold;
}

/* CSS to make input fields and textarea full width */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
	color:#fff;
	width: 100%;
    background-color:rgb(0, 0, 0, 0.4); 
    padding: 10px;
    border: 3px solid rgb(184, 134, 11);
    border-radius: 5px;
	font-family: sans-serif; 
}

.form-group label {
    font-family: sans-serif; 
}

.contact {
	color: #fff;
	width: 100%;
	max-width: 800px;
	margin: 10% auto;
	padding: 20px;
	background-color:  rgb(255, 255, 255, 0.1);
	border-radius: 25px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contact form {
	width: 100%;
}


form {
    text-align: left;
}



input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}


.button:hover {
    background-color: #0056b3; /* Hover color */
}

a:hover{
	cursor:inherit;
	
}





.iframecontainer {
	position: relative;
	overflow: hidden;
	width: 100%;
	height:500px;

  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .iframevideo {
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
  }
.skill-mobile {
	width:100%; 
	height: 100% ;
	margin-right:auto;
	margin-left:auto;
	margin-top:auto;
	margin-bottom:auto;
	}
body {
	background-color:rgb(255, 255, 255);
	margin-top: -25px;
	margin-right: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	background-size:100%;
	background-position: center;
	
}
h3 {
	color:rgb(184, 134, 11); 
	text-align: left; 
	font-family: "sui-generis", sans-serif;
font-weight: 900;
font-style: normal;
	font-size: 1em; 
	font-weight: 100;
}

p {
    color: white;
  }
  /* Define bold for title text */
  .title {
    font-weight: bold;
	font-style: italic;
	color:rgb(184, 134, 11);
  }


.partners { 
	display: flex;
  margin-left: auto;
  margin-right: auto;
  text-align:center;
  width:100%;
  justify-content: center; 

}
.square-holder {
	text-align:center;
  padding:50px;
  float:left;
  /* border: 1px solid #cecece;*/
  align-items: center;
  display:flex;
  justify-content: center; 
 margin:0%;
  /* background-color:rgb(78, 78, 78, 0.5); */
  min-height:100px;
}

.square-holder img {
  max-width:100%;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.square-holder:hover img{
  filter:none;
}

.container-partner {
	width:100%;
	text-align:center;
	margin-bottom:20px;
}

.row {

	width:100%;
	
}


/* Container */
.container {
	width:100%;
margin-top:auto !important;
margin-bottom:auto !important;
}
/* Navigation */

.logo {
	width: 20%; /* Adjust the width for larger screens */
	float: left;
   padding:20px;
	text-align: left;
}


/* Media query for screens wider than a certain width (e.g., 768px) */
@media (min-width: 768px) {
   
}



.newnav {
    background-color: #fff; /* Set opacity by adjusting the last value (0.7 in this example) */
    overflow: hidden;
    position: fixed;
    width: 100%;
   
    z-index: 3;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 900;
font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
	
	
}

/* Hide the submenu by default */
.submenu {
    display: none;
    position: fixed; /* Use "absolute" for positioning relative to the parent item */
    background-color: #fff; /* Background color of the submenu */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Optional shadow effect */
    z-index: 3; /* Ensure the submenu appears above other content */
    
  }
  
  /* Style the submenu items */
  .submenu li {
	color: #000 !important ;
    padding: 20px;
  }

  
  
  /* Show the submenu when the parent <li> is hovered over */
  .menu-list li:hover .submenu {
    display: block;
  }

  /* Add a media query for mobile optimization */
  @media (max-width: 768px) {
    .newnav {
      
    }
  }




  header nav ul {
    list-style: none;
    float: right;
  }
  nav ul li {
    float: left;
    color:rgb(184, 134, 11) ;
    font-size: 16px;
    text-align: left;
    margin-right: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s linear;
  }
  ul li a {
    color: rgb(184, 134, 11);
    text-decoration: none;
  }
  ul li:hover a {
    color: #2C9AB7;
	cursor: pointer;
  }

  .drop {
   
    text-decoration: none; /* Remove underlines, if any */
    transition: color 0.3s; /* Add a smooth transition effect for color changes */
  }

  .drop:hover {
    color: #FF0000; /* Your desired color on hover */
  }
/*.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
}
/* Hero Section */
/*.hero {
	background-color: #000;
	padding-top: 150px;
	padding-bottom: 150px;
} */

.hero-title {
    font-family:sans-serif;
font-weight: 900;
font-style: normal;
    text-align: center;
    width: 90%;
	height:100%;
    position: absolute;
    top: 50%; /* Vertically center the element */
    left: 50%; /* Horizontally center the element */
    transform: translate(-50%, -50%); /* Center the element precisely */
    z-index: 2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll {
	text-align: center;
    width: 50%;
    position: absolute;
    top: 80%; /* Vertically center the element */
    left: 50%; /* Horizontally center the element */
    transform: translate(-50%, 0); /* Center the element horizontally, keep vertical position */
    z-index: 2;
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
    justify-content: center;
}

.hero-title h1 {
	font-weight:normal ;
	
}

h1.shout {
	color:rgb(184, 134, 11); 
	text-align: left; 
	font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 900;
font-style: normal;
	
    font-size: 4.5vw;
    letter-spacing: 5px;
    text-transform: uppercase;
    
}

h2.who {
	font-family: sans-serif;
	text-align: center;
	position: relative;
    font-size: 1.5em;
    color:rgb(184, 134, 11);
    font-weight: 800;
}

h2.heading{
	font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 900;
font-style: normal;
}

.align {
	text-align: center; /* Center text horizontally */
	display: flex; /* Enable flexbox layout */
	justify-content: center; /* Center content horizontally within the container */
	align-items: center; /* Center content vertically within the container */
	padding:10px;
	
  }

.skills {
	display:flex;
	justify-content: center;
  align-items: center;
}

.light {
	font-weight: bold;
	color: #717070;
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}
/* About Section */
.text_column {
	width: 29%;
	text-align: justify;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	
}
.about {
	position:relative;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 35px;
	display: inline-block;
	background-color: #FFFFFF;
	margin-top: 0px;
}
/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	
	text-align:center;
    align-items: center;
	justify-content:center;
	width: 100%;
	
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
	margin-left:auto;
	margin-right:auto;
}
.thumbnail {
	padding :15px;
	width: 25%;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	float:right;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #0F97D9;
	font-weight: bolder;
	font-size: 30px;
	vertical-align: center;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}


/* Parallax Section */
.banner {
	background-color: rgb(28, 0, 41);
	height: 100%;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	display:flex;
	text-align:center;
    align-items: center;
	justify-content:center;
	

}

.banner2 {
	background-color: rgb(28, 0, 41);
	height: 100%;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	display:flex;
	text-align:center;
    align-items: center;
	justify-content:center;

}





.blurb {
	
	display:block;
	color:#fff;
}
.parallax {
	width: 100%;
	color: #fff;
	padding-top: 110px;
	letter-spacing: 2px;
	margin-top: 0px;
}
.parallax_description {
	color: #FFFFFF;
}
/* More info */

.footer_column {
	width: 100%;
	text-align: center;
	padding-top: 30px;
	float: left;
}
footer .footer_column h3 {
	color: #B3B3B3;
	text-align: center;
}
footer .footer_column p {
	color: #717070;
	background-color: #FFFFFF;
}
.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}
footer .footer_column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	margin-left: 20px;
	margin-right: 20px;
}
.row2 {
	width:100%;
}
.button2 {
	width: 50%;
    background-color:rgb(184, 134, 11); /* Button color */
    color: white;
    border: none !important;
    border-radius: 25px;
    cursor: pointer;
	text-transform: uppercase;
	font-family: sans-serif;
	font-size:1em;
	font-weight: bold;
	letter-spacing: 2px;
	color: #FFFFFF;
	transition: all 0.3s linear;
	padding:10px;

}

.button {
	width: 100%;
    background-color:rgb(184, 134, 11); /* Button color */
    color: white;
    border: none !important;
    border-radius: 25px;
    cursor: pointer;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	font-family: sans-serif;
	font-weight: bold;
	letter-spacing: 2px;
	color: #FFFFFF;
	transition: all 0.3s linear;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color:#fff;
	color: #FFFFFF;
	
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.footer_banner {
	background-color:rgb(28, 0, 41);
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	
	background-size: cover;
}
footer {
	background-color:#fff;
	display: inline-block;
}
.hidden {
	display: none;
}
h1.title {
	text-align: center;
}

/* Mobile */

@media (max-width: 320px){


	h3 {

		Font-size: 1em !important;
	}
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}


	.copyright {
	font-size:1em;
}
	

	.hero-title{
		font-size:9px !important;
		
	}
	
.skill-mobile {

	margin-right:auto;
	margin-left:auto;
	}
	


.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {

	
	padding-top: 40%;
	width: 50%;
	font-size: 18px;
}


.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
}

@media (min-width: 320px)and (max-width: 768px){

	.button2 {
		width: 90%;
	
	}

	.scroll {
		width: 40%;
		top:70%;
		text-align: center;
		position: absolute;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: 2;
		font-size: .6em;
		
	}

	.maintext {
		font-size: 1em;
	}

	h1{
		font-size: 1.3em;
	}

	.hero-title h1 {
		font-weight:normal ;
		font-size: 12px !important;
	}
	.column1 ul {
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight:bold;
		text-align: left;
	
font-weight: 900;
font-style: normal;
		font-size: 1em !important; 
	}


	.column1 {
		width: 100% !important;
		padding-bottom:20px !important;
	  }
	 
	  .column3 {
		width: 100% !important;
	  }

	h2.who {
		font-family: sans-serif;
	text-align: center;
		position: relative;
		font-size: 5vw;
		color: rgb(184, 134, 11);
		font-weight: 800;
	}

	h1.shout {
		color:rgb(184, 134, 11); 
		text-align: left; 
		font-family: sans-serif;
font-weight: 900;
font-style: normal;
		
		letter-spacing: 5px;
		text-transform: uppercase;
		font-weight: 800;
	}

	.comparison {
        font-size: 11px;
    }

    .comparison th,
    .comparison td {
        padding: 8px;
    }

	.square-holder {
		
	  padding:10px;
	  float:left;
	 
	}
	
	.newnav {
       display: none !important;
    }

	h3 {

		Font-size: 1em !important;
	}
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}


	.copyright {
	font-size:1em;
}
	

	.hero-title{
		font-size:12px !important;
		
	}
	
.skill-mobile {

	margin-right:auto;
	margin-left:auto;
	}
	

.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {

	
	padding-top: 40%;
	width: 50%;
	font-size: 18px;
}


.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}

	.mobile-menu {
		left: -250px; /* Hide the menu initially */
	  }
	  .hamburger-icon {
		display: block;
	  }
	  .mobile-nav {
		display: none; /* Initially hide the mobile-nav */
	  }
	.logo {
        width: 40%; /* Adjust the width for larger screens */
        float: left;
       padding-right:2%;
		text-align: left;
    }
.maintext {

	font-size: 1em;
}

.newnav {
	display: none !important;
 }

 

}
@media (min-width: 320px)and (max-width: 429px){

	
	.button2 {
		width: 90%;
	
	}

	.scroll {
		width: 40%;
		top:70%;
		text-align: center;
		position: absolute;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: 2;
		font-size: .6em;
		
	}

	.maintext {
		font-size: 1em;
	}

	h1{
		font-size: 1.3em;
	}

	.hero-title h1 {
		font-weight:normal ;
		font-size: 12px !important;
	}
	.column1 ul {
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight:bold;
		text-align: left;
	
font-weight: 900;
font-style: normal;
		font-size: 1em !important; 
	}


	.column1 {
		width: 100% !important;
		padding-bottom:20px !important;
	  }
	 
	  .column3 {
		width: 100% !important;
	  }

	h2.who {
		font-family: sans-serif;
	text-align: center;
		position: relative;
		font-size: 5vw;
		color: rgb(184, 134, 11);
		font-weight: 800;
	}

	h1.shout {
		color:rgb(184, 134, 11); 
		text-align: left; 
		font-family: sans-serif;
font-weight: 900;
font-style: normal;
		
		letter-spacing: 5px;
		text-transform: uppercase;
		font-weight: 800;
	}

	.comparison {
        font-size: 11px;
    }

    .comparison th,
    .comparison td {
        padding: 8px;
    }

	.square-holder {
		
	  padding:10px;
	  float:left;
	 
	}
	
	.newnav {
       display: none !important;
    }

	h3 {

		Font-size: 1em !important;
	}
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}


	.copyright {
	font-size:1em;
}
	

	.hero-title{
		font-size:12px !important;
		
	}
	
.skill-mobile {

	margin-right:auto;
	margin-left:auto;
	}
	

.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {

	
	padding-top: 40%;
	width: 50%;
	font-size: 18px;
}


.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
}

@media (min-width: 321px)and (max-width: 479px){


	h3 {

		Font size: 1em !important;
	}
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}


	.copyright {
	font-size:1em;
}
	
	
	.hero-title{
		font-size:12px !important;
		
	}
	
.skill-mobile {

	margin-right:auto;
	margin-left:auto;
	}
	



.text_column {
	width: 100%;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {

	
	padding-top: 40%;
	width: 50%;
	font-size: 18px;
}


.tagline {
	margin-top: 20px;
	line-height: 22px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}
}

@media (min-width: 480px)and (max-width: 767px) {
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}

	.hero-title{
		font-size:13px !important;
		
	}

  

.text_column {
	width: 100%;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
	
}

.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 20%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
}

.footer_column {
	width: 100%;
}
}

}

/* Small Tablets */
@media (min-width: 321px)and (max-width: 429px) {

	
	.partners { 
		display: flex;
	  margin-left: auto;
	  margin-right: auto;
	
	  width:100%;
	
	
	}

	.hero-title{
		font-size:11px !important;
		
	}
	

/*.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	overflow: auto;
	display: inline-block;
	background: #000;
}
header nav ul {
	padding: 0px;
	float: none;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
}*/
.text_column {
	width: 100%;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
	
}

.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 20%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
}

.footer_column {
	width: 100%;
}
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
	
	.hero-title{
		
		font-size: 13px !important;
	}
.text_column {
	width: 100%;
}
.thumbnail {
	width: 50%;
}
.text_column {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

	
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
	z-index: 0;
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
 
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

.video-container {
	display:flex;
	position:relative;
	width:100%;
	height:100%;
	
	
}

.newfoot{
	background-color:#fff;
	display:flex;
	justify-content: center;
    align-items: center;
	width:100%;
}

.logofoot{
	margin-top:20px;
	width:100%;
	text-align:center;
	cursor: pointer;
}
.float-blurb{
	
	float:right;
}
.float-blurb h4{
	
	float:right;
}

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */

strong {
	font-size:1.1em;
	font-weight:bold;
}
.column1 {
	text-align: center;
  float: left;
  width: 50%;
  height:100%;
  
}

.column1 ul {
	letter-spacing: 2px;
	font-weight:bold;
	text-align: center;
	padding:0px !important;
	
}
p {
	font-family: 'Times New Roman', Times, serif;
}

.column1 p {
	font-family: 'Times New Roman', Times, serif;
	font-weight:normal;
	text-align: left;
}

.column3 {
	
	text-align: left;
  float: left;
  width: 33%;
  padding: 30px;
}
.column3 ul {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight:bold;
	text-align: left;
	font-family: "sui-generis", sans-serif;
font-weight: 900;
font-style: normal;
	font-size: 1.5em;
	
}



/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {







/* Create four equal columns that sits next to each other */
.column2 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column2 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
	padding:30px;
}
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column2 {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 1000px) and (min-width: 700px) {
	.column3 {
		margin-left: auto;
		margin-right: auto;
		width: 50% !important;
	  }
  }

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.column2 {
  display:none;
}
	.hidetitle {
		display:none !important;
	}
	
	.showtitle {
		display:block !important;
	}
	

  .column2 {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

.showtitle {
		display:none;
	}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 4;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0;
  width: 80%;
	max-width:700px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
 
}

.mySlides {
  display: none;
}


/* Next & previous buttons */
.prev,
.next {
	display:none !important;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
