@font-face {
    font-family: "Playball";
    src: url(Playball.ttf);
}
body {
	background-color: #f2f2f2;
    color: #FFFFFF;
    font-family: "Roboto",sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    padding: 0;
    word-wrap: break-word;
}
.content {
	position: relative;
  	min-height: 100vh;
	width: 100%;
}
#content-wrap {
  padding-bottom: 7.5rem;    /* Footer height */
}


#header {
	background-image: url("hero.jpg");
	height: 36rem;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}	
#makes_models_header {
	background-image: url("2.jpg");
	height: 44rem;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.logoImg {
	height: 10rem;
	width: 26rem;
}
.image_header {
	padding-top: 130px;
}
.header_1 h1 {
	font-size: 60px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: white;
}
.h2_header {
	font-size: 34px;
   	line-height: 1.4;
    letter-spacing: 0px;
}
.overlay {
	width: 100%; /* Full width (cover the whole page) */
  	height: 100%; /* Full height (cover the whole page) */
  	top: 0;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  	z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}
	
.image-grid {
  /* Use flexbox and allow wrapping */
  display: flex;
  flex-wrap: wrap;
  /* Spacing between items */
  gap: 10px;
  /* Optionally center everything */
  justify-content: center;
}

.image-grid img {
  /* This makes each image take roughly 30% of the row (3 per row) */
  flex: 0 0 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  height: auto;
  box-sizing: border-box;
  /* Just for demo clarity */
  background-color: #f0f0f0;
}
    
    
#years {
	padding-bottom: 10px;
}
.img-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: gray;
}
.img-container img{
	width: 100px;
	height: 100px;
	padding: 10px;
}
#modelTable {
	color: #666;
}
#modelTable thead th {
	text-align: center;
}
#modelTableBody tr td {
	white-space: nowrap;
}
#modelList {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.dataTables_length select {
	width: 30%;
}
.makes_middle_text {
	color: #666;
	display: flex;
	justify-content: center;
}
.makes_search_area {
	background-color: grey;
	border-radius: 40px;
    padding: 10px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 30%;
}
.makes_search_area ul {
    padding-left: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.makes_search_area ul li {
    list-style: none;
    display: block;
    padding: 10px 0;
    margin: 0;
}
#middle {
	height: 400px;
	width: 100%;
}
#middle_boat {
	background-image: url("2.jpg");
	height: 34rem;
	width: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#middle_right {
	background-color: #017ac3;
	width: 50%;
    height: 34rem;
}
.middle_text {
	margin-top: 13rem;
	margin-left: 13rem;
	margin-right: 13rem;
	text-align: left;
}

#bottom_left {
	width: 50%;
}
#bottom_boat {
	width: 50%;
}
#bottom_boat img {
	height: 26rem;
	width: 26rem;
	padding: 6rem;
}


.flex_center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 1rem;
}
.flex_center1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}
.black {
	color: #111;
}
.gray {
	color: #666;
}
.quote_area {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: #666;
}
.quote_content {
	max-width: 1100px;
}
.quote_div {
	background-color: #eeeeee;
	padding-bottom: 1rem;
}

.quote_full {
	width: 95%;
}
.asterisk {
	color: red;
}
.name_div {
	width: 50%;
}

/* Make all text-like inputs look the same */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select, textarea {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #c7d7df;
  border-radius: 8px;
  background: #fff;
  line-height: 1.3;
}

/* Make selects behave like the text inputs */
.quote_flex select,
.quote_flex input[type="text"],
.quote_flex input[type="email"],
.quote_flex textarea {
  width: 100%;
  box-sizing: border-box;
}

/* Two-column row with a small gap */
.quote_flex.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;               /* space between the two inputs */
}

/* Keep label above input */
.quote_flex.two-cols .field {
  display: flex;
  flex-direction: column;
}

/* Stack on small screens */
@media (max-width: 640px) {
  .quote_flex.two-cols { grid-template-columns: 1fr; }
}

textarea {
	margin-right: 10px;
	height: 4rem;
	width: 95%;
}

