/*
	////////////////////
	Imports 
	////////////////////
*/

/* TEST */
.video-hover {
  display: inline-block;
  position: relative;
  transition: transform .25s ease, filter .25s ease;
}

.video-play-icon {
  font-size: 120px;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

.video-label {
  display: inline-block;
  font-size: 20px;
  letter-spacing: .2rem;
  font-weight: 400;
  transition: letter-spacing .25s ease, text-shadow .25s ease;
}

.video-hover:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.08);
}

.video-hover:hover .video-play-icon {
  transform: scale(1.18);
  color: #fff !important;
  text-shadow:
    0 0 8px rgba(255,255,255,.85),
    0 0 22px rgba(16,96,180,.95),
    0 6px 14px rgba(0,0,0,.45);
}

.video-hover:hover .video-label {
  letter-spacing: .28rem;
  text-shadow:
    0 0 8px rgba(255,255,255,.75),
    0 4px 12px rgba(0,0,0,.45);
}
/*
  ////////////////////
  Fonts
  ////////////////////
*/

@font-face {
  font-family: 'Lato';
  src: url("fonts/lato/Lato-Thin.6599f05e3457.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("fonts/lato/Lato-Regular.b0f57ff46759.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("fonts/lato/Lato-Bold.58ae26f62da1.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Serif';
  src: url("fonts/ibmplex/IBMPlexSerif-Regular.47b4b4c67dff.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Serif';
  src: url("fonts/ibmplex/IBMPlexSerif-Bold.b2c536ae3170.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision-Regularitalic.c1099cc053f2.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision.4220a4393e28.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision-Thinitalic.b8997a4fa9c8.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision-BoldItalic.49de5189b438.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision-Bold.7dd4427503cf.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vision';
  src: url("/static/fonts/vision/Vision-Thin.64fe0656ddb4.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

.stats-bar {

  display: flex;

  align-items:;

  justify-content: center;

  background: #f9f9f9;

  border-radius: 8px;

  overflow: hidden;

  max-width: 1100px;

  margin: 50px auto;

}

.stat {

  flex: 1;

  display: block;

  align-items: center;

  justify-content: center;

  padding: 40px;

  font-size: 40px !important;

  font-weight: 700;

  font-family: "Vision", serif;

  text-align: center;

}
.stat > span {
	display:block;
	font-weight: 400;
	padding-top: 20px;
	padding-bottom: 10px;
	font-size: 20px;
	font-style: italic !important;
	font-family: "Lato", "Vision", serif;
	color: #444;
}
.stat + .stat {

  border-left: 1px solid #d3d3d3;

}


/****** BUTTONS *******/

.cta-button {
	display: inline-block;

padding: 16px 34px;

background: #1060b4;

color: white;

text-decoration: none;

border: 2px solid white;

border-radius: 6px;

font-size: 30px;

font-weight: 400;

font-style: italic;
font-family: "Vision";

letter-spacing: .05rem;

text-align: center;

box-shadow: 0 6px 0 rgba(0,0,0,.25), 0 12px 24px rgba(0,0,0,.25);

text-shadow: 0 1px 2px rgba(0,0,0,.35);

transition: all .2s ease;

cursor: pointer;
}

.cta-button:hover {

  background: #2586ec;

  color: white;

  transform: translateY(-2px);

  box-shadow: 0 8px 0 rgba(0,0,0,.25), 0 16px 28px rgba(0,0,0,.28);

}
.cta-button:active {

  transform: translateY(4px);

  box-shadow: 0 2px 0 rgba(0,0,0,.25), 0 6px 12px rgba(0,0,0,.22);

}

.cta-pop {

  opacity: 0;

  transform: translateY(18px) scale(.96);

  transition: opacity 1.3s ease, transform 1.3s ease;

}

.cta-pop.is-visible {

  opacity: 1;

  transform: translateY(0) scale(1);

}
@keyframes ctaPulse {

  0%, 100% {

    transform: translateY(0) scale(1);

  }

  50% {

    transform: translateY(0) scale(1.04);

  }

}
@media screen and (max-width: 700px) {
.stat {

  flex: 1;

  display: block;

  align-items: center;

  justify-content: center;

  padding: 70px;

  font-size: 40px !important;

  font-weight: 700;

  font-family: "Vision", serif;

  text-align: center;

}
.stats-bar {
	margin-top: 30px !important;
	padding-top: 20px;
}
	.stat > span {
	display:block;
	font-weight: 400;
	padding-top: 0px;
	padding-bottom: 30px;
	font-size: 20px;
	font-style: italic !important;
	font-family: "Lato", "Vision", serif;
	color: #666;
}
.stat + .stat {

  border-left: 0px solid #d3d3d3;

}

  .cta-button {

    font-size: 22px;

    padding: 14px 22px;

    width: auto;

    max-width: 90%;

  }

}
/*
	////////////////////
	Useful Presets
	////////////////////
*/

a {text-decoration: none;color: rgb(13,77,144) ;}
a:focus {border: none;box-shadow: none;outline:none;}
.width100 { width: 100%;  }
.width90 { width: 90%;}
.width80 { width: 80%;}
.width75 { width: 75%; }
.width70 {width: 70%;}
.width66 { width: 66%; }
.width60 { width: 60%;}
.width55 { width: 55%; }
.width50 { width: 50%; }
.width47 {width: 47%;}
.width45 { width: 45%; }
.width43 { width: 43%;}
.width40 { width: 40%;}
.width33 { width: 33.2%; }
.width333 {width: 33.3%;}
.width30 { width: 30%;}
.width29 { width: 29%;}
.width27 { width: 27.5%;}
.width25 { width: 25%; }
.width20 { width: 20%;}
.width10 { width: 10%;}
.none {display: none;}
.floatLeft { float: left; display:inline;}
.floatRight { float: right; }
.floatLeftMobile { float: left; display:inline;}
.floatRightMobile { float: right; }
.alignLeft { text-align: left; }
.alignRight { text-align: right; }
.alignCenter { text-align: center; }
.clear {clear:both;}
p.clear {padding: 0; margin:0;height: 0px;}
.center { margin: auto; display: block;}
.hide {display: none}
.bold {font-weight: 700 !important;}
.regular {font-weight: 400 !important;}
.light {font-weight: 100 !important;}
.white {
	color: #fff !important; 
}
a.top_button i.fa, a.top_button i, a.top_button {
	color: white !important;
}
	.top_button:hover i.fa  {
		color: #1060b4 !important;
		text-shadow: 1px 1px 0px #fff
	}
	.top_button:hover i{
		color: #1060b4 !important;
		text-shadow: 1px 1px 0px #fff
	}
.top_button_h1 {
	text-shadow: 1px 2px 4px #222
}
button:focus {
	outline: none !important;
}
.contact_info { 
	font-size: 20px;
}
ul li{
	font-weight: 400;
	margin-top:15px;
	color: #4a4a4a;

}
ul {
  list-style: none; /* Remove default bullets */
}

ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #3d3d3d; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}

ul.contact-details {
  list-style: none; /* Remove default bullets */
}

ul.contact-details li {
  color:white; /* Remove default bullets */
	text-shadow: 2px 2px 0px #777
}

ul.contact-details li::before {
  content: "";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: white; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 0em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
/* MODAL VIDEO BOX */

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: none;
  margin: 6.5% auto; /* 15% from the top and centered */
  border: 5px solid none; /* Could be more or less, depending on screen size */
  max-width: 70%;
  min-width: 50%;
  height: 450px;
}
	.modal-content iframe, .modal-content embed, .modal-content object {
		width: 100%; height: 100%; padding: 20px; }
	}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* DROPDOWN */


.dropdown2 {
	display: inline-block;
	position: relative;
}
.dropdown2 a {
	padding-bottom: 10px;
}
.dropdown-area {
	display: none;
	position: absolute;
	width: 300px;
	height: 391px;
	padding: 0px 0px 15px 0px;
	background: rgba(255,255,255,.95);
	box-shadow: 0 0 5px rgba(0,0,0,.5);
}
	.dropdown-area div a {
		padding: 15px 0 15px 0;
		width: 100%;
		display: block;
		text-align: left;
	}
	.dropdown-area div a h4 {
		margin-left: 40px;
		font-weight: 100;
		line-height: 28px;
		font-size: 16px;
	}
	.dropdown-area div a h4 i {
		clear: both;
		display: inline-block;
		margin-right: 10px;
		color:;
	}
	.dropdown-area div a:hover {
		background: rgb(13,77,144);
		color: #fff !important;
	}
	.dropdown-area div a:hover h4 {
		color: #fff !important;
	}
	.dropdown-area h4 {
		margin: 0;
	}
.dropdown2:hover .dropdown-area {
	display: block;
}



/* 
IMAGES
*/
#page-loader {

  position: fixed;

  inset: 0;

  z-index: 999999;

  background: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: opacity .5s ease, visibility .5s ease;

}

#page-loader.is-hidden {

  opacity: 0;

  visibility: hidden;

}

.loader-content {

  text-align: center;

}

.loader-content img {

  max-width: 360px;

  width: 80%;

  height: auto;

  margin-bottom: 18px;

}

.loader-content p {

  font-family: Georgia, serif;

  font-size: 20px;

  letter-spacing: .08rem;

  color: rgb(13,77,144);

}
.loading-dots span {

  opacity: 0;

  animation: loadingDots 1.4s infinite;

}

.loading-dots span:nth-child(1) {

  animation-delay: 0s;

}

.loading-dots span:nth-child(2) {

  animation-delay: .2s;

}

.loading-dots span:nth-child(3) {

  animation-delay: .4s;

}

@keyframes loadingDots {

  0% {

    opacity: 0;

  }

  30% {

    opacity: 1;

  }

  100% {

    opacity: 0;

  }

}
#image_container,

.image-slot {

  opacity: 0;

  transition: opacity 1.3s ease;

}



#image_container.is-visible,

.image-slot.is-visible {

  opacity: 1;

}
.image-slot {	display:block;
	position: relative;
	text-align:left;
}
.side-image {
	height: 500px;
	text-align:left;
}
.right {
	unicode-bidi: bidi-override !important;
	direction: rtl !important;
}



/* 
	////////////////////
	TEXT
	////////////////////
*/

.small {
	font-size: 32px !important;
}

.plexFont {
	font-family: 'IBM Plex Serif', serif !important;
}
#map_text {margin-top:100px;font-size: 25px !important;margin-bottom: 20px;}

h2.font40 {
	font-size: 45px;
	color: #333;
	font-weight: 400;
	line-height:40px;

    letter-spacing: .1rem !important;

}
	span.font40 {
	padding-left: 10px;
	font-size: 17px; 
	font-weight: 400; 
	color: #5a9e4b;
	clear:both
    letter-spacing: .1rem !important;

	}
h2.font30 {
	font-size: 30px;
	color: #333;
	font-weight: 400;
	line-height:40px;
	margin-top: 10px;
	margin-bottom: 25px;
    letter-spacing: .1rem !important;

}
	span.font30 {
		padding-left: 10px;
		font-size: 13px;
		font-weight: 400; 
		color: rgb(13,77,144); 
		color: #5a9e4b;
   		letter-spacing: .1rem !important;
   		clear:both

	}
/*
	////////////////////
	Main Elements  
	////////////////////
*/
html {
	height: 100%;
	overflow-x: hidden;
}
body {
	font-family: "Lato", "Vision", helvetica;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
    max-width: 100%;
    letter-spacing: 1px;
    overflow-x: hidden;
}

#wrapper {
	width: 100%;
	min-height: 300%;
	position: absolute;
	margin: auto;
	z-index: 2;
    overflow-x: hidden;
}

#content {
	margin: 0px auto 0px auto;
	padding-bottom: 35px;
	clear: both;
	height: 100%;
    overflow-x: hidden;
}
#content-front {
	padding-top: 50px;
	min-height: 400px;
	display: block;
}
#header {
	padding: 0px 0 4px 0;
	box-sizing: border-box;
	width: 100%;
	/*background-color: #53afee;*/
	/*background-color: rgb(83, 176, 238);*/
	margin: 0;
	position:absolute;
	background: rgba(255,255,255,.65);
	/*background: rgb(10,12,14);*/
	position:fixed !important;
	z-index: 1000;
}

	#header-inner {
		margin: auto;
		padding: 2px 33px 2px 33px;
	}

