/*



* 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: 1224px;



  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.5em; /* currently ems cause chrome bug misinterpreting rems on body element */



  line-height: 1.6;



  font-weight: 400;



      color: #212121;



	  background: white;



    font-family: 'centuryGothic', sans-serif; }











/* Typography



–––––––––––––––––––––––––––––––––––––––––––––––––– */



h1, h2, h3, h4, h5, h6 {



  margin-top: 0;



  margin-bottom: 20px;



    font-weight: 100;



letter-spacing: -1px;



line-height: 40px;}



h1 { font-size: 1.5em;}



h2 { font-size: 1em; }



h3 { font-size: .75em; }



h4 { font-size: .75em;}



h5 { font-size: .5em;  }



h6 { font-size: .5em;   }



h1, h3, h5{



	color: black;



}



h2, h4, h6{



  color:#0c704e;



}



/*h3, h4, h5, h6 {



    line-height: 20px;



    margin-bottom: 0px;



}*/



@media (min-width: 1001px) {



  h1 {font-size: 2.5em; }



  h2 { font-size: 2em; }



  h3 { font-size: 1.75em; }



  h4 { font-size: 1.5em; }



  h5 { font-size: 1.25em; }



  h6 { font-size: 1em; }



}







p {



  margin-top: 0; }







/* Links



–––––––––––––––––––––––––––––––––––––––––––––––––– */



a {



	color: #147556;



    -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: #191919;



}







/* 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: #147556;



    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: white;



    outline: 0;



    background: #151416;}



.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: 25px



}



.fLeft{



	float:left;



	margin-right: 25px;



}



.fullWidth{



width:100%;



}



.txtLeft{



	text-align:left	;



}



.txtRight{



	text-align:right;



}



.txtCenter{



	text-align:center;



}



.txtCenterImp{



  text-align:center!important;



}



.blockCenter{



	margin:0 auto;



	display:block;



}



.boldTxt{



	font-weight:bold;



}
.boldTxt2{

	font-weight:bold;
	font-size: 18px;

}


.noLeftMargin{



	margin-left: 0!important;



}



.middleVert{



  vertical-align: middle!important;



}



.drImg{



  max-width: 300px;



}



.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;



}



.mainBtn{



  background: #0c548e;



    cursor: pointer;



    width: 100%;



    max-width: 250px;



    text-align: center;



    }



.mainBtn a{



  background: #0c548e;



    padding: 10px 20px;



    box-sizing: border-box;



    cursor: pointer;



    color: white;



    display: block;



}



.mainBtn a:hover{



  background: #F07525;



}



.grayBorder{



  border: solid 1px gray;



}



@font-face {



  font-family: 'centuryGothic';



  src: url('fonts/GOTHIC.TTF')  format('truetype');



}



header {



    position: fixed;



    width: 100%;



    z-index: 999;



    background-position: center;



    background: #f1f4f9;



    background: rgba(241, 244, 249, 0.8);



}



.show-menu:after {



    content: 'Show Menu';



}



input[type=checkbox]:checked ~ .show-menu:after {



    content: 'Close Menu';



}



.relative{



  position: relative;



}



.contactInfo {



    font-size: 20px;



    text-transform: uppercase;



    text-align: right;



    margin-bottom: 0;



    padding-top: 20px;



    color: #147556;



    line-height: 20px;



}



.contactInfo a{



  color: #424242;



    text-decoration: none;



}



.contactNumber a {



color: #147556;



    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{



    border-bottom: 40px solid white;



    padding: 0;



}



nav{



    height: 58px;



    position: relative;



    display: block;



    margin: 0 auto;



	



}



/*Strip the ul of padding and list styling*/



.navigation {



	list-style-type:none;



	margin:0;



	padding:0;



	position: absolute;



  width: 100%;



  top: 8px;



}







/*Create a horizontal list with spacing*/



.navigation li {



    display: inline-block;



    float: left;



    margin-bottom: 0;



    position: relative;



}







/*Style for menu links*/



.navigation li a {



	display:block;



	height: 50px;



	line-height: 50px;



	font-family: 'centuryGothic', "Helvetica Neue", Helvetica, Arial, sans-serif;



	background: none;



	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;



	text-transform: uppercase;



	box-sizing: border-box;



font-size: 15px;



    padding: 0 10px;



        color: black;



}



.navigation li ul li a {



    height: 40px;



    line-height: 40px;



		-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: #0c704e;



}



/*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: 40px;



    line-height: 40px;



    background: #f4f6fa;



    color: #0c704e;



}







/*Hover state for dropdown links*/



.navigation li:hover ul a:hover {



       color: black;



}







/*Hide dropdown links until they are needed*/



.navigation li ul {



visibility: hidden;



padding: 0;



    margin: 0;



}







/*Make dropdown links vertical*/



.navigation li ul li {



	display: block;



	float: none;



}







/*Prevent text wrapping*/