.quote_label {
	display: -moz-inline-stack;
    display: inline-block;
    line-height: 1.3;
    clear: both;
    margin-right: 3px;
}
.quote_input {
	width: 100% !important;
}
.quote_input input {
	width: 100%;
}
.quote_text {
}
.homepage-container {
  display: flex;
  flex-direction: row;
}
.quote_spacer {
	padding: 40px;
}
.button_text {
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
}
.button_link {
	text-decoration: none;
    color: #017ac3;
}
.button-quote {
	border-style: solid;
    border-width: 0;
    background-clip: border-box;
    border-color: #017ac3;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 14px;
    padding-bottom: 14px;
    transition-durtion: 0.4s;
}
.button-white {
	background: #017ac3;
	border-color: #FFFFFF;
	color: #FFFFFF;
}
.button-quote:hover {
	background-color: #017ac3;
	color: white;
}
.button-white:hover {
	background-color: #8ed1fc;
	color: #111;
}	

.playball {
	font-family: "Playball",sans-serif;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
}

nav {
	float: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: .5rem;
}
.menu-btn {
  display: none;
  background-color: #017ac3;
  color: white;
}
.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-right: 1rem;
}
.menu li a {
	color: white;
	text-decoration: none;
	
}
.menu li a .active {
	color: #9ad4dd;
}
.menu li a:hover {
	color: #9ad4dd;
}

.menu li:last-child {
  margin-right: 0;
}

.welcome {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}
.welcome h2 {
	padding-left: 50px;
}
.header_1 {
	display: block;
	padding-top: 20px;
	padding-left: 5px;
	z-index: 3;
}

.footer {
	background-color: #e5e5e5;
	height: 8rem;
	width: 100%;
	position: absolute;
	bottom:0;
	
}
.footer_home {
	background-color: #e5e5e5;
	height: 8rem;
	width: 100%;
	margin-top: 10px;
	
}
.footer_1 {
	padding-left: 315px;
	padding-top: 30px;
	display: flex;
	flex-direction: row;
}
.footer_1 a {
	padding-top: 5px;
	padding-left: 10px;
	color: #666666;
	text-decoration: none;
}
.footer_1 a:hover {
	color: #017ac3;
}
.fa_icon {
	padding-left: 50px;
	font-size: 23px;
	color: #017ac3;
}

.camera {
	color: #017ac3;
	font-size: 23px;
}

/* If the parent is flex, prevent shrinking */
#country {
  min-width: 0;
  flex: 1 1 auto;
}

/* Tame the default "invalid" glow/outlines */
input:invalid, input:valid { box-shadow: none; }
/* Firefox-specific UA state */
:-moz-ui-invalid { box-shadow: none; }

