@charset "utf-8";
/* CSS Document */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.header, .main, .nav, .aside, .footer {
  flex: 1 100%;
}

body 
	{
	font-family: "Roboto", sans-serif;
  	font-weight: 400;
	background-color: black;
	height: auto; 
	}  

#header
	{
	height: auto;
	width:100%;
	position:relative;
	text-align:center;
	max-width:100%;
	}
	
img
	{
	width: 100%;
	height: auto;
	/* max-height: 800px; */
	margin: 0 auto;
	text-align: center;
	}

.push 
	{
	border-bottom: medium black solid;
	height: 4em;
	background-color: black;
	}
	
* {
  box-sizing: border-box;
}

.wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;  
  
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  
  font-weight: bold;
  text-align: center;
  }

.wrapper > * {
  padding: 10px;
  flex: 1 100%;
}

.mainPage /*#### NOT USED ####*/
	{
		padding-left: 20px;
		padding-top: 5px;
	height:800px;
	background-color:#C12F31;
		max-width: 500px;
	}

.footer 
	{
  	
  	font-size: medium;
  	background-color: #FBD6AC;
  	text-align: center;
  	color: black;
	}


/*  Nav Menu */




/* Add a black background color to the top navigation */
.topnav {
  background-color: #000000;
  overflow: hidden;
  border-bottom: medium;
	border-bottom-color: antiquewhite;
	border-style: solid;
	
	
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  align-content: center;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
	
}


/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #B16C15;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* ########  2 Column on index page  ######## */
/* Create two unequal columns that floats next to each other */

.column1 {
  	float: left;
	padding: 5px;}

	
.left1 {
  	width: 20%;
	padding-right: 5px;}

.right1 {
  	width: 80%;
}

/* Clear floats after the columns */
.row1:after {
  content: "";
  display: table;
  clear: both;
}

/* ########  GRID  ######## */

[class*="col-"] {
  float: left;
  padding: 15px;
  color: #ffffff;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 100;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

html {
  font-family: "Lucida Sans", sans-serif;
}

.top_grid {     /*#### NOT USED ####*/
  background-color: #C67814;
  color: #FFFFFF;
  padding: 5px 5px 5px 25px;
}

.menu ul {      /*#### NOT USED ####*/
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #0099cc;
}

span { 	font-size: 18px;
		display:inline-block;
		color:beige;}
span b {font-size: 80%; font-weight: normal; color: #A9A0A0}

.contact-container{     /*#### NOT USED ####*/
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	background-color: aliceblue;
}

.contact-left{  /*#### NOT USED ####*/
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.contact-left{  /*#### NOT USED ####*/
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
}

.contact-left-title h2{/*#### NOT USED ####*/
	font-weight: 600;
	color: #B16C15;
	font-size: 40px;
	margin-bottom: 5px;
}

.contact-left-title hr{/*#### NOT USED ####*/
	border: none;
	width: 120px;
	height: 5px;
	background-color: #B16C15;
	border-radius: 10px;
	margin-bottom: 20px;
}

.contact-inputs{/*#### NOT USED ####*/
	width: 400px;
	height: 50px;
	border: none;
	outline: none;
	padding-left: 25px;
	font-weight:500;
	color: #666;
	border-radius: 50px;
}

.contact-left textarea{/*#### NOT USED ####*/
	height: 140px;
	padding-top: 15px;
	border-radius: 20px;
}

.contact-inputs:focus{
	border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
	color: #a9a9a9;
}

.contact-left button{
	display: flex;
	align-items: center;
	padding: 15px 30px;
	font-size: 16px;
	color: #fff;
	gap: 10px;
	border: none;
	border-radius: 50px;
    background: linear-gradient(270deg, #504035, orange);
	cursor: pointer;
}

.contact-left button img{
	height: 15px;
}

.contact-right img{
	width: 500px;
}

/* return from contact form */
.landing-center{
	padding-top: 50px;
	height: 200px;
	color: #ff994f;
	text-align: center;	
}

/* crew contact */
.row{
	padding: 0px;
	background: lightgray;
	margin: 1px;
}

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

[class*="col-"] {
  float: left;
  padding: 2px;
}	

.front-container{
    border-color: red;
    display: grid;
    background-color: lightgray;
    color: black;
    padding: 5px 5px 5px 5px;
	font-family: "Roboto", sans-serif;
  	font-weight: 400;
    float: left;
  	border: 4px solid white;
  	border-radius: 5px;
  	margin: 30px 30px 30px 30px;
  	height: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-family: "Source Sans Pro", sans-serif;
    border: 2px solid #627f09;
    margin: 0 5px 0px 10px;
    font-weight: 400;
    font-size: .8em;
    padding-left: 3px;
	border-radius: 4px;
	color: black;
	background-color: #FCF0D4;
	height: 30px;
  }
  
  input[type=text]:focus {
  background-color: white;
}

.example {
  background-color: lightgrey;
  padding: 0px;
}  

  /* For mobile phones: */
[class*="col-"] {
  width: 100%;
  border: none;
}
 
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}



