/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Custom Code
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
    max-width: 1324px;
  margin: 0 auto;
  padding: 0 0px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top; }

/* For devices larger than 400px */



/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
     font-size: 1.6em;
  line-height: 1.6;
  font-weight: 300;
      color: #212121;
	  background: white;
    font-family: poppins, sans-serif; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 5px;
    font-weight: 100;
letter-spacing: 0px;
line-height: 40px;}
h1 { font-size: 2em;}
h2 { font-size: 1.5em; }
h3 { font-size: 1.25em; }
h4 { font-size: 1.10em;}
h5 { font-size: 1.05em;  }
h6 { font-size: 1em;   }
h1, h3, h5{
	color: #000000;
}
h2, h4, h6 {
    color: #0e629f;
}
/*h3, h4, h5, h6 {
    line-height: 20px;
    margin-bottom: 0px;
}*/
@media (min-width: 1001px) {
  h1 {font-size: 2.2em; }
  h2 { font-size: 1.8em; }
  h3 { font-size: 1.75em; }
  h4 { font-size: 1.3em; }
  h5 { font-size: 1.25em; }
  h6 { font-size: 1em; }
}

p {
  margin-top: 0; }

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
	color: black;
    -webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
    text-decoration: none;
}
a:hover {
  color: #000;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: white;
    text-align: center;
    font-size: 14px;
    line-height: 38px;
    letter-spacing: .1rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    cursor: pointer;
    box-sizing: border-box;
    background: #2484bc;
    border: none;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
     color: black;
    outline: 0;}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  /*border-bottom: 1px solid #E1E1E1;*/ }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }

