/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

*{box-sizing: border-box;}

/* Make HTML 5 elements display block-level for consistent styling */  

/***** END RESET *****/

/***** TEXT/LINK FORMATTING *****/

@font-face {
    font-family: 'bebas_neuebook';
    src: url('/fonts/bebasneue_book-webfont.eot');
    src: url('/fonts/bebasneue_book-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/bebasneue_book-webfont.woff2') format('woff2'),
         url('/fonts/bebasneue_book-webfont.woff') format('woff'),
         url('/fonts/bebasneue_book-webfont.ttf') format('truetype'),
         url('/fonts/bebasneue_book-webfont.svg#bebas_neuebook') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('/fonts/bebasneue_regular-webfont.eot');
    src: url('/fonts/bebasneue_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/bebasneue_regular-webfont.woff2') format('woff2'),
         url('/fonts/bebasneue_regular-webfont.woff') format('woff'),
         url('/fonts/bebasneue_regular-webfont.ttf') format('truetype'),
         url('/fonts/bebasneue_regular-webfont.svg#bebas_neue_regularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas_neuebold';
    src: url('/fonts/bebasneue_bold-webfont.eot');
    src: url('/fonts/bebasneue_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/bebasneue_bold-webfont.woff2') format('woff2'),
         url('/fonts/bebasneue_bold-webfont.woff') format('woff'),
         url('/fonts/bebasneue_bold-webfont.ttf') format('truetype'),
         url('/fonts/bebasneue_bold-webfont.svg#bebas_neuebold') format('svg');
    font-weight: normal;
    font-style: normal;
}

::-moz-selection {
    background: #ffce12;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #ffce12;
    color: #fff;
    text-shadow: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  /*margin: 0; /* 2 */
}
button,
input { /* 1 */
  overflow: visible;
}
button,
select { /* 1 */
  text-transform: none;
}
select,
button,
[type="button"],
[type="reset"],
[type="submit"],
[type="date"] {
  -webkit-appearance: button;
}

strong { font-family: 'bebas_neuebold'; font-weight: normal;}

h1 { font-family: 'bebas_neuebold'; color: #A7ADB5; font-size: 24px;}

p { font-family: 'bebas_neueregular'; font-size: 16px; line-height: 24px;}

a{
	color:#000;
	text-decoration:none;
	transition: all .2s ease-in-out; 
	-moz-transition: all .2s ease-in-out; 
	-webkit-transition: all .2s ease-in-out;
}

a:hover{
	font-family: 'bebas_neuebold';
	color: #ffce12;
}

a.ie7-links{
	*position: relative;
	*top: -75px;
	font-family:'bebas_neuebold'!important;
}

/***** SITE FRAMEWORK *****/

html, body{
	font-family: 'bebas_neueregular';
	background: #fff;
}

body {overflow-x: hidden; line-height: 1.3;}

.header{
	padding: 20px 0;
	width:100%;
	border-bottom: 2px #ffce12 solid;
}

.header .wrapper {display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;}

.wrapper{
	max-width: 1300px;
	margin: 0 auto;
	width: 95%;
	box-sizing: border-box;
}

.attachment-wrapper{
	width: 1100px;
	margin: 0 auto;
}

.column1 {width:100%;}
.column2 {width:50%; float:left;}
.column3 {width:33.33333%; *width: 32%; float:left;}
.column4 {width:25%; float:left; }
.column5 {width:20%; float:left; }
.column6 {width:16.66666%; float:left;}

/***** NAV *****/

#header-contact{
	font-size: 18px;
	letter-spacing: 1px;
	text-align: right;
	color: #6a6a6a;
	position: relative;
    font-family: 'bebas_neuebold'!important;
}

.fa{padding: 0 3px;}
.fa-phone{margin-left: 15px;}


/***** COVID ALERT *****/

#covid{background: #FFCE12; padding: 10px 7%; text-align: center}
#covid p{color: #000; font-weight: 900; text-transform:none;font-family: 'Roboto Condensed', sans-serif; font-style: italic;}

/***** QUICK SEARCH *****/

.search {
    position: relative;
	margin: 15px auto;
}
.search input, select {
	float: left;
	width: calc(33.3333% - 10px);
	margin: 0 5px;
	padding: 12px 10px;
	box-sizing: border-box;
	border-radius:5px;
	border:1px solid #777;
	font-size:12px;
	font-family: 'Roboto Condensed', sans-serif;
}
.search select{padding: 11px 10px;}

.search input[type=submit] {
    font-family: 'bebas_neuebold';
	font-size: 16px;
	padding: 10px;
	background: #FFCE12;
	color: #000;
	cursor: pointer;
}
.search input[type=submit]:hover {
	background: #E1B50B;
}

/***** STYLES *****/

#logo{
	padding: 15px 0 0 0;
	width: 25%;
}
#logo img {width: 100%; max-width: 300px; height: auto;}
.hdr-right {width: 75%;}