#service {
	padding: 40px;
}

.marketeer {
	margin: 40px auto 40px auto;
}
.index-content {
	margin-top: 0px;
	height: 760px;
}
.content-container {
	margin: auto;
	padding: 70px 0 70px 0;
	margin-top: 0px;
	min-height: 465px;

}
.cool-container {
	background-color: white;
	border: 1px solid #aeaeae;
	border-radius: 2px;
}
	.cool-container h2.prime {
		padding-top: 18px;
		padding-bottom: 18px;
		color: #000;
		background: #fcfcfc;
		border-bottom: 1px solid #c7c7c7;
		margin-bottom: 0px;
	}
/*

	Pathway

*/


#pathway {
}
	div#pathway {
		background: rgba(0,0,0,.85);
	}
	div#pathway div div {
		padding: 8px 0 8px 0;
		color: #fff;
		font-size: 23px;
		font-weight: 100;
		opacity: 1;
		margin: 0;
	}
		div#pathway div div.special {
			opacity: 1;
			font-weight: 400;
		}
		div#pathway div div.middle {
		}
		div#pathway div div.finished {
		}

		div#pathway div div.finished i.fa-check {
			color: #309feb !important;
		}
.numberCircle {
    border-radius: 50%;
    padding: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    font: 25px helvetica, sans-serif;
}