/* Optional custom states */
input:required:invalid { border-color: #d92d20; }
input:required:valid   { border-color: #16a34a; }

/* Better focus ring */
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(44,125,160,.25);
  border-color: #2c7da0;
}

@media only screen and (max-width: 767px) {
	body {
		font-size: .5rem 
	}
	.content {
		width: 25rem;
	}
	#header {
		background-image: none;
		background-color: #017ac3;
		width: 100%;
		height: 17rem;
	}
	#makes_models_header {
		background-image: url("2.jpg");
		height: 13rem;
		width: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	.makes_search_area {
	    width: 70%;
	}
	.logoImg {
		height: 2rem;
		width: 5rem;
	}
	.header_1 h1 {
		font-size: 1.4rem;
	    line-height: 1.4;
	    letter-spacing: 0px;
	    color: white;
	}
	.h2_header {
		font-size: 1.0rem;
	   	line-height: 1.4;
	    letter-spacing: 0px;
	}
	.image_header {
		padding-top: 0px;
	}
	.middle_text {
		margin-top: .5rem;
		margin-left: .5rem;
		margin-right: .5rem;
	}
	#middle_boat {
	    background-image: url("2.jpg");
		height: 10rem;
		width: 50%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	#middle_right {
		background-color: #017ac3;
		width: 50%;
	    height: 10rem;
	}
	#bottom_boat img {
		height: 10rem;
		width: 10rem;
		padding: 1rem;
	}
	.quote_spacer {
		padding: 7px;
	}
	.button-quote {
	  border-style: solid;
	  border-width: 0;
	  background-clip: border-box;
	  border-color: #017ac3;
	  border-top-width: 0.0625rem;
	  border-right-width: 0.0625rem;
	  border-bottom-width: 0.0625rem;
	  border-left-width: 0.0625rem;
	  border-top-left-radius: 0.9375rem;
	  border-top-right-radius: 0.9375rem;
	  border-bottom-left-radius: 0.9375rem;
	  border-bottom-right-radius: 0.9375rem;
	  font-weight: 400;
	  text-transform: uppercase;
	  padding-top: 0.4375rem;
	  padding-bottom: 0.4375rem;
	  transition-duration: 0.2s;
	}
	.menu {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    margin-top: 1rem;
	    margin-right: 1rem;
	  }
  
	  .menu li {
	    margin: 0;
	  }
	  
	  .top_div {
		margin-bottom: 2rem;
	  }
  
  	.footer_1 {
		padding-left: 1rem;
		padding-top: 3px;
	}	
	.footer_home {
		margin-top: 5px;
		height: 4rem;
	}
	#logofooter_img {
		width: 8rem;
		height: 2rem;
		margin-top: 1rem;
	}
	.fa_icon {
		padding-left: 2rem;
		font-size: 23px;
		color: #017ac3;
	}
	.footer_1 a {
		display: none;
		padding-top: 5px;
		padding-left: 1rem;
	}
	.footer {
		height: 4rem;
	}
	.image-grid img {
       flex: 0 0 calc(50% - 10px);
       max-width: calc(50% - 10px);
     }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	body {
		font-size: .9rem 
	}
	.content {
		width: 70rem;
	}
	#header {
		background-image: none;
		background-color: #017ac3;
		width: 100%;
		height: 30rem;
	}
	.logoImg {
		height: 2rem;
		width: 5rem;
	}
	.header_1 h1 {
		font-size: 1.4rem;
	    line-height: 1.4;
	    letter-spacing: 0px;
	    color: white;
	}
	.h2_header {
		font-size: 1.0rem;
	   	line-height: 1.4;
	    letter-spacing: 0px;
	}
	.middle_text {
		margin-top: .5rem;
		margin-left: .5rem;
		margin-right: .5rem;
	}
	#middle_boat {
	    background-image: url("2.jpg");
		height: 21rem;
		width: 50%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
	#middle_right {
		background-color: #017ac3;
		width: 50%;
	    height: 21rem;
	}
	#bottom_boat img {
		height: 26rem;
		width: 26rem;
		padding: 1rem;
	}
	.button-quote {
	  border-style: solid;
	  border-width: 0;
	  background-clip: border-box;
	  border-color: #017ac3;
	  border-top-width: 0.0625rem;
	  border-right-width: 0.0625rem;
	  border-bottom-width: 0.0625rem;
	  border-left-width: 0.0625rem;
	  border-top-left-radius: 0.9375rem;
	  border-top-right-radius: 0.9375rem;
	  border-bottom-left-radius: 0.9375rem;
	  border-bottom-right-radius: 0.9375rem;
	  font-weight: 400;
	  text-transform: uppercase;
	  padding-top: 0.4375rem;
	  padding-bottom: 0.4375rem;
	  transition-duration: 0.2s;
	}
	.menu {
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    margin-top: 1rem;
	    margin-right: 1rem;
	  }
  
	  .menu li {
	    margin: 0;
	  }
	  
	  .top_div {
		margin-bottom: 2rem;
	  }
  
  .footer_1 {
		padding-left: 1rem;
		padding-top: 3px;
	}	
	.footer_home {
		margin-top: 5px;
		height: 4rem;
	}
	#logofooter_img {
		width: 8rem;
		height: 2rem;
		margin-top: 1rem;
	}
	.fa_icon {
		padding-left: 2rem;
		font-size: 23px;
		color: #017ac3;
	}
	.footer_1 a {
		padding-top: 5px;
		padding-left: 1rem;
	}
}

/* Media query for screens over 768px */
@media screen and (min-width: 1024px) {
  
  .menu {
    margin-top: 30px;
    display: flex;
    color: white;
  }
  
  .menu li {
    margin-right: 1rem;
  }
  
  .menu li:last-child {
    margin-right: 0;
  }
  .menu li a {
	display: block;
	color: white;
	text-align: center;
	padding: 16px;
	text-decoration: none;
  }
  .menu li a .active {
	color: #9ad4dd;
  }
  .menu li a:hover {
	color: #9ad4dd;
  }
}