#sandhillsContentFrame{
	margin-top: 35px;}

.main-picture{
	position: relative;
	background: url(../siteart/main2.jpg) center;
	background-size: cover;
	width: 100%;
	height: 450px;
	border-bottom: 2px #ffce12 solid;
}

.main-message{
    font-family: 'bebas_neuebold';
	font-size: 72px;
	color: #fff;
	text-align: center;
	padding: 125px 0 0;
}

.secondary-picture{
	position: relative;
	background: #333333;
	width: 100%;
	padding: 15px 0;
	border-bottom: 2px #ffce12 solid;
}

.secondary-message{
    font-family: 'bebas_neuebold';
	font-size: 36px;
	color: #fff;
	text-align: center;
}

/***** SCROLLING INV *****/
.scrolling-wrap {
    width:100%;
    height:90px;
    overflow:hidden;
}
 
.scrolling{
    width:100%;
    height:92px;
}
/***** FORM STYLES *****/

#formpage{
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	font-size: 14px;
	margin: 50px 0;
}

#formpage input {
	padding:6px 5px;
	border-radius:5px;
	border:1px solid #8e8d8d;
	font-family:'Roboto Condensed', sans-serif;
	font-size:12px;
	width: 100%;
	margin: 10px 0;
}

#formpage textarea {
	padding:6px 5px;
	border-radius:5px;
	border:1px solid #8e8d8d;
	font-family:'Roboto Condensed', sans-serif;
	font-size:12px;
	width: 100%;
	height: 90px;
	margin: 10px 0;
	background: #fff;
}

#formpage select {
	border-radius:5px;
	border:1px solid #8e8d8d;
	font-family:'Roboto Condensed', sans-serif;
	color:#8e8d8d;
	vertical-align:middle;
	font-size:12px;
	line-height:normal;
	padding:5px;
	width: 100%;
	background: #fff;
	margin: 0 auto;
}

#formpage input.checkbox {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:13px;
    height:13px;
    display:inline;
    background-color:#fff;
 }

#formpage input.radio {
    padding:0; 
    border:0;
    margin:0 5px 0 0;
    width:15px;
    height:15px;
    display:inline;
 }

#formpage input:focus,
#formpage textarea:focus,
#formpage select:focus {
	background:#8e8d8d; 
	color:#FFF;
	border:1px solid #16598d;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
	outline-style:none;
}
#formpage input.radio:focus,
#formpage input.checkbox:focus {
	background:none; 
	border:0;
	outline-style:none;
}

#formpage input.button,
#formpage input.button:focus {
    width:200px; 
    margin:0;
    padding:7px 0;
    background:#FFCE12;
    border:2px #fff solid;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
    font-size:14px;
	line-height:14px;
	font-weight:bold;
    color:#000;
	cursor: pointer;
}
#formpage input.button:hover {
	background:#E1B50B;
	color:#000;
	text-shadow:none;
    border:2px #fff solid;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;	
}