/* 
	Horizontal Header
*/
h1.horizontal {
    position: relative;
    font-size: 20px !important;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    color: #777 !important;
    margin-top: 20px;
}
h1.horizontal:before, h1.horizontal:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: #c7c7c7;
}
h1.horizontal:before {
    margin-left: -50%;
    text-align: right;
}
/*
	LOGIN
*/

a.facebook {
	padding: 16px 12px 22px 12px;
	background-color: rgb(66,101,175);
	color: white !important;
	border-radius: 4px;
	font-size: 18px;
	width: 50% !important;
	display: inline-block;
}
	a.facebook i {
		color: white !important;
		margin: 0px 0px 0px 0;
		position: absolute;
		float: left;
		font-size: 30px;
	}
	a.facebook span {
		color: white !important;
		margin: 4px 0px 0px 35px;
		display: inline-block;
		padding-top: 0px;
		font-weight: 700;
	}

a.facebook2 {
	padding: 16px 25px 15px 25px;
	background-color: rgb(66,101,175);
	color: white !important;
	border-radius: 4px;
	font-size: 18px;
	margin-top: 0px;
	display: inline-block;
}
	a.facebook2 i {
		color: white !important;
		margin: 0px 0px 0px 0;
		position: absolute;
		float: left;
		font-size: 30px;

	}
	a.facebook2 span {
		color: white !important;
		margin: 0px 0px 0px 35px;
		display: inline-block;
		padding-top: 0px;
		font-weight: 700;
	}