.clear{
	clear:both;
}
/* Custom Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fRight{
	float:right;
	margin-left: 45px
}
.fLeft{
	float:left;
	margin-right: 45px;
}
.fullWidth{
width:100%;
}
.padding20 {
	margin: 0 0 0 0;
	top: -10px;
	
}
.contentpadding20 {
	margin: 20px 0 40px 0;
	
}
.margin20 {
		margin:20px auto;
	display:block;
}
.txtLeft{
	text-align:left	;
}
.txtRight{
	text-align:right;
}
.txtCenter{
	text-align:center!important;
}
.txtCenterImp{
  text-align:center!important;
}
.blockCenter{
	margin:0 auto;
	display:block;
}
.boldTxt{
	font-weight:bold;
}
.noLeftMargin{
	margin-left: 0!important;
}
.middleVert{
  vertical-align: middle!important;
}
.bottomVert{
  vertical-align: bottom!important;
}

.scrollToTop {
    width: 30px;
    height: 30px;
    padding: 10px;
    text-align: center;
    background: whiteSmoke;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 35px;
    right: 10px;
    display: none;
    z-index: 999;
    border-radius: 100%;
}

.scrollToTop:hover {
    text-decoration: none;
}
.fontZero{
  font-size: 0;
}
.invisImg{
  max-width: 270px;
  margin: 0 auto;
}
.emTxt{
    font-style: italic;
}
.headerBtn {
    cursor: pointer;
    width: 100%;
    max-width: 220px;
    text-align: center;
    background: #2484bc;
    border: solid 1px #2484bc;
    display: inline-block;
    align-content: right;
    color: white;
    width: 200px;
    padding: 10px;
}
.headerBtn a {
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    color: white;
    
}
.headerBtn a:hover {
    background: #2a7d15;
	color: black;
}
.header__right {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: right;
    display: inline-block;
    margin-left: 17px;
    margin-bottom: 10px;
}
.headerBtns {
    float: right;
    width: 485px;
}
@media (max-width: 768px) { .header__right { text-align: center; } }
.mainBtn {
    cursor: pointer;
    width: 100%;
    max-width: 270px;
    text-align: center;
    border: solid 1px #58421d;
	background: #ffffff;
	opacity: 0.8;
	z-index: 998;
	position: relative;
	align-content: center;
}
.mainBtn a {
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    color: #c08750;
    display: block;
	background: #ffffff;
	font-size: 28px;
}
.mainBtn a:hover {
    background: #c08750;
	color: white;
}

.mainBtn2 {
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    text-align: center;
	 color: black;
	background-color: #ffffff;
	margin: 10px auto;
}
.mainBtn2 a {
    padding: 10px 20px;
    cursor: pointer;
    color: black;
    display: block;
}
.mainBtn2 a:hover {
	background-color: #e4e4e4;
	color: #000;
}
.mainBtn3 {
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border: solid 1px #58421d;
	background: #ffffff;
	opacity: 0.8;
	z-index: 998;
	position: relative;
	align-content: center;
}
.mainBtn3 a {
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    color: #c08750;
    display: block;
	background: #ffffff;
	font-size: 28px;
}
.mainBtn3 a:hover {
    background: #c08750;
	color: white;
}
.standardBtn {
    cursor: pointer;
    text-align: center;
    border: solid 1px #063a60;
	background: #fff;
	opacity: 0.8;
	z-index: 998;
	position: relative;
	align-content: right;
    color: #fff;
    width: 24%;
    padding: 10px;
	margin: 5px auto;
}
.standardBtn a {
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    color: #eb952e;
    display: block;
	background: #fff;
	font-size: 24px;
}
.standardBtn a:hover {
    color: #063a60;
}
.projects {
    text-align: center;
}
.projects img {
    max-width: 100%;
}
.controls span {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}
#next{
  float: right;
}
#prev{
  float: left;
}
.project img {
    margin: 0 auto;
    display: block;
    width: initial;
        left: 0!important;
    right: 0;
}
.controls {
    max-width: 800px;
    margin: 0 auto;
}
.prevControl{

	float:left;
	font-size: 20px;
	font-weight: bold;
	cursor:pointer;
	margin-top: 10px;
}

.nextControl{

	float:right;	
	font-size: 20px;
	font-weight: bold;
		cursor:pointer;
	margin-top: 10px;

}
.smiles img {
    width: 100%;
}
.grayBorder{
  border: solid 1px gray;
}
@font-face {
  font-family: 'centuryGothic';
  src: url('http://jtroutdogs.com/css/fonts/GOTHIC.TTF')  format('truetype');
}
header {
    position: fixed;
    width: 100%;
    background-size: contain;
    background-repeat: repeat-x;
    z-index: 999;
    background-position: center;
  background: #2f281d;
	padding-top: 10px;
}
.show-menu:after {
    content: 'Show Menu';
}
input[type=checkbox]:checked ~ .show-menu:after {
    content: 'Close Menu';
}
.relative{
  position: relative;
}
.contactInfo {
    font-size: 20px;
    font-size: 1em;
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 0;
    color: #c28453;
    line-height: 24px;
    padding-bottom: 5px;
    clear: both;
}
.contactInfo a {
    text-decoration: none;
    font-size: 20px;
    color: #c28453;
	font-weight: bold;
}
.contactNumber a {
color: #c28453;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    font-size: 1.45em;
}
.hours {
	font-size: 16px;
}
.phoneNumberFooter a {
color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
    font-size: 1.35em;
}
.logo {
    width: 100%;
    max-width: 335px;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Navigation Styles. */
/*.navContainer {
    background: #39438a;
    outline: #676ea5 5px double;
}*/
/*.navContainer {
    width: 860px;
}*/

.headerImg {
    position: relative;
        top: 0px;
}
nav{
    position: relative;
    display: block;
    margin: 0 auto;
	height: 30px;
}
/*Strip the ul of padding and list styling*/
.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 1260px;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/*Create a horizontal list with spacing*/
.navigation li {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
}

/*Style for menu links*/
.navigation li a {
	display:block;
	font-family: 'centuryGothic', "Helvetica Neue", Helvetica, Arial, sans-serif;
	
	text-decoration: none;
-webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
	text-align: left;
	box-sizing: border-box;
font-size: 17px;
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
}
.navigation li ul li a {
    background: #2F281D;
    color: #c28453;
    height: 30px;
    line-height: 30px;
    -webkit-transition: color .15s linear;
    -moz-transition: color .15s linear;
    -ms-transition: color .15s linear;
    -o-transition: color .15s linear;
    transition: color .15s linear;
}
/*Hover state for top level links*/
.navigation li:hover a {
    color: #c28453;
}
/*Hover state for second level links*/
.navigation li:hover ul {
    opacity: 1;
    visibility: visible;
	z-index: 999;
}
/*transitions second level links*/
.navigation li ul {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    margin-top: 0;
	width: auto;
}
/*Style for dropdown links*/
.navigation li:hover ul a {
    height: 30px;
    line-height: 30px;
    background: #2f281d;
    color: #c28453;
    font-size: 15px;
}
/*Hover state for dropdown links*/
.navigation li:hover ul a:hover {
    color: #c28453;
}