/* for plain text next to an input field, if not using a table structure */
#formpage label.basic {
    color:#212121;
    font-size:13px;
    text-align:left;
}
#formpage label.checkbox {
  /*  color:#212121;*/
    font-size:13px;
    text-align:left;
    display:inline;
    padding:0;
}

/*control the Captcha */

.CaptchaPanel {
margin:0 0 0 0 !important;
padding:0 0 0 0 !important;
text-align: center;
line-height:normal !important;
}

.CaptchaImagePanel {
margin:0 0 0 0;
padding:0 0 0 0;
}

.CaptchaMessagePanel {
padding:0 0 0 0 !important;
margin:0 0 0 0 !important;
font-weight:normal !important;
font-size:12px;
line-height:14px;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 0 0;
	padding:8px 0 8px 0 !important;
}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;}      

/***** FOOTER STYLES *****/

.footer {
	background: #333333;
	width:100%;
}

a.footerlink:link, a.footerlink:visited, a.footerlink:active{font-family: 'bebas_neueregular'; color:#fff; font-size:10px;}
a.footerlink:hover {font-family: 'bebas_neuebold'; color:#ffce12; text-decoration:none; font-size:10px;}
.footertext{font-family: 'bebas_neueregular'; font-size:10px; color:#fff;}
.smallfootertext{font-family: 'bebas_neueregular'; font-size:10px; color:#fff;}

.divfooter {max-width:520px; text-align:center; margin: 0 auto; padding: 25px 0; line-height: 20px;}
 
.clear{clear:both;}	

/***** RESPONSIVE STYLES *****/
.mobile-break{display: inline;}


@media screen and (max-width: 1280px) {
    .wrapper{padding: 0 10px;}
}

@media screen and (max-width: 1010px)  {
    .mobile-break{display: block; padding: 5px 0;}
    .hide {display:none;}
    .divfooter {max-width:90%}
    .column4{width: 50%!important; float: left!important; margin: 0 auto!important;}
    .hi-icon-wrap {padding: 20px 0 30px !important;}
    .header{padding: 15px 0 0;}

    #logo{
		width: 100%;
		padding: 0;
		text-align: center;
    }
    #logo img{
        width: 100%;
        height: auto;
		max-width: 250px;
		margin: 0 auto;
    }
	
	.hdr-right {width: 100%;}
	
    #header-contact{
        font-size: 14px;
        text-align: center;
        margin: 15px 0;
    }

    .wrapper{
        padding: 0 15px;
    }

    .main-picture{
        background: url(../siteart/main.jpg) bottom left;
        height: 250px;
    }

    .main-message{
        font-size: 36px;
        padding: 80px 0 0;
    }
}

@media screen and (max-width: 785px){
    .search input, select {
        float: left;
        width: 100%;
        margin: 2px auto;
    }
    .main-message {
        font-size: 36px;
        padding: 35px 0 0;
    }
	
	.scrolling-wrap.pad-it {margin-bottom: 60px; display: inline-block;}
}

 
@media screen and (max-width: 500px){
    .hide {display:none;}
    .divfooter {max-width:90%}
	
    .column4{ float: none!important; width: 100%!important;}
    .hi-icon-wrap {padding: 20px 0 30px !important;}
	
	#formpage {margin: 30px 0;}

    .fa-phone {
        margin-left: 0;
    }

    .header{
        padding: 10px 0 0;
    }	
    #header-contact{
        font-size: 14px;
        text-align: center;
        margin: 10px 0;
    }

    .wrapper{
        padding: 0 15px;
    }

    .main-picture{
        background: url(../siteart/main.jpg) bottom left;
        height: 250px;
    }

    .hi-icon-wrap {
        padding: 20px 0 !important;
        font-size: 22px !important;
    }
}