/*
	////////////////////
	Search  
	////////////////////
*/
.content-box {
	padding: 0px 30px 30px 30px;
	margin: auto;
}
#search-wrapper {
	margin: 40px auto 0px auto;
	max-width:600px;

}
#zip-wrapper {
	margin: 50px auto 0px auto;
	max-width: 330px;

}

#service_type {
    display: inline-block;
}

	#service_type::first-letter {
		text-transform: capitalize
	}
#service_type2 {
	display: inline-block;
}
	#service_type2::first_letter {

		text-transform: capitalize !important;
	}

#service_type_2 {
    display: inline-block;
}

	span#service_type_2::first-letter {
		text-transform: capitalize
	}
/*
	////////////////////
	Contractor List  
	////////////////////
*/

#list-box {
	margin-top: 0px;
}

.panel {
	max-width: 730px;
	margin: 0 auto 0 auto;
	padding: 25px 0px 25px 0px;
	background: rgb(255,255,255);
}

img.profile {
	max-height: 160px;
	max-width: 100%;
	border-radius: 5px;
}

.info {
}
	div.info div {
		padding: 0px 10px 0 20px;
	}
		div.info div p {

		}
			div.info div p:hover {
			}
			div.info div p span {

			}

div.review {
	padding: 0px !important;
	margin: 3px 0px 3px 0px !important;
}
	div.review span i {
		color: #1e85e9;
		color: rgb(252, 190, 9);
		font-size: 16px;
	}

.price {

}
	.price div {
		padding: 0px 0 0 0;
	}

/* 
	////////////////////
	Vertical Profile
	////////////////////
*/

#finish-box {
	margin-top: 0px;
}

.panel-vertical {
	margin: 0px auto 0 auto;
	padding: 23px 10px 0 10px;
	display: block;
}

img.profileVertical {
	display: block;
	max-height: 150px;
	max-width: 80%;
	border-radius: 5px;
	margin: 0 0 0 30px;
}