/*Hide dropdown links until they are needed*/
.navigation li ul {
visibility: hidden;
padding: 0;
    margin: 0;
      padding-top: 5px;
}

/*Make dropdown links vertical*/
.navigation li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.navigation li ul li a {
	width: auto;
	min-width: 150px;
	padding:0 20px!important;
}

/*Display the dropdown on hover*/
.navigation li a:hover + .hidden, .hidden:hover {
visibility: visible;
}

.hiddenTwo {
    visibility: hidden!important;
    padding: 0!important;
    margin: 0!important;
    padding-top: 20px;
    left: 200px;
    top: 0;
}

.hidden li a:hover + .hiddenTwo, .hiddenTwo:hover{
    visibility: visible!important;
}

.subMenu {
    position: relative!important;
    padding: 0!important;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
	display: none;
    margin: 0 auto;
    color: #ffffff;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
/*.navContainer, nav, .navigation{
	    width: 880px;
}*/
.hidden li {
    width: 230px;
    left: 0;
}
#firstLink {
    padding-left: 0;
}
#lastLink {
    padding-right: 0;
}
nav{
        width: 810px;
    float: right;
}
.headerFb{
      float: right;
}
.headerFb a{
   color:white;
}
.cycle-slideshow, .cycle-slideshow img {
  
}
/*.cycle-slideshow {
max-height: 454px; /* Must be full height of slideshow images, if having a white space between image and bottom border, adjust this value
}*/
.cycle-slide {
    width: 100%;
}
.homeTest {
    max-width: 745px;
    margin: 0 auto;
    width: 90%;
}
.homeTest p{
    font-size: 22px;
	font-style: italic;
}
.testTan {
    max-width: 945px;
    margin: 0 auto;
    width: 90%;
	color: #9E8766;
}
.testTan p{
    font-size: 18px;
	font-style: italic;
	color: #9E8766!important;
}
.testTanName p{
    font-size: 14px;
	color: #9E8766!important;
	float: right;
}
.smallItalics{
      font-size: 18px;
    font-size: .68em;
    font-style: italic;
}


main, footer {
    position: relative;
}

.learnMore{
  margin: 50px auto;
}

.blueBg {
    background: #eff6ff;
    padding: 100px 0;
	color: black;
}
.contact{
	align-content: center!important;
	margin: 0 auto;
	display: block;
}
.brownBg {
	background: #c08750;
	margin: 30px 0;
	padding: 50px 0;
	min-height: 380px;
	color: #000;
	background-size: cover;
    background-repeat: no-repeat;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 56%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.brownBg h1{
	color: #000;
	margin-top: 10px;
}
.brownBg h2{
	 color:#342307;
	font-weight: 400;
	font-size: 30px;
	padding-bottom: 10px;
}
.brownBg h3{
	font-size: 30px;
	color: white;
}
.brownBg h4{
	font-size: 24px;
	color: white;
}
.brownBg p{
	color: #fff;
	font-size: 15px;
	margin-bottom: 0px;
}
.blackBg {
    background: #000;
    padding: 100px 0;
	background-repeat: repeat-x;
    z-index: 999;
    background-position: center;
	background-image: url(../images/shape-bkgd.png);
}
.paddingLeft {
	padding-left: 30px;
}
.vertMarg {
	margin-top: -140px!important;
}
.mainCopy{
	    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    
}

.mainCopy h1{
font-family: poppins, sans-serif;
font-weight: 300;
font-style: normal;
	font-size: 60px;
	color: #c08750;
	padding-bottom: 0px;
}
.mainCopy h2{
      color:#342307;
	font-weight: 400;
	font-size: 20px;
	padding-bottom: 10px;
}

.mainCopy img {
    max-width: 500px;

    display: block;
}
.mainCopy2{
	    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0px;
   
}
.mainCopy2 h1{

font-weight: 400;
font-style: normal;
	font-size: 20px;
	color: #85a6c4;
	padding-bottom: 0px;
}
.servBoxes {
    margin: 10px 0px;
	padding: 15px;
	border: solid 1px #e3a149;
	min-height: 550px;
}
.servBoxes p{
    color: white;
}
#website{
  display: none;
}
.formFields input,
.formFields select,
.formFields textarea {
    width: 100%;
    margin-bottom: 10px;
}
.welcome article p {
    color: black;
}
.welcome {
    background: #fff;
}
.whiteBg {
	background: #fff;
}
.whiteBg h1{
	font-size: 60px;
	margin: 20px 0px 40px 0px;
	font-family: poppins,sans-serif;
font-weight: 300;
font-style: normal;
}
.whiteBg p{
	font-size: 20px;
}
.homeTests .two.columns {
    color: #bdbdbd;
}
.newPat a {
    color: #2484bc;
    font-size: 19px;
}
.overlayTxt a {
    font-weight: bold;
}
main form input[type="checkbox"], main form input[type="radio"] {
    display: inline;
    width: auto;
}
main, footer {
    position: relative;
}
main {
    margin-top: 2px;
}
section {
    padding: 50px 0!important;
    box-sizing: border-box;
}

