/*
* 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
- Media Queries
*/

:root {
	--main: #4092d2;
	--secondary: #cce3ed;
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 651px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .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%; }

}


/* 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: 500;
  font-family: 'Nunito', sans-serif;
  color: #6d6e71;
	margin: 0;
	margin-top: 159px;
}

@media (max-width: 1400px) {
body {
	margin-top: 159px;
}
}

@media (max-width: 650px) {
body {
	margin-top: 270px;
}
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; font-weight:700; line-height: 1.2;  letter-spacing: .1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 3.0rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0;
	font-size: 1.1em;}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: var(--main);
  text-decoration: none;
}
a:hover {
  color: #000000; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #ffffff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  background-color: var(--main);
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.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: #333;
  border-color: #888;
  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 {
  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; }



/* 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 {
  text-align: left;
}
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,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

ul, ol {
	list-style: inside;
}

/* 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; }


/* 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.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

/* SECTIONS
----------------------------------------------------- */

/* Header
----------------------------------------------------- */

header {
    height: 167px;
    position: fixed;
    top: 0;
    transition: top 0.1s ease-in-out;
    width: 100%;
	z-index: 99;
	border-bottom: 1px solid transparent;
}

.nav-up {
    top: -190px;
}

@media (max-width: 650px) {
header {
    height: 260px;
    position: fixed;
    top: 0;
    transition: top 0.1s ease-in-out;
    width: 100%;
	z-index: 99;
	border-bottom: 1px solid transparent;
}

.nav-up {
    top: -277px;
}
}

.top-header, .top-header a {
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 3px 0;
	
}

.top-header a:hover {
	color: var(--main);
}

.menu-row {
	background: var(--main);
	color: white;
	border-bottom: 1px solid var(--main);
}


@media screen and (max-width: 1400px) {
.menu-row {
	min-height: 109px;
}
}

@media screen and (max-width: 800px) {
	.menu-row .container {
		padding-top: 13px;
	}
}

.logo {
	width: 22%;
	float: left;
}

.logo img {
	width: 310px;
	height: auto;
	margin-top:8%;
  
}

.menu {
    width: 60%;
    float: left;
    color: #000;
}

.navbar {
	float: right;
	display: block;
	text-align: center;
	padding: 5% 0;
	width: 100%;
	text-transform: uppercase;
}

.navbar a {
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding: 1% 2%;
	white-space: nowrap;
	line-height: 4.0rem;
	font-size: 1.8rem;
}

@media screen and (max-width:1500px) {
.logo img {
  	width:305px;
}
}

@media screen and (max-width:1480px) {
.logo img {
  	width:270px;
}
}

@media screen and (max-width:1400px) {
.navbar a {
  	font-size: 1.6rem;
}

.logo img {
	width: 240px;
  margin-top:14%;
}

.menu {
	width: 55%;
}
}

@media screen and (max-width:1300px) {
.logo img {
  	width:200px;
}
}

@media screen and (max-width:1200px) {
.navbar a {
  	font-size: 1.4rem;
}
}

@media screen and (max-width:1080px) {
.logo img {
	width: 175px;
}

.navbar a {
  	font-size: 1.2rem;
}
}

@media screen and (max-width:930px) {
.logo img {
	width: 165px;
}

.navbar a {
  	font-size: 1.0rem;
}
}

@media screen and (max-width:975px) {
.menu {
	width: 52%;
}
}

@media screen and (max-width:740px) {
.menu {
	width: 48%;
}
}

.navbar a:hover {
	color: var(--secondary);
	transition: 200ms;
}

.hamburger {
	display: none;
}

.hamburger i {
	font-size: 30px;
}

@media screen and (max-width:890px) {
  .navbar a {display: none;}
  .navbar a.hamburger {
    display: inline-block;
  }
}