.infoVertical {
	margin: 10px 30px 0 30px;
}
	div.infoVertical div {
	}
		div.infoVertical div p {

		}
			div.infoVertical div p:hover {
			}
			div.infoVertical div p span {

			}

.reviewVertical {
	margin: 10px 30px 0 30px;
}
	div.reviewVertical div {
		padding: 10px 0 0 0;
	}

.priceVertical {
	margin: 10px 30px 0 30px;

}
	.priceVertical div {
		padding: 10px 0 0 0;
	}


/*

CREDITS BOX

*/
#credits-ad-box {
	height: 90px;
	background:none;
	margin: auto;
	display:block;
}
	#credits-ad {
		padding: 8px 10px 8px 14px;
		max-width: 400px;
		margin: auto;
		display: none;
		border-bottom: 2px #228B22 dashed;
		font-size: 30px;
		border-radius: 3px;
		margin-top: 20px;
		font-weight: 400;
		color: #555;
		cursor: pointer;
	}
	div#credits-ad-box h4#info-show {
		padding-top: 8px;
		background: none !important;
	}
	div#credits-ad-box h4#info-show {
		display:none !important;

	}

	div#credits-ad-box:hover h4#info-show {
		display:block !important;
		transition: .4s;

	}




/* 
	////////////////////
	////////////////////
		FULL PROFILE 
	////////////////////
	////////////////////
*/

div.profile {
	max-width: 800px;
	background: #fff;
	margin: auto;
	display: block;
	border: 1px solid #333;
	padding: 10px;
}


/*
header
*/

div.image-top {
	height: 64px;
	width: 82px;
	display: inline-block;
	position: absolute;
	right: 0px;
	top: 0px;

}
	div.image-top:hover {
		background-color: #f1f1f1;
		
	}
	div.image-top div.images {
		display: block;
		margin-right: 12px;
		margin-left: 15px;
		margin-top: 12px;
	}
		div.image-top img {
			height: 33px;
			border-radius: 2px;
			float: left;
			border: 1px solid #222;
		}
		div.image-top i {
			color: #222 !important;
			margin: 7px 0px 0px 4px;
			font-size: 20px;
			float: right;
		}
	div.image-top div.dropdown {
		display: none;
		position: absolute;
		background-color: #f1f1f1;
		width: 200px;
		z-index: 1;
		right: 0px;
		top: 63px;
		
	}
	div.image-top:hover div.dropdown {
		display: block;
		text-align: right;
		
	}
		div.image-top div.dropdown a {
			clear: both;
			display: block;
			height: 50px;
			width: 100%;
			color: #222;
			line-height: 50px;

		}
			div.image-top div.dropdown a div {
			padding-right: 20px;

			}

		div.image-top div.dropdown a:hover {
			background-color: #c7c7c7;
		}




/*
	////////////////////
		Links  
	////////////////////
*/
a.basic {
	text-decoration: ;
	color: #1e85e9 ;
}
	a.basic:hover {
		text-decoration: underline;
		color: #1e85e9;

	}


a.pro-header {
	display: block;
	margin: auto;
}
a.pro-header i {

	color: #62a4e5;

}
a.pro-header h3 {
	color: #222;

}

	a.pro-header:hover h3{
		color: #368bde
	}

.button-wrap {
	max-width: 320px;
	margin: 0px auto 30px auto;
}
.button {
	display: inline-block;
	margin: 0px;
	padding: 0px;
	min-width: 120px;
	background: white;
}

.button-top {
	color: #222;
	display: inline-block;
	padding: 6px 10px 6px 10px;
	font-weight: 400;
	font-size: 16px;
	margin: 0px 12px 5px 12px;
	border: 1px solid inherit;
	line-height:25px;
	font-family: "IBM plex serif";
	  letter-spacing: 0;
}

	a.button-top:hover {
		opacity: .8;
	}

		a.button-top.special {
			background-color: rgb(13,77,144);
			color: #ffffff;
			transition: .2s;
			border-radius: 2px;

		}
		a.button-top.special:hover {
			opacity:.8 !important;
		
		}
	a.button-top {

	}
