﻿/*=====================
	Color information

	- Light Blue: #6dc6e7;
	- Darker Blue: #2885b3;
	- Light Blue-Gray Tint: #e6ecf5;
	-

=======================*/


/*=====================
	CSS reset/normalize
=======================*/


/**Correct `block` display not defined in IE 8/9.**/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

pre {
    white-space: pre-wrap;
}

small {
    font-size: 80%;
}


/*=====================
		Fonts
=======================*/


/*=====================
	base styles
=======================*/

html {
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    scroll-behavior: smooth;
}

body {
    font-family: 'Overpass', sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    scroll-behavior: smooth;
}

svg:not(:root) {
    overflow: hidden;
    /*reset*/
}


/* clear floats */

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}

.clear {
    clear: both;
}


/*image replacement*/

.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    border-style: solid;
    height: 0;
}

img {
    border: 0;
    max-width: 100%;
}


/*=====================
	typography
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Francois One', sans-serif;
    margin: 0;
    font-weight: 700;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

p {
    font-family: 'Overpass', sans-serif;
    padding: 0 0 2% 0;
    font-size: 18px;
    line-height: 1.5em;
    margin: 0;
    font-weight: 500;
}

strong {
    font-family: 'Overpass', sans-serif;
    font-weight: 800;
}


/*=====================
	link styles
=======================*/

a.link:focus {
    outline: thin dotted;
    /*reset*/
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: #ed1c24;
}

.appbutton {}

.appbutton a {
    background: #38b749;
    padding: 5px 10px;
    color: #fff;
    border-radius: 3px;
}

.appbutton a:hover {
    background: #262626;
    padding: 5px 10px;
    color: #fff;
    border-radius: 3px;
}


/*=====================
	list styles
=======================*/

ul.list {
    margin: 0;
    padding: 0 0 5% 7%;
}

ul.list li {
    font-size: 16px;
}


/*=====================
	header styles
=======================*/