@media screen and (max-width:890px) {
  .navbar.responsive {position: relative;}
  .navbar.responsive navbar.hamburger {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navbar.responsive a {
    float: right;
    display: block;
	width: 100%;
	font-size: 2.0rem;
  }
}

.call-us {
	width: 175px;
	float: left;
	text-align: center;
	padding-top: 3%;
}

@media (max-width: 1080px) {
.call-us {
	width: 150px;
}
}
.call-us a{
	color: #fff;
	text-decoration: none;	
}

.call-us a:hover {
	color: var(--secondary);
}

.phone {
    padding: 5px 5px 0 0;
    color: var(--secondary);
}

.call-us p {
	display: inline-block;
	text-align: left;
	line-height: 2.0rem;
	font-size: 1.8rem;
}

@media (max-width: 1080px) {
.call-us p {
	font-size: 1.5rem;
}
}

@media (max-width: 650px) {
	
.top-header, .top-header a {
	font-size: 12px;
}
		
.logo {
    width: 100%;
    display: block;
    text-align: center;
}

.logo img {
    width: 80%;
    height: auto;
    margin: 20px auto;
  
}

.menu {
    width: 50%;
    display: block;
    text-align: center;
    color: #000;
}

.call-us {
	width: 50%;
	float: right;
}
.container .row .call-us {
}


p.phone-icon {
	display: none;
}
}

/* Calls to action
----------------------------------------------------- */

.calls-to-action {
	background: var(--main);
	text-align: center;
	color: rgb(73, 170, 70);
	font-size: 3.0vmin;
	line-height: 3.0vmin;
	margin-top: -5%;
}

.calls-to-action p {
	border-left: 6px solid #4aab47;
	text-transform: uppercase;
}

.c2a, .c2a a {
	display: inline-block;
	padding: 2% 0;
	text-decoration: none;
	color: #ffffff;
}

.c2a:hover {
	color: #4aab47;
}

.border {
	display: inline-block;
	border-radius: 60px;
	border: 1px solid #4aab47;
	box-shadow: 0px 0px 5px #ffffff;
	padding: 0.5em 0.6em;
}


/* Main Area
----------------------------------------------------- */

.main-content {
	padding: 2% 0;
}

.office-title {
	color: var(--main);
}

.phone-call-us {
	color: var(--secondary);
}


/* Sidebar
----------------------------------------------------- */
.sidebar {
	padding: 2% 0;
	text-align:center;
	font-size:1.6rem;
	color:#fff;
}	

.sidebar ul{
	margin-top:0;
	list-style:none;
	padding-inline-start: 0px;
}

.sidebar li{
	background-color: #49AA46;
	color:#fff;
	margin-bottom:2%;
	padding: 5px 5px;
}

.sidebar li:hover{
	filter: brightness(120%);
	color:#fff;
}

.sidebar a {
  display: block;
  text-decoration:none;
  color:#fff;
}

.sidebar a:hover {
	color: #fff;
 }
 
.sidebar h1 {
	color:var(--main);
}

/*Sidebar-Articles
----------------------------------------------------- */

.sidebar-articles {
	text-align:center;
	font-size:1.6rem;
	padding-top: 2%;
}	

.sidebar-articles a {
  text-decoration:none;
  color:#000;
  padding: 5px 5px;
}

.sidebar-articles a:hover {
	color: var(--main);
	filter: brightness(120%);
 }
 
.sidebar-articles h1 {
	display: block;
	background-color: var(--main);
	font-size:2rem;
	color:#fff;
	padding: 5px 5px;
}

/* Blog
  ----------------------------------------------*/
.blog-entries {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.blog-entries div {
    width: 30%;
    min-width: 300px;
}
/* Teeth Whitening
  ––––––––––––––––––––––––––––––––––––––––––––––––––- */

.whitening{
	background-image:url(../../images/teeth-whitening-bg.jpg);
	background-position:left;
	background-repeat:no-repeat;
	background-size: cover;
	padding-top: 5%;
	padding-bottom: 5%;
	font-size:2.0rem;
	text-shadow: 0px 3px 12px #ffffff;
}

.whitening h1{
	font-size:3.5rem;
	margin-bottom:3%;
}

/*
.whitening button{
	border:4px solid #4571B8;
	color:#4571B8;
	font-size:2.5rem;
	height:auto;
	white-space:normal;
}

.whitening button:hover{
	border: 4px solid #333;
	color:#333;
}

/* Invisalign
  ––––––––––––––––––––––––––––––––––––––––––––––––––- */

.invisalign{
	background-image:url("../../images/invisalign-cta.jpg");
	background-position:right;
	background-repeat:no-repeat;
	background-size: cover;
	padding: 5% 0;
	font-size:2.0rem;
  text-align: left;
  position: relative;
}
.invisalign h1{
	font-size:3.5rem;
	margin-bottom:3%;
  color: var(--main);
  text-shadow: 0px 3px 12px #ffffff;
}
@media (max-width:768px){
  .invisalign {
    color: #fff;
    text-shadow: 3px 3px 2px #333333;}
}

.contact {
  width: 45%;
}

@media (max-width:650px){
  .contact {
    width: 100%;
  }
}
  

/* Book Appointment Animation
  ––––––––––––––––––––––––––––––––––––––––––––––––––- */
.appointment {
  background-color: #4aab47;
  padding: 2%;
  margin-bottom: 2%;
  animation-name: zoom-in;
  animation-duration: 3s;
}
@keyframes zoom-in {
  0% {transform: scale(0);}
  100% {transform: scale(1);}
}

.appointment p, h5{
  color: #fff;
}
.appointment h1 {
  color: #f89006;
}
.appointment button{
  background-color: var(--main);
}

/* Homepage Services
  ––––––––––––––––––––––––––––––––––––––––––––––––––- */
.hp-services {
	position: relative;
	margin: 0 auto;
	text-align: center;
	margin: 1%;
}

.hp-services img {
	vertical-align: middle;
}

.hp-services p {
	position: absolute;
	bottom: 0;
    background: rgba(0, 107, 145, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1;
    width: 100%;
    padding: 20px 0;
	text-align: center;
	margin: 0;
	font-size: 2.2rem;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif; 
}

.hp-services:hover {
	filter: brightness(150%);
}



/* Google Reviews
  ––––––––––––––––––––––––––––––––––––––––––––––––––- */

.google-review-bg {
	background-image:url(../../images/google-review.jpg);
	background-position:right;
	background-repeat:no-repeat;
	background-size: cover;
	padding-top: 5%;
	padding-bottom: 5%;
	opacity: 0.7;
}

.google-review {
	padding: 5%;
	color: #000000;
}

/* 7 Reasons
----------------------------------------------------- */

.reasons-bg {
	background-image:url(../../images/7-reasons-bg.jpg);
	background-position:right;
	background-repeat:no-repeat;
	background-size: cover;
	padding-top: 5%;
	padding-bottom: 5%;
}

.reasons {
	text-align: center;
	padding: 5% 0;
}

.reasons p {
	display: inline-block;
	line-height: 3.5rem;
	font-size: 3.5rem;
	text-align: left;
	color: #ffffff;
}

.big {
	line-height: 7.0rem;
	font-size: 7.0rem;
}
	
/* General Classes
----------------------------------------------------- */

.google-maps {
	position: relative;
	overflow: hidden;
	height: 550px;
	margin-bottom:-150px;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	margin-top: -150px;
}

.map-content {
 	position: absolute;
	padding: 2%;
	top: 5%;
  	left: 5%;
  	background: white;
  	box-shadow: 10px 10px 50px #333333;
}

.map-content p {
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	line-height: 16px;	
}

.affiliates {
	padding: 2%;
}

.affiliates p {
	font-size: 2.0rem;
	line-height: 2.0rem;
	font-family: 'roboto', sans-serif;
	color: #49aa46;
}

.affiliates img {
	padding: 10px 0;
}

.content {
	padding: 2% 0;
}
.content h1{
	color:var(--main);
}
.content h2{
	color:#f89006;
}
.content h5{
	color:#49aa46;
}
.content a{
	text-decoration:none;
	color:var(--main);
}
.content a:hover{
	color:#49aa46;
}

.appointment-form {
	border: 1px solid #49AA46;
	border-radius: 15px;
	padding: 4%;
}

/* Team Page Bio
----------------------------------------------------- */
.bio {
	text-align: left;
	font-size: 1.5rem;
	min-width: 200px;
}

.bio div {
    width: 150px;
    height: 275px;
    display: inline-block;
    background: #ffffff;
	text-align: center;
	margin: 5px;
	padding: 5px;
	box-shadow: 1px 1px 3px #888888;
	color: #333333;
	overflow: hidden;
}

.bio a {
	color: #49AA46;
	text-decoration: none;
}

.bio h5 {

}

.bio:after {
    content: '';
    width: 100%; /* Ensures there are at least 2 lines of text, so justification works */
    display: inline-block;
}

.bio p {
	color: var(--main);
	font-weight: 500;
}

.biopage {
	margin: 5px;
	padding: 5px;
}

.bio-image, 
.bio-text {
	float: left; 
	display: table;
}

.bio-image {
	width: 25%;
	text-align: center;
}

.bio-text {
	width: 75%;
	min-height: 200px;
}

.bio-resize {
	width: 150px;
	height: auto;
}


/* FAQ Page - Collapsible
----------------------------------------------------- */
.collapsible {
  background-color: #fff;
  color: var(--main);
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
  padding: 0 2%;
  width: 100%;
  height:auto;
  border: 1px solid var(--main);
  text-align: left;
  text-transform: none;
  outline: none;
  font-size: 1em;
  overflow: hidden;
}

.active, .collapsible:hover {
  background-color: var(--main);
  color:#fff;
  transition: 0.3s;
}

.collapsible-content {
  color:#6d6e71;
  padding: 0 18px;
  max-height:0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


/* Landing Page
----------------------------------------------------- */
.lp-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: var(--secondary);
    color: #000000;
    padding: 1%;
    text-align: center;
    float: right;
    margin-left: 1%;
  
}
.lp-sidebar img{
	max-width:200px;
	margin-bottom:2%;
}

.lp-sidebar input[type="submit"]{
	background-color:var(--main);
}

.lp-sidebar input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	color:#333;
}
	
.main-lp{
	width:60%;
	float:left;}

@media screen and (max-width:1724px){
	.main-lp{
		width:58%;
	}}
	
@media screen and (max-width:1635px){
	.main-lp{
		width: 56%;
	}}	
@media screen and (max-width:1555px){
	.main-lp{
		width:54%;
	}}	
	
@media screen and (max-width:1483px){
	.main-lp{
		width:52%;
	}}	
	
@media screen and (max-width:1417px){
	.lp-sidebar{
		width:40%;
	}}		

@media screen and (max-width:770px){
	.main-content {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.lp-sidebar {
		width:100%;
		margin-bottom:2%;
		float:none;
		margin-left:0;
		margin-top:50px;

	}
	.main-lp {
		width:100%;
		float:none;
	}
}
		
.main-lp h1{
	color: var(--main);
}
		
.bio-lp{
	background-color:var(--secondary);
	padding:2%;
	color:#000000;
}

.bio-lp h1{
	color:#000000;
}

.left-lp{
	width:25%;
	float:left;
	margin-right:2%;
}

.right-lp{
	width:35%;
	float:right;
	margin-left:2%;
}

@media (max-width:650px){
.right-lp{
	width:100%;
	float:none;
	text-align:center;
	margin-left:0;
}
.left-lp{
	width:100%;
	float:none;
	text-align:center;
	margin-right:0;
}
}


/* request button
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.chat-form-contact-form-page{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    position: fixed;
    bottom: 75px;
    right: 8px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #ff9e21;	
}
.chat-form-show-profile{
    background: var(--secondary);
	color: black;
    height: 100%;
    display: block;
    width: 336px;
    bottom: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
	overflow-y: scroll;
	z-index: 99999;			
}
.chat-form-form-profile-img{
    float: left;
}
.chat-form-form-profile-img img{
    border-radius: 50%;
    margin: 20px 0 0 14px;
}
.chat-form-contact-form-page h1{
    font-size: 18px;
    color: black;
    margin: 20px 26px;
    padding: 0px;
    line-height: 29px;
    padding-right: 30px;
}
.chat-form-top-btn{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    text-align: center;
}

.chat-form-header-btn, .chat-form-footer-btn a{
    font-size: 20px;
    color: #fff;
    background: var(--main);
    float: right;
}
.chat-form-form-head{
    display: block;
}
.chat-form-cancel-btn-img{
    position: relative;
}
.chat-form-footer-btn{
    position: relative;
}
.chat-form-buttom-btn{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--main);
    color: #fff;
    padding: 21px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
}
.chat-form-buttom-btn i{
    font-size: 30px;
}
.chat-form-buttom-btn:hover{
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    background:#49aa46;
    color: #fff
}
input.chat-form-form-control {
    height: 40px;
    border-radius: 0;
    outline: none;
}
textarea.chat-form-form-control {
    height: 150px;
    border-radius: 0;
}
.chat-form-contact-form-page form{
    padding: 0 26px;
}
.chat-form-contact-form-page .chat-form-submit-buttom{
    padding: 10px 40px;
    text-align: center;
    display: block;
    border-radius: 0;
    background: #49aa46;
    border: none;
    border-bottom: 5px solid #005B85;
    text-shadow: none;
    box-shadow: none;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}
.chat-form-form-group label{
    font-size: 14px;
    color: #fff;
}

@media screen and (min-width:770px){
.chat-form-contact-form-page {
	display: none;
}
}

/*
    BUTTON OPACITY STYLE
*/
.chat-form-top-btn-show{
    opacity: 1 !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.chat-form-buttom-btn-hide{
    opacity: 0 !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.fixed-chat-button {
 	position: fixed;
  	bottom: 70px;
  	right: 5px; 
	width: 40px;
  	z-index: 9999999999999;
}

@media screen and (min-width:770px){
.fixed-chat-button {
 	display: none;
}
}

/* Footer
----------------------------------------------------- */

.footer {
	border-top: var(--secondary) solid 10px;
	background: var(--main); 
	font-family: 'Montserrat', sans-serif;
	padding-top: 3%;
	color: var(--secondary)
}

.footer h6 {
	font-weight: 900;
	color: var(--secondary);
}


.bottom-nav {
	list-style-type: none;
  	margin: 0;
  	padding: 0;	
}

.footer a {
	text-decoration: none;
	color: var(--secondary);
}

.footer a:hover {
	color: white;
}

/* Footer 2
----------------------------------------------------- */

.footer2{
	background-color: var(--secondary);
	color:#000;
	font-size:1.2rem;
	padding:1% 0;
}

.footer2 a{
	color:#000;
	font-weight:normal;
}

.copy {
	padding-top:2%;
}

.uponline{
	text-align:right;
}

.uponline img{
	max-width:100px;
}

@media (max-width: 550px) {
	.footer {
		text-align: center;
	}
	.footer table {
		margin: 0 auto;
	}
	.footer .columns {
		margin-bottom: 20px;
	}
	.footer2{
		text-align:center;}
	.uponline{
	text-align:center;
}}

/* General classes
----------------------------------------------------- */

.resize {
	width: 100%;
	height: auto;
}

.center {
	text-align: center;
}

.w15, .w25, .w35, .w45 {
	width: 100%;
	text-align: center;
}

.img-left img, .img-right img {
	width: 60%;
	height: auto;
}

@media (min-width: 550px) {
.img-right {
	float: right;
	padding-left: 2%;
}

.img-left {
	float: left;
	padding-right: 2%;
}

.img-left img, .img-right img {
	width: 100%;
	height: auto;
}

.w15 {
	width: 15%;
}

.w25 {
	width: 25%;
}
	
.w35 {
	width: 35%;
}

.w45 {
	width: 45%;
}
}

.white-bg {
	background: #ffffff;
}

.blue-bg {
	background: rgba(66, 145, 173, 0.7);
}

.reviews {
  display: flex;
  justify-content: space-around;
}

.reviews img {
  width: 200px;
}
.request-frame {
  position: relative;
  padding-bottom: 800px;
  height: 0;
  overflow: hidden;
}

.request-frame iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  border: 1px solid #49AA46;
	border-radius: 15px;
}

.alert {
  padding: 20px;
  background-color:  #4aab47;
  color: #FFF;
}

.alert a {
  color: #ffffff;
}


.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: black;
}

.beside-form {
  width: calc(100% - 500px);
  float: left;
}

.screenform {
  width: 500px;
  float: left;
}

@media (max-width: 1000px) {
  .beside-form, .screenform {
  width: 100%;
  float: left;
}
}

.google-maps-home {
overflow: hidden;
}
/* Always set the map height explicitly to define the size of the div
      * element that contains the map. */
     #map {
       height: 400px;
     }
.map-control {
       background-color: #fff;
       border: 1px solid #ccc;
       box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
       font-family: 'Roboto','sans-serif';
       margin: 10px;
       padding-right: 5px;
       /* Hide the control initially, to prevent it from appearing
          before the map loads. */
       display: none;
     }
     /* Display the control once it is inside the map. */
     #map .map-control { display: block; }
     .selector-control {
       font-size: 14px;
       line-height: 30px;
       vertical-align: baseline;
.google-directions {
	text-align:center;
	background-color: #d7d7d7;
	display:flex;
	justify-content:center;
	padding-top:1%;
}

 /* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
      #map {
        height: 100%;
      }
      /* Optional: Makes the sample page fill the window. */
      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
      .map-control {
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0 2px 2px rgba(33, 33, 33, 0.4);
        font-family: 'Roboto','sans-serif';
        margin: 10px;
        padding-right: 5px;
        /* Hide the control initially, to prevent it from appearing
           before the map loads. */
        display: none;
      }
      /* Display the control once it is inside the map. */
      #map .map-control { display: block; }

      .selector-control {
        font-size: 14px;
        line-height: 30px;
        vertical-align: baseline;
      }