button.button-bottom {
	color: #308feb;
	display: block;
	padding: 9px 10px 9px 10px;
	font-weight: 400;
	font-size: 25px;
	cursor: pointer;
	width: 120px;
	margin: 2px auto 0 auto;
	background-color: #1060b4 !important;
	color: #ffffff !important;
	border-radius: 2px;
}
	button.button-bottom:hover {
		background-color: #2586ec !important;
		border-color: #2586ec;
		color: #ffffff !important;
		transition: .3s !important;
	}
#zip-wrapper a.button-bottom {
	width: 160px;
}
button.book {
	/*background-color: rgb(223, 20, 26);
	border: 1px solid rgb(223, 20, 26);*/
	display: inline-block;
	padding: 10px 11px 10px 11px;
	font-weight: 400;
	font-size: 23px;
	margin: 12px 0 0 0;
	cursor: pointer;
	min-width: 85%;
	background-color: #308feb ;
	color: #ffffff;
	border: 1px solid #308feb;
	border-radius: 2px;
}
	button.book:hover {
		transition: .2s;
		background-color: #309feb;
		border-color: #309feb;
		/*background-color: rgb(235, 34, 40);
		border-color: rgb(235, 34, 40);*/
	}
/*
	////////////////////
	Text/  
	////////////////////
*/

span.money {
	color: #228B22 !important;
	font-weight: 400;
}

a.logo {
	color: rgb(46,48,50);
	font-size: 35px;
	font-family: "Lato";
	/*-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: rgba(255, 255, 255, .1);*/
	font-weight: 100;
	margin: 0;
	padding: 0;
	line-height: 36px;
}
	a.logo span {
		font-weight: 400;
	}
h1.prime {
	font-size: 40px;
	color: #333;
	font-weight: 100;
	margin-bottom: 10px;
	display: block;
	line-height: 40px;
}


h2.subprime {
	margin-top: 20px;
	font-size: 25px;
	color: #444;
	font-weight: 100;
	line-height: 30px;
}

	h2.subprime span.special {
		color: #1A81D0;
		font-weight: 400;
		display: inline-block;
		font-size: 27px;
	}

h2.small {
	font-size: 18px;
	font-weight: 100;
	color: #555;
	margin: 0 0 20px 0;

} 

h2.finish {
	margin: 0 0 20px 0;
	font-size: 25px;
	color: #555;
	font-weight: 400;
	line-height: 30px;
}

h2.name {
	margin: 0 0 0 0;
	font-size: 21px;
	color: #555;
	font-weight: 700;
	line-height: 30px;
}
	h2.name span {
	font-weight: 400;
	font-size: 16px;
	text-align: left;
	display: block;
	float:left;

	}
h2.sort {
	margin: 0 0 0 0;
	font-size: 21px;
	color: #333;
	font-weight: 600;
}
h4.type {
	margin: 0 0 0 0;
	font-size: 18px;
	color: #555;
	font-weight: 100;
	line-height: 30px;
}
h4.services {
	font-weight: 400;
	margin: 5px 0 0 0;
	line-height: 23px;
	font-size: 16px;

}
	h4.services2 {
		font-weight: 400;
		margin: 0px 0 0 0;
		line-height: 21px;
		font-size: 16px;

	}
h4.review {
	color: rgb(252, 190, 50);
	font-weight: 700;
	display:inline;
	font-size: 16px;
	margin: 0 5px 0 0;
}
	h4.review2 {
		color: #777;
		font-weight: 100;
		display:inline;
		font-size: 14px;
		margin: 2px 0 0 5px;
	}
h4.helper {
		background-color: #dedede;
		color: #222;
		font-weight: 100;
		display:block;
		font-size: 16px;
		margin: 20px 0 0 0;
		width: 100%;
		padding-top: 18px;
		padding-bottom: 18px;
		margin-bottom: 0px;
	}
h3.location {
	margin: 5px 0 0 0;
	font-size: 20px;
	color: #333;
	font-weight: 400;
	line-height: 30px;
}
h3.subprime2 {
	font-size: 30px;
	color: #555;
	font-weight:400;
	margin-bottom: 40px;
	display: block;
	line-height: 40px;
}


p {
	font-weight: 400;
	color: #666;
	font-size: 20px;
	line-height: 30px;
}
p.small {
	font-size: 16px;
}

/* 

	ICONS

*/

.fa-check {
	color: #4e9eed !important;
}
.fa-check-double {
	color: #4e9eed !important;
}
.fa {
	color: #444;
}

/*

	FOOTER

*/