header {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    background: url("../siteart/fabric_1.png") repeat;
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

.headerwrap {
    width: 96%;
    max-width: 1480px;
    margin: 0 auto;
}

.logo {
    float: left;
    width: 30%;
    padding-top: 15px;
}

.headright {
    float: right;
    width: 65%;
    text-align: right;
}

.headlocation {
    margin-top: 55px;
}

.headright img,
.headtext {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin: 0 1%;
}

.headtext {
    text-align: left;
}

.headtext h3 {
    font-family: 'Kaushan Script', cursive;
    color: #ed1c24;
}


/*=====================
	content styles
=======================*/

.wrapper {
    width: 96%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
}

.cf {
    background: #fff;
}


/*=====================
	slideshow styles
=======================*/

.heroslide {
    position: relative;
}

.slideoverlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.slideoverlay::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -140px;
    left: 180px;
    z-index: 0;
    background: rgba(0, 0, 0, 0.8);
    -moz-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.slidetext {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 60%;
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slidetext h1 {
    font-family: 'Francois One', sans-serif;
    color: #f9c200;
    line-height: 1em;
}

.slidetext h1 .registered {
    margin-top: -10px;
}

.slidetext p {
    color: #fff;
}

.slidetext p .registered {
    margin-top: -5px;
    font-size: 12px;
}

.slidetext a {
    padding: 8px 0;
    width: 450px;
    background: #f9c200;
    text-align: center;
    display: block;
    font-family: 'Francois One', sans-serif;
    margin-bottom: 5px;
}

.slidetext a:hover {
    background: #fff;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3 ease-in;
    -ms-transition: 0.3 ease-in;
    -o-transition: 0.3 ease;
    cursor: pointer;
    color: #000;
}

.registered {
    font-size: 0.6em;
    margin-top: -8px;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
}

.slidetext a .registered {
    margin-top: -3px;
    font-size: 12px;
}

.slidemap {
    margin-bottom: 5px;
}

.slidedept {
    padding-bottom: 0;
}

.slidecontact {
    display: inline-block !important;
    zoom: 1 !important;
    *display: inline !important;
    vertical-align: middle !important;
    width: 218px !important;
    margin-right: 10px !important;
}


/*=====================
	welcome styles
=======================*/

.padit {
    padding: 3% 0;
}

.quicklinks {
    width: 25%;
    float: left;
}

.welcometext {
    width: 72%;
    float: left;
    margin-left: 3%;
}

.welcometext h3 {
    font-family: 'Francois One', sans-serif;
    color: #444444;
}

.welcometext h1 {
    font-family: 'Francois One', sans-serif;
    color: #ed1c24;
    padding: 0;
    line-height: 1em;
}

.welcometext h2 {
    font-family: 'Kaushan Script', cursive;
    color: #444444;
    font-weight: lighter;
    font-size: 24px;
    padding-bottom: 2%;
}

.welcomeintro {
    width: 60%;
    float: left;
}

.welcomeimage {
    width: 30%;
    float: right;
}

.welcomeimage a,
.welcomeimage strong {
    color: #ed1c24;
    font-weight: 900;
}

.linkbox {
    display: block;
    width: 100%;
    height: 110px;
    margin: 4% auto;
    position: relative;
    text-align: center;
    overflow: hidden;
    -moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.linkbox:hover>img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transition: 0.5s all ease;
    -webkit-transition: 0.5 all ease;
    -ms-transition: 0.5 all ease;
    -o-transition: 0.5 all ease;
    transition: 0.5 all ease;
}

.linktitle {
    position: absolute;
    width: 90%;
    left: 5%;
    right: 5%;
    top: 50%;
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 0;
}

.linktitle h3 {
    color: #323232;
    padding: 0;
    line-height: 1.2em;
    font-size: 26px;
}

.linktitle h4 {
    font-family: 'Kaushan Script', cursive;
    color: #ed1c24;
    font-size: 18px;
}

.linkbutton {
    background: #ed1c24;
    text-align: center;
    color: #fff;
    width: 300px;
    margin-bottom: 2%;
    margin-right: 2%;
    padding: 8px 0;
    float: left;
    font-family: 'Francois One', sans-serif;
    font-weight: 400;
}

.linkbutton:hover {
    background: #000;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3 ease-in;
    -ms-transition: 0.3 ease-in;
    -o-transition: 0.3 ease;
}

#fullwidth {
    width: 100%;
    float: none;
    display: block;
    margin: 0 auto;
}

.welcomeimage iframe {
    height: 300px;
    -moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}


/*=====================
	testimonial styles
=======================*/

.testimonials {
    padding: 3% 0;
    background: #212121;
    text-align: center;
}

.testimonials>.wrapper {
    width: 60%;
    margin: 0 auto;
}

.testimonials h2 {
    color: #bfbfbf;
}

.feedback {
    padding: 0 2%;
}

.feedback p {
    color: #fff;
    padding-bottom: 1%;
}

.feedback h4 {
    color: #fff;
    padding-bottom: 1%;
}

.starrating i {
    color: #f0d629;
    font-size: 30px;
    display: inline-block !important;
    zoom: 1 !important;
    *display: inline !important;
    vertical-align: middle;
}

.testimonialslides .slick-track {
    padding: 0 !important;
}


/*=====================
	contact / map styles
=======================*/

.contactblock {
    background: #283891;
    padding-bottom: 5px;
}

.contactleft {
    float: left;
    width: 23%;
    padding: 2% 2% 2% 5%;
}

.contactleft h4,
.contactleft p {
    color: #fff;
}

.contactleft h4 {
    border-bottom: 4px solid #fff;
    margin-bottom: 2%;
}

.contactleft p {
    margin-bottom: 2%;
}

.mapped {
    float: right;
    width: 70%;
}

.mapped iframe {
    height: 470px;
}


/*=====================
	about styles
=======================*/

.internal {
    padding: 2% 0;
}

.internal h3 {
    font-family: 'Kaushan Script', cursive;
    color: #ed1c24;
}

#intbestof {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

#intimage {
    text-align: center;
}

#staff {
    text-align: center;
}

.staffholder {
    display: block;
    width: 100%;
    margin: 2% auto;
    text-align: left;
    vertical-align: top;
}

.staffholder img,
.staffbio {
    display: inline-block !important;
    zoom: 1 !important;
    *display: inline !important;
    vertical-align: top;
}