.navigation li ul li a {



	width: auto;



	min-width: 100px;



	padding: 0 20px;



}







/*Display the dropdown on hover*/



.navigation li a:hover + .hidden, .hidden:hover {



visibility: visible;



}







/*Style 'show menu' label button and hide it by default*/



.show-menu {



	text-decoration: none;



	text-align: center;



	padding: 10px 0;



	display: none;



	color: white;



    margin: 0 auto;



    border-top: solid 1px white;



    margin-top: 10px;



    background: #0c704e;



}







/*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: 340px;



    left: 0;



}



#firstLink {



    padding-left: 0;



}



#lastLink {



    padding-right: 0;



}



nav{



    width: 600px;



    float: right;



}



.cycle-slideshow, .cycle-slideshow img {



  width: 100%;



}



/*.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%;



}



.headerTagline {



    position: absolute;



    right: 0;



    width: 100%;



    left: 58%;



    bottom: 20%;



    max-width: 450px;



}



.headerTxt {



    font-size: 40px!important;



    color: #0f4e83;



    line-height: 50px;



    font-weight: 100;



    margin-bottom: 40px;



}



.headerBtn:nth-of-type(odd) {



    margin-left: 1%;



}



.headerBtn {



    position: relative;



    width: 45%;



    height: 80px;



    line-height: 30px;



    display: inline-block;



    margin-top: 15px;



    text-align: center;



    left: 0;



    -webkit-transition: background .15s linear;



    -moz-transition: background .15s linear;



    -ms-transition: background .15s linear;



    -o-transition: background .15s linear;



    transition: background .15s linear;



	background: #F07525;



    border: solid white 1px;



}







.headerBtn:hover {



    background: #af4c0b;



}



.headerBtn a {



    color: #ffffff;



    text-decoration: none;



    display: block;



    padding: 10px;



    box-sizing: border-box;



    font-size: 24px!important;



  }



.reviewBg{



  background-image: url(../images/reviewBg.jpg);



    background-position: center;



    background-size: cover;



    padding: 8px;



        text-align: center;



    top: -8px!important;



    position: relative;



        z-index: 99;



}



.svg-inline--fa.fa-star.fa-w-18.fa-stack-1x.fa-inverse {



    font-size: 1.5em;



}



.reviewBtn{



      display: inline-block;



    vertical-align: middle;



}



.reviewBtn a{



    color: #e0d496;



    text-decoration: none;



    font-size: 24px;



    font-size: 1.45em;



  }



.smallItalics{



      font-size: 18px;



    font-size: .68em;



    font-style: italic;



}



.homeBtn {



    background: #39438a;



    max-width: 210px;



    margin: 30px auto;



}



.homeBtn a {



    display: block;



    color: white;



    text-decoration: none;



}



.left-chevron{



      width: 0;



    height: 0;



    display: inline-block;



    vertical-align: middle;



    border-top: 25px solid transparent;



    border-left: 20px solid #8689ad;



    border-bottom: 25px solid transparent;



}



.btnTxt{



  display: inline-block;



  vertical-align: middle;



  text-align: center;



  width: 78%;



  line-height: 20px;



}



.homeBtn a:hover {



    background: #4c5592;



}



main, footer {



    position: relative;



}



main p {



    font-size: 16px;



}


.grayBg {



    background: #f7f7f7;



}



.mainCopy{



	    max-width: 1224px;



    width: 100%;



    margin: 0 auto;



    padding: 20px;



    box-sizing: border-box;



}


.standardBtn {



text-align: center;



color: #39438B;



float: right;



background: #CABE92;



border-radius: 2px;



font-size: 16px;



line-height: 50px;



width: 100%;



margin: 30px auto 30px auto;



max-width: 420px;



float: none;



	text-decoration: none;



}



.standardBtn a{



text-align: center;



color: #39438B;



float: right;



border-radius: 2px;



font-size: 16px;



line-height: 50px;



width: 100%;



margin: 30px auto 30px auto;



max-width: 420px;



float: none;



	text-decoration: none;



}



.standardBtn:hover {



display: block;



	background-color: #aa9c67;



text-decoration: none;



	color: #39438B;



}







#website{



  display: none;



}



.formFields input,



.formFields select,



.formFields textarea {



    width: 100%;



    margin-bottom: 10px;



}



main form input[type="checkbox"], main form input[type="radio"] {



    display: inline;



    width: auto;



}







main, footer {



    position: relative;



}



.testName{



  font-size: 1.13em;



    font-size: 19px;



}



.serviceBox {



    text-align: center;



}



.serviceBox h4 {



  margin-bottom: 0;



}



.serviceBox h4 a {



    text-transform: uppercase;



    font-weight: bold;



    color: #147556;



}



.serviceBox h4 a:hover,



.hover {



    color: black!important;



}



.testBox {



    margin: 50px auto;



}



.testCopy {



    font-size: 22px;



    color: #147556;



    text-align: center;



    font-weight: bold;



}



.testName {



    margin: 0;



    text-align: center;



    color: #cecece;



}



#prev, #next {



    cursor: pointer;



}







.homeBg {



    background: #f7f7f7;





}



.servBoxes {



    bottom: -120px;



}



.serviceBox img {



    width: 100%;



    max-width: 358px;



}



.supportHeader {



    font-size: 0;



}



.supportHeader img {



    width: 100%;



}



.support .homeBg {



    max-height: none;



}







.testimonial {



    background: #0b6f4d;



    padding: 10px;



    box-sizing: border-box;



    margin-bottom: 50px;



    text-align: center;



    border-radius: 2px;



    box-shadow: 0px 4px 10px 0px #848484;



    color: white;



}



.location p {



    margin-bottom: 0;



}

th:first-child, td:first-child {
    width: 20%;
}

.mapplic-legend {
    display: none;
}
#map-section {
    margin-top: 0;
}
footer {



    background: #147556;



    padding: 20px 0;



    color: white;



}



footer h2{



  color: #b6b4b1;



  text-align: center;



  text-transform: uppercase;



}



.servList{



      text-align: center;



    color: white;



    list-style: none;



    line-height: 20px;



}



.footerPhone{



      text-align: center;



}



.footerPhone a{



  color:white;



    text-decoration: none;



    font-size: 24px;



    font-size: 1.45em;



    font-weight: bold;



}



.socialIcons {



  



    margin-bottom: 20px;



    display: inline-block;



}



.socialIcons a {



    color: white;



}



.socialIcons a:hover {



    color: #191919;



}



.hours{



  font-weight: bold;



  text-transform:uppercase; 



}



.gMap{



width: 100%;



    max-width: 600px;



    margin: 0 auto;



    display: block;



    height: 280px;



}



.copyright {



    background: white;



    position: relative;



}



.copyright p{



	margin:0;



	text-align:center;



}



/* 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) {



  .support .homeTests, .support footer, .support .copyright {



    top: 0;



}



   .headerImg, main, footer, .reviewBg {



    position: relative;



}



.homeTests, footer, .copyright{



    position: relative;



    top: 250px;



}



  .container {



    width: 95%; }



  .column,



  .columns {



    margin-left: 3%;



        padding: 0; }



  .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: 48%;            }



  .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){
.mapplic-tooltip {
    padding-left: 100px;
    width: 180px;
    text-align: center;
}



  .servBoxes {



    text-align: center;



}



  .servBoxes {



    bottom: 0;



}



  header {



    background: #f1f4f9;

    position: relative;

  }



  .supportHeader, .headerImg, main, footer, .copyright {



    top: 0px;



    position: relative;



}



  .serviceBox h4 a {



    font-size: 25px;



}



  .homeBg {



    max-height: none;



}



  .testBox .two.columns {



    width: 13.3333333333%;



}



.testBox .eight.columns {



    width: 65.3333333333%;



}



  header {



    background-position: inherit;



}



  .headerTxt {



    font-size: 22px;



    font-size: 1.25em;



    color: #282419;



    line-height: 50px;



}



  main iframe{



  width: 100%;



    max-width: 560px;



}



	.navContainer, nav, .navigation {



    width: 100%;



}



.headerTagline {



    left: 50%;



    top: 5%;



    max-width: 400px;



}



.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: #282419;



}



	/*Make all menu links full width*/



	.navigation li, li a {



		width: 100%;



    background: #fdf8f8;



	}



	.navigation li ul{



	width:100%;



	}



	/*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: #fdf8f8;



    padding-left: 50px;



}



.navigation li:hover ul a:hover {



    color: #0c704e;



}



#firstLink {



    padding-left: 10px;



}



#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;



}



.invisImg{



  display: block;



}



.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;



}



}







@media screen and (max-width : 830px){



  .headerTxt {



    display: none;



}



  .reviewBg {



        top: 200px!important;



}



	.logo {



	    max-width: 150px;



	}



.headerTxt {



    font-size: 24px;



    font-size: 1.45em;



}







.headerBtn {



    position: relative;



    max-width: 80%;



    display: block;



    margin: 0 auto 5px auto;



}



.headerBtn a {



    padding: 5px;



    box-sizing: border-box;



    font-size: 15px;



    font-size: .9em;



    line-height: 30px;



}



.headerBtn:nth-of-type(odd) {



    left: 0;



}



.headerTagline {



    max-width: 237px;



    right: 8%!important;



    left: auto;



    top: 20%;



}



.headerBtn {



    max-width: 100%;



    width: 100%;



}



.headerBtn:nth-of-type(odd) {



    margin-left: 0;



}



}







 @media screen and (min-width: 800px) and (max-width: 1224px){



.servBoxes .four.columns {



     width: 33%;



    margin: 0 auto;



}



  }