.ui-accordion-content p {
    font-size: 16px;
}
article {
    padding:0 0px!important;
}
.support header {
    top: 0;
}
.ui-accordion-header {
    color: white;
    font-size: 24px;
    line-height: 34px;
    cursor: pointer;
    outline: none;
    border: solid 1px white;
    border-radius: 10px;
}
.ui-accordion-content p {
    margin-top: 0!important;
    text-align: left!important;
}
.ui-accordion-header-active {
    color: #121212;
}
.ui-accordion-content ul {
    text-align: left;
}
.homeTest span {
    font-size: 16px;
}
.headTagline {
    max-width: 600px;
    width: 80%;
}

.footerLogos{
    font-size: 0;
}
.footerLogos img{
  width: 100%;
}
.footerMap{
  position: relative;
	max-height: 450px;
}
.footerOverlay{
    position: absolute;
    top: 0;
    bottom: 0;
    background: #b8cadc;
    /*left: 310px;*/
    box-sizing: border-box;
    text-align: center;
    z-index: 99;
        color: black;
	min-width: 350px;
}
.footerOverlay a {
    color: black;
}
.overlayTxt {
    top: 10%;
    position: relative;
    font-size: 1.5vmax;
    line-height: 25px;
}
.mapIcon{
  display: inline-block;
	padding: 10px;
}
.footerMap iframe {
    width: 100%;
    max-width: none;
}
footer {
    background: #c5af8c;
    padding: 30px 0;
    color: white;
}
footer p {
    color: white;
}
footer a {
    color: white;
}
footer h2{
  color: #fff;
  font-size: 28px;
}
.bottomBorder {
border-bottom: dotted white 2px;
display: block;
max-width: 100%;
}
.line{
	text-decoration-line: underline;
	text-decoration-style: dotted;
	color: white;
}
footer .mainBtn {
    max-width: 310px;
}
footer ul {
    margin: 0;
    list-style: none;
}
.footerPhone{
      text-align: center;
          font-size: 24px;
	color: #fff;
}
.footerPhone a{
  color: #fff;
    text-decoration: none;
}
.socialIcons {
    display: inline-block;
    margin-bottom: 30px;
    width: 10%;
}
.gMap{
width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    height: 280px;
}
.copyright {
    background: #c5af8c;
    position: relative;
}
.copyright p{
	margin:0;
	text-align:center;
	color: white;
}
.copyright a{
	color: white;
}
.parallax {
  background-image: url("../images/largePhoto1.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallaxTwo {
  background-image: url("../images/largePhoto2.jpg");
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main ul {
    font-size: 16px;
}
.support main {
    margin-top: 75px;
}
.support-header main {
    margin-top: 5px;
}
.vertImg{
  max-width: 500px;
}
.offTour img {
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
    display: block;
}
main a {
    color: #000;
}
.hours{
  width: 100%;
    font-size: 18px;
}
main {
    font-size: 18px;
}
.footerHours{
font-size: 18px;
    line-height: 20px;
	margin-top: 20px;
  }
.footerHours h2{
font-size: 24px;
    line-height: 20px;
	margin-top: 20px;
  }
/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

@media screen and (min-width : 1101px){
.navigation{
	display:block!important;/* Fixes issue with desktop links keeping their mobile layout; media queries must follow each other (max = 930 & min = 931) */
}
}
/* For devices larger than 550px */
@media (min-width: 1100px) {
   .headerImg, main, footer, .reviewBg {
    position: relative;
}

  .container {
    width: 95%; }
  .column,
  .columns {
    margin-left: 2%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 47%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }
}

@media screen and (max-width : 1100px){
.brownBg {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
  .homeTests .two.columns {
    display: none;
}
  .smiles img {
    max-width: 300px;
}
  .headerBtns {
    float: none;
    width: 100%;
    margin: 0 auto;
}
	.hidden li a:hover + .hiddenTwo, .hiddenTwo:hover {
    visibility: visible!important;
    position: relative;
    left: 0;
}
.support main, .support footer, .support .copyright {
    top: 0!important;
    margin: 0;
}
  header {
    background-position: inherit;
}
main, footer, .copyright {
    top: 25px;
}
.support .headerImg {
    margin-top: 0px;
}
.support main, .support footer, .support .copyright {
    top: 0;
}
.headerImg {
    position: relative;
        top: 0px;
}
  main iframe{
  width: 100%;
    max-width: 560px;
}
	.navContainer, nav, .navigation {
    width: 100%;
}
  .container {
    width: 95%; }
.logo {
    max-width: 200px;
}
	header .columns {
		text-align: center!important;
}
.contactInfo {
    text-align: center;
}
	nav {
	width: 100%;
  position: relative;
  height: auto;
	}
	/*Make dropdown links appear inline*/
	.navigation {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.navigation li {
		  display: block;
  float: none;
  margin-right: 1px;
      left: auto;
	}
.navigation li a {
    color: white;
	background: #2F281D;
}
	/*Make all menu links full width*/
.navigation li, li a {
    width: 100%;
    background: white;
}
.navigation li ul {
    width: 100%;
    left: 0;
    font-size: 13px;
}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.navigation li a:hover + .hidden, .hidden:hover {
  max-width: 100%;
  position: relative;
	}
.navigation li:hover ul a {
    color: black;
    background: white;
    padding-left: 50px;
    font-size: 13px;
}
.navigation li:hover ul a:hover {
    color: #2F281D;
}
.parallaxTwo, .parallax {
    display: none;
}
#firstLink {
    padding-left: 18px;
}
#tabs li {
    width: 100%;
    box-sizing: border-box;
}
#tabs li a {
    width: 100%;
    background: none;
    display: block;
        box-sizing: border-box;
        outline: none!important;
}
.ui-tabs-panel img {
width: 100%;
    max-width: 442px;
    display: block;
    margin: 0 auto 20px auto;
}
header {
    background-position: inherit;
    background-size: unset;
    position: relative;
}
.vertMarg {
	margin-top: 0px!important;
}

.genServBoxes .servBtn {
    width: 100%!important;
    display: inline-block;
    margin: 0 auto 50px auto;
    max-width: 208px;
}
.genServBoxes,
 .cosServBoxes{
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
footer {
    text-align: center;
}
.tagline {
    width: 90%;
}
footer .mainBtn {
    margin: 0 auto;
}
footer ul {
    text-align: center;
    margin: 30px auto;
}
.headerFb {
    float: none;
}
.header__right {
    text-align: center;
}
.hiddenTwo li {
    padding-left: 20px;
    background: white;
}
}
@media screen and (max-width : 700px){
	.standardBtn {
    cursor: pointer;
    text-align: center;
    border: solid 1px #063a60;
	background: #fff;
	opacity: 0.8;
	z-index: 998;
	position: relative;
	align-content: right;
    color: #fff;
    width: 55%;
    padding: 10px;
	margin: 5px auto;
}
.footerOverlay {
    position: relative;
    left: 0;
}
.overlayTxt {
    line-height: 24px;
}
.headerImg {
    position: relative;
        top: 0px;
}
.mainCopy{
	    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}
.container {
    width: 95%; }
}