.staffholder img {
    width: 22%;
    margin-right: 3%;
}

.staffbio {
    width: 70%;
}

.staffholder h4 {
    font-family: 'Kaushan Script', cursive;
    color: #ed1c24;
}

#feedback h3,
#feedback p {
    text-align: center;
}


/*=====================
	services styles
=======================*/

.listed {
    padding: 0;
}

.listit {
    margin: 0 0 3% 0;
    padding-left: 20px;
    list-style: none;
}

.listit li {
    font-size: 16px;
    width: 98%;
    padding: 0 1%;
    margin: 5px 0;
}

.listit li:nth-child(even) {
    background: #ccc;
}

.listit li .registered {
    margin-top: 0;
}


/*=====================
	gallery styles
=======================*/

.aboutvideo {
    height: 250px !important;
}

.gallerywindow {
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 17%;
    margin: 1%;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
}

.gallerywindow h4 {
    font-family: 'Kaushan Script', cursive;
    color: #ed1c24;
}

.thumbnail {
    max-height: 200px;
    overflow: hidden;
    margin-bottom: 1%;
}

.gallerywindow:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transition: 0.5s all ease;
    -webkit-transition: 0.5 all ease;
    -ms-transition: 0.5 all ease;
    -o-transition: 0.5 all ease;
    transition: 0.5 all ease;
}

.gallerywrap {
    margin: 0 auto;
    text-align: center;
}

.photobox {
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 22%;
    margin: 1%;
    text-align: center;
    vertical-align: top;
}


/*=====================
	Form styles
=======================*/

form {
    margin: 0 0 0;
}

#formpage input {
    font-family: 'Open Sans', sans-serif;
    border: #999999 solid 1px;
    border-radius: 2px;
    padding: 1%;
    font-size: 14px;
    width: 98%;
    font-weight: normal;
    margin-bottom: 10px;
}

#formpage input:focus {
    border: #2885b3 solid 1px;
}

#formpage input.button2 {
    display: block;
    width: 50%;
    margin: 0 auto 5% auto;
    border: #277e32 solid 1px;
    background-color: #38b749;
    color: #fff;
    border-radius: 2px;
}

#formpage input.button2:hover {
    background-color: #277e32;
    cursor: pointer;
}

#formpage select {
    font-family: 'Overpass', sans-serif;
    border: #999999 solid 1px;
    padding: 2px 1%;
    font-size: 14px;
    width: 100%;
    font-weight: normal;
    margin-bottom: 10px;
}

#formpage textarea {
    font-family: 'Overpass', sans-serif;
    border: #999999 solid 1px;
    border-radius: 2px;
    padding: 1%;
    font-size: 14px;
    width: 98%;
    font-weight: normal;
}

#formpage .radio {
    display: inline;
    width: 10px
}

#formpage .lowerfield {
    width: 97.5%;
    margin-left: 1%;
}

#formpage .lowerfield input {
    padding: 5px 1% !important;
}

#formpage label {
    color: #000;
    display: inline;
    font-size: 18px;
}

#formpage strong {
    color: #444444;
    font-size: 16px;
    font-weight: normal;
}

#formpage .third {
    width: 31%;
    margin: 0 1%;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

#formpage .half {
    width: 47.8%;
    margin: 0 1%;
    float: left;
}

#formpage .commentbox {
    width: 97.5%;
    margin-left: 1%;
}

#emailcomments {
    width: 100%;
}

#formpage .captchabox {
    width: 25%;
    text-align: left;
    color: #454545;
    margin-left: 1%;
}

.welcomeintro .captchabox {
    width: 40% !important;
}

#emailcaptcha {
    margin-left: 0;
}

.CaptchaPanel {
    margin: 10px 0 0 0 !important;
    text-align: left !important;
    padding: 10px 0 0 0 !important;
}

.CaptchaImagePanel {
    padding: 5px 0px 10px 0px !important;
}

.CaptchaMessagePanel {
    padding: 5px 0px 10px 0px !important;
    font-weight: normal !important;
}

.CaptchaAnswerPanel {
    padding: 5px 0px 10px 0px !important;
}