#footer {
	height: 35px;
	width: 100%;
	clear:both;
	position: absolute;
  	bottom: 0;
  	border-top: 1px solid #888;
	background: rgba(255,255,255,.9);
	margin-top: 0px;
}
#footer-inner {
	padding: 0px;
	position: relative;
	margin: 0 25px 0 25px;
	padding-top: 2px;
}
#footer-inner p {
	margin-top: 0px;
	font-size: 16px;
	color: #444;
	height: 0;
}
#footer-inner a {
	text-decoration: none;
	color: #444;
	margin-left: 20px;
}
#footer-inner a:hover {
	border-bottom: 1px solid #444;
}

.yes_mobile { display:none; }
.no_mobile {display:inline-block;}

	#scroll {margin-top: 50px;position: relative; display: block;}

@media only screen and (max-width:900px) {
  /* CSS for screens that are 320 pixels or less will be put in this section */

.stats-bar {

    flex-direction: column;

    max-width: 92%;

    margin: 20px auto;

  }

  .stat {

    padding: 16px 20px;

    font-size: 22px;

    flex-direction: column;

    line-height: 1.25;

  }

  .stat > span {

    padding-left: 0;

    margin-top: 4px;

    font-size: 18px;

  }

  .stat + .stat {

    border-left: none;


  }
/* Modal Content/Box */
.modal-content {
  background-color: none;
  margin: 15% auto; /* 15% from the top and centered */
  border: 5px solid none; /* Could be more or less, depending on screen size */
  max-width: 80%;
  height: 300px;
}
	.modal-content iframe, .modal-content embed, .modal-content object {
		width: 100%; height: 100%;
		padding:5px; 
	}

#scroll {
	margin-top: 0px;
}
.width50, .width45, .width55, .width33{
	width: 95%;
	clear:both;
	margin: auto;
}
.width80 {
	margin: auto;
	width: 95%;
}
.no_mobile {display:none;}
.yes_mobile { display:inline-block; }
h1, h1 span {
	font-size: 15px !important;
}
h2, h2 span {
	font-size: 20px !important;
}
.width40 {
	width: 95%;
	clear:both;
	margin: auto;
}
div.floatLeft, div.floatRight {
	float: none;
}
p {text-align: center !important;max-width: 95%;margin: auto; display:block;}
h1,h2 {
	text-align: center !important;
	max-width: 90%;
	margin: auto;
}
.small {
	font-size: 18px !important;
}
h2.shadow span#mainLine {
	font-size: 28px !important;
}
h2.shadow span#tagline{
	font-size: 18px !important;
}

h2.font40 {
	font-size: 40px !important;
}
	span.font40 {
		font-size: 18px !important;
	}
h2.font30 {
	font-size: 35px !important;
}
h3 { 
text-align: center;
font-size: 16px;
 }
	span.font30 {
		font-size: 13px !important;
	}
.lots, .video {
	font-size: 12px !important;
}
ul {max-width: 70%;
margin: auto;
display: block;}
.footerp {
	font-size: 10px !important;
	text-align:left !important;
}
#logo {
	height: 25px !important;
	display: inline-block;
	max-width:100%;

}
.button-top {
	font-size: 13px;
	padding: 4px 7px 4px 7px;
	margin: 0px 3px 5px 3px;
}
.width25 {width: 26%;}
.width75 { width: 70%; }
#header-inner {
		margin: auto;
		padding: 2px 10px 2px 5px;
	}
#header {
	max-width: 100%;
}
.width47 {
	width: 42%;
}
form {
	margin-bottom: 30px;
}
.contact_info {
	font-size: 18px;
}
#map_text {
	padding-top: 40px;
}

.image-slot img {
width: 110%;
margin: auto;
height: 300px !important;
margin-top: 20px;
}
#contact_form {
	margin-right: 12px;
	margin-left: 12px;
}
form .width47 {
	width: 100% !important;
	clear:both;

	display:inline-block;
	position:relative;

}

}
@media screen and (min-width:1800px) {
	#content {
		max-width: 1800px;
		margin: auto;
		display: block;
	}
	#header {
		max-width: 1800px;
		margin-left: -900px !important;
		display: block;
		left: 50%;

	}
	.index-content {

	}
	#location_map2 img {
		max-height: 700px;
	}
	#location_map2 {
		margin-top: 20px;
	}
}