.CaptchaWhatsThisPanel {
    padding: 5px 0px 10px 0px !important;
}

#formpage .sendbutton {
    background: #ed1c24;
    width: 100%;
    color: #fff;
    padding: 8px 0;
    border: none !important;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Francois One', sans-serif;
    margin-bottom: 0;
}

#formpage .sendbutton:hover {
    cursor: pointer;
    background: #000;
    color: #fff;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3 ease-in;
    -ms-transition: 0.3 ease-in;
    -o-transition: 0.3 ease-in;
    transition: 0.3 ease-in;
}


/*=====================
	layout styles
=======================*/

.sitemap {
    background: url(../siteart/escheresque_ste.png) repeat;
    color: #fff;
}

.sitemap p {
    line-height: 2em;
}

.sitemap i {
    font-size: 42px;
    margin-right: 20px;
}

.pagetitle {
    color: #ed1c24;
    padding-bottom: 1%;
}


/*=====================
	location styles
=======================*/

#locationwrap {
    padding-bottom: 0;
}

.locationleft {
    width: 55%;
    float: left;
}

.locationright {
    width: 38%;
    margin-left: 7%;
    float: right;
    position: relative;
    min-height: 350px;
}

.locationright img {
    position: absolute;
    top: 0px;
}


/*=====================
	hustler styles
=======================*/

.speclist h3 {
    font-family: 'Francois One', sans-serif;
    /*border-bottom:2px solid #ed1c24;*/
    margin-bottom: 5px;
    color: #333;
}

.specblock {
    margin: 2% 0;
}

.specblock .half {
    float: left;
    width: 48%;
    margin-right: 2%;
}

.cropimage {
    text-align: center;
}

.cropimage a {
    margin: 20px auto;
}

.specimage {
    width: 35% !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speclist p {
    font-weight: bold;
    color: #ed1c24;
    text-decoration: underline;
}

.registered {
    font-size: 14px;
    margin-top: 1px;
}


/*=====================
	footer styles
=======================*/

.pagebottom {
    background: #dadada;
    position: relative;
    padding: 20px 0;
}

.footerleft {
    width: 30%;
    float: left;
}

.footerleft h4,
.footerleft p a {
    color: #ed1c24;
    font-weight: 900;
}

.footerright {
    width: 65%;
    float: right;
    text-align: right;
}

.pagebottom a:hover {
    color: #ed1c24;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3 ease-in;
    -ms-transition: 0.3 ease-in;
    -o-transition: 0.3 ease;
}

.bottomlinks {
    margin: 0 0 15px 0;
    text-align: center;
    width: 100%;
}

.bottomlinks a {
    padding: 10px;
    color: #000;
    font-weight: 600;
}

.footerbutton {
    background: #ed1c24;
    padding: 8px 0;
    width: 250px;
    display: block;
    margin: 1% 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-family: 'Francois One', sans-serif;
}

.footerbutton:hover {
    background: #000;
    color: #fff !important;
    -moz-transition: 0.3s ease-in;
    -webkit-transition: 0.3 ease-in;
    -ms-transition: 0.3 ease-in;
    -o-transition: 0.3 ease;
}

.fblink {
    margin: 1% 0;
    max-width: 180px;
}

.hostedfooter {
    margin: 0 auto !important;
    width: 100%;
}

a.footerlink:link,
a.footerlink:visited,
a.footerlink:active {
    text-decoration: none;
    font-size: 11px;
    color: #000;
    border-bottom: none;
}

a.footerlink:hover {
    text-decoration: none;
    font-size: 11px;
    color: #ed1c24;
}

.footertext {
    font-size: 11px;
    color: #000;
}

.smallfootertext {
    font-size: 10px;
    color: #000;
}

.divfooter {
    text-align: right;
    margin: 0 auto;
    width: 100%;
}

.bottombar {
    padding: 10px 0;
    background: #fff;
    text-align: center;
    position: relative;
}

.bottombar img {
    margin: 0 auto;
    max-width: 200px;
}

.return {
    position: absolute;
    right: 30px;
    top: 40px;
}

.return i {
    color: #ed1c24;
    font-size: 30px;
}

#invbottombar .return {
    display: none;
}


/*=====================
	Responsive styles
=======================*/

@media screen and (max-width: 1640px) {
    .linkbox {
        height: 90px;
    }
    .testimonials>.wrapper {
        width: 75%;
    }
    .slidetext a {
        width: 97%;
    }
    .slidecontact {
        width: 47% !important;
    }
    .thumbnail {
        max-height: 180px;
    }
}

@media screen and (max-width: 1450px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    p {
        font-size: 16px;
    }
    .slideoverlay {
        width: 60%;
    }
    .slideoverlay::before {
        left: 140px;
        top: -100px;
    }
    .slidetext {
        width: 60%;
        text-align: center;
    }
    .slidetext h1 {
        font-size: 30px;
    }
    .slidetext a {
        padding: 6px 0;
        margin: 0 auto;
        margin-bottom: 5px;
    }
    .slidetext p {
        padding-bottom: 1%;
    }
    .slidedept {
        padding: 0 !important;
    }
    .slidecontact {
        margin: 0 auto;
        margin-bottom: 5px;
        margin-left: 1% !important;
        margin-right: 1% !important;
    }
    .linkbox {
        height: 75px;
    }
    .linktitle h3 {
        font-size: 22px;
    }
    .testimonials>.wrapper {
        width: 90%;
    }
    .feedback {
        padding: 0 1.5%;
    }
    .feedback p {
        font-size: 16px;
    }
    .fblink {
        max-width: 150px;
    }
    .internal {
        padding: 4% 0;
    }
    .aboutvideo {
        height: 200px !important;
    }
    .gallerywindow h4 {
        font-size: 18px;
    }
    .photobox {
        width: 30%;
    }
    .thumbnail {
        max-height: 150px;
    }
    .staffholder img {
        width: 32%;
    }
    .staffbio {
        width: 64%;
    }
    #formpage label,
    .sendbutton {
        font-size: 16px;
    }
}

@media screen and (max-width: 1100px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    p {
        font-size: 16px;
    }
    .logo {
        padding: 60px 0 0 0;
    }
    header {
        padding-top: 0;
    }
    .headright {
        margin-top: 10px;
    }
    .headright img {
        max-width: 180px;
    }
    .slideoverlay {
        width: 70%;
    }
    .slideoverlay::before {
        left: 90px;
        top: -10px;
    }
    .slidetext h1 {
        font-size: 26px;
    }
    .registered {
        margin-top: -4px;
    }
    .padit {
        padding: 2% 0;
    }
    .quicklinks {
        width: 100%;
        float: none;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 2%;
    }
    .linkbox {
        display: inline-block;
        zoom: 1;
        *display: inline;
        width: 22%;
        margin: 1%;
        vertical-align: middle;
    }
    .linkbox img,
    .linkbox:hover>img {
        display: none;
    }
    .linktitle h3 {
        font-size: 20px;
    }
    .linktitle h4 {
        font-size: 16px;
    }
    #servicebox {
        background: url("../siteart/serviceback.jpg") center center no-repeat;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }
    #mowerbox {
        background: url("../siteart/mowerback.jpg") center center no-repeat;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }
    #gallerybox {
        background: url("../siteart/corvette2.jpg") center center no-repeat;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }
    #locationbox {
        background: url("../siteart/locationback.jpg") center center no-repeat;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }
    .welcometext {
        width: 100%;
        margin: 0;
        float: none;
        display: block;
    }
    .bottomlinks a {
        font-size: 15px;
        padding: 10px 4px;
    }
    .fblink {
        max-width: 120px;
    }
    .gallerywindow {
        width: 30%;
    }
    .gallerywindow:hover img {
        -moz-transform: none;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .thumbnail {
        max-height: 180px;
    }
    #formpage {
        text-align: center;
    }
    #formpage .third {
        width: 47%;
        text-align: left;
    }
    .lowerfield input {
        margin-bottom: 12px;
    }
    #formpage .half {
        text-align: left;
        width: 46%;
        margin: 0 2%;
    }
    #formpage p,
    #formpage .commentbox {
        text-align: left;
    }
    #formpage .captchabox {
        width: 40%;
        margin-left: 2%;
    }
    #formpage .lowerfield {
        width: 96%;
        margin: 0 auto;
    }
    .welcomeintro .captchabox {
        width: 60% !important;
    }
    .speclist {
        width: 100% !important;
        float: none;
        display: block;
    }
    .specimage {
        width: 80% !important;
        float: none;
        display: block;
        margin: 2% auto;
    }
}

@media screen and (max-width: 1000px) {
    .headright img {
        max-width: 150px;
    }
    .slideoverlay {
        position: relative;
        width: 92%;
        display: block;
        padding: 2% 4%;
        background: rgba(0, 0, 0, 0.8);
        top: auto;
        text-align: center;
    }
    .slideoverlay::before {
        display: none;
    }
    .slidetext {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
    }
    .slidetext a {
        margin: 0 auto;
        margin-bottom: 5px;
    }
    .slidetext h1 .registered {
        margin-top: -6px;
        font-size: 12px;
    }
    .slidetext p .registered {
        margin-top: -3px;
        font-size: 10px;
    }
    .slidecontact {
        margin: 5px !important;
    }
    .welcometext h2 {
        font-size: 20px;
    }
    #intbestof {
        max-width: 100%;
    }
    .deptdirect {
        display: inline-block;
        zoom: 1;
        *display: inline;
        vertical-align: middle;
        width: 46%;
        margin: 5px 1.5% 0 1.5%;
    }
    .slidedept strong {
        display: block;
        margin-bottom: -5px;
    }
    #contactintro,
    #contactmap {
        text-align: center;
        width: 100%;
        float: none;
        display: block;
        margin: 2% auto;
    }
    #formpage .captchabox {
        width: 60% !important;
        float: none;
        display: block;
        margin: 0 auto !important;
    }
    .CaptchaPanel {
        text-align: center !important;
    }
    #contactmap iframe {
        margin: 2% 0 1% 0;
    }
    #contactmap .linkbutton {
        float: none;
        display: inline-block;
        zoom: 1;
        *display: inline;
        vertical-align: middle;
    }
}

@media screen and (max-width: 800px) {
    .logo {
        width: 40%;
    }
    .logo img {
        max-width: 100%;
    }
    .headright {
        margin-top: 25px;
        width: 58%;
    }
    .headright img {
        display: none;
    }
    .slidetext h1 {
        font-size: 24px;
    }
    .slidecontact {
        width: 100px !important;
        font-size: 14px;
    }
    .linkbox {
        width: 46%;
        margin: 1%;
    }
    .testimonials>.wrapper {
        width: 92%;
    }
    .pagebottom {
        position: relative;
    }
    .footerleft {
        width: 60%;
        float: none;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .footerbutton {
        margin: 1% auto;
    }
    .footerright {
        width: 100%;
        float: none;
        display: block;
        text-align: center;
        margin: 4% 0 0 0;
    }
    .divfooter {
        width: 100%;
        text-align: center;
    }
    #invbottombar {
        padding-bottom: 120px;
    }
    .pagetitle {
        text-align: center;
    }
    #intintro,
    #intimage {
        float: none;
        display: block !important;
        margin: 2% auto;
        text-align: center;
        width: 100%;
    }
    #intimage img {
        display: inline-block;
        zoom: 1;
        *display: inline;
        vertical-align: middle;
        margin: 4% 1% 0 1%;
        width: 45%;
    }
    #intbestof {
        display: none !important;
    }
    .listed {
        color: #ed1c24;
        font-weight: bold;
        font-size: 18px;
    }
    .listit {
        padding: 0;
    }
    .listit li {
        list-style: none;
    }
    #solo {
        margin: 1% auto;
        float: none;
    }
    .aboutvideo {
        height: 300px !important;
        margin-top: 4%;
    }
    .buttonholder {
        text-align: center;
        margin: 0 auto;
    }
    .aboutbtn {
        width: 30%;
        float: none;
        display: inline-block;
        zoom: 1;
        *display: inline;
        vertical-align: middle;
        margin: 1%;
    }
    .staffholder {
        text-align: center;
        width: 100%;
        margin: 4% auto;
    }
    .staffholder img {
        display: block;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .staffbio {
        width: 100%;
        margin-top: 2%;
        margin-bottom: 4%;
    }
    .thumbnail {
        max-height: 150px;
    }
    #formpage .third {
        width: 96%;
        margin: 0 auto;
        text-align: left;
    }
    #formpage .lowerfield {
        width: 100%;
        text-align: left;
    }
    #formpage label {
        font-size: 15px;
        line-height: 15px;
    }
    .speclist .listit {
        padding-left: 40px;
    }
    .speclist .listit li {
        list-style: inherit;
    }
    .specimage {
        width: 100% !important;
        display: block !important;
    }
    .specimage img {
        display: block !important;
        margin: 0 auto;
    }
    .solocopy {
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    .wrapper {
        width: 92%;
    }
    .headright {
        margin-top: 20px;
    }
    .headtext h4 {
        font-size: 18px;
    }
    .headtext h3 {
        font-size: 20px;
    }
    .slideoverlay {
        padding: 4%;
    }
    .slidetext h1 {
        font-size: 20px;
    }
    .slidedept {
        font-size: 14px;
    }
    .welcome {
        text-align: center;
    }
    .padit {
        padding: 4% 0;
    }
    .welcomeintro {
        width: 100%;
        text-align: center;
    }
    .welcomeimage {
        display: none;
    }
    .linkbutton {
        width: 46%;
        margin: 2%;
    }
    .aboutbtn {
        display: block;
        width: 100% !important;
        margin: 1% auto;
    }
    .staffholder {
        width: 100%;
        margin: 2% auto;
    }
    .gallerywindow,
    .photobox {
        width: 47%;
    }
    .thumbnail {
        max-height: 100%;
        margin-bottom: 0;
    }
    #formpage .third,
    .lowerfield,
    #formpage .half {
        width: 100%;
        margin: 0;
    }
    .half,
    .third,
    .commentbox {
        text-align: left;
    }
    .captchabox,
    .welcomeintro .captchabox {
        width: 100%;
    }
    .specblock {
        margin: 8% 0;
    }
    .specblock .half {
        float: none;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .speclist .listit {
        padding-left: 0px;
    }
    .speclist .listit li {
        list-style: none;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    p {
        font-size: 15px;
    }
    .logo {
        float: none;
        display: block;
        margin: 0 auto;
        width: 300px;
    }
    .headright {
        float: none;
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
    .headlocation {
        margin: 0;
    }
    .headtext {
        text-align: center;
    }
    .slidetext a {
        width: 85%;
    }
    .deptdirect {
        width: 100%;
        display: block;
        margin: 5px auto;
    }
    .slidecontact {
        width: 45% !important;
    }
    .quicklinks {
        padding: 0 0 4% 0;
    }
    .linkbox {
        width: 85%;
        margin: 1.5% auto;
        height: 90px;
    }
    .linkbutton {
        width: 85%;
        margin: 1% auto;
        float: none;
        display: block;
    }
    .testimonials {
        padding: 5% 0;
    }
    .feedback p {
        font-size: 15px;
    }
    .starrating i {
        font-size: 24px;
    }
    .bottomlinks a {
        display: block;
        padding: 3px 0;
    }
    .footerleft {
        width: 85%;
    }
    .footerbutton {
        width: 100%;
        margin: 2% auto;
    }
    .internal {
        padding: 30px 0;
    }
    .listit li {
        font-size: 16px;
        width: 96%;
        padding: 0 2%;
        margin: 5px 0;
    }
    #intimage img {
        display: block;
        width: 100%;
        margin: 5% 0 0 0;
    }
    .aboutvideo {
        height: 220px !important;
    }
    .half,
    .commentbox {
        width: 100%;
        margin: 0 auto;
        float: none;
        display: block;
    }
    .sendbutton {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 280px;
    }
    .linkbox {
        width: 92%;
    }
    .aboutvideo {
        height: 180px !important;
    }
    #formpage .captchabox {
        width: 100% !important;
    }
    .gallerywindow {
        width: 90%;
        margin: 2% auto;
    }
}

@media screen and (max-width: 350px) {
    .aboutvideo {
        display: none !important;
    }
}