/*
* 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
*/


/* 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: 'Work Sans', sans-serif;
  color: #222;
}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #17468a;
}

h2 {
  font-size: 2.0rem;
  line-height: 1.25;
  color: #061223;
}

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: 651px) {
  h1 {
    font-size: 3.0rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 3.6rem;
  }

  h4 {
    font-size: 3.0rem;
  }

  h5 {
    font-size: 2.4rem;
  }

  h6 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #0e74be;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #061223;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #000;
  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: #c0c0c0;
  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 {
  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;
  white-space: normal;
}

/* 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;
}


/* 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) {}

.resize {
  width: 100%;
  height: auto;
}

.line {
  color: #0e74be;
  margin: 0 0 1% 0;
  border-top: 3px solid #0e74be;
  width: 3%;
}

/* Header
-------------------------------------------------------------- */
.header {
  margin: 0.5% 0;
}

.addy {
  box-sizing: border-box;
  float: left;
  padding-right: 2%;
}

.addy a {
  text-decoration: none;
  color: #222;
}

.addy a:hover {
  color: #0e74be;
}

@media (max-width:850px) {
  .addy {
    width: 100%;
  }
}

.contact {
  display: flex;
  justify-content: flex-end;
}

.contact-icon {
  color: #17468a;
  font-size: 2.0rem;
  margin-right: 1%;
}




/* Nav
-------------------------------------------------------------- */
.menu {
  background-color: #17468a;
  font-size: 1.6rem;
}

#nav-trigger {
  display: none;
  text-align: center;
  text-decoration: none;
}

#nav-trigger span {
  display: inline-block;
  padding: 10px 30px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
}

#nav-trigger span:after {
  display: inline-block;
  width: 20px;
  height: 10px;
  content: "";
  border-left: solid 10px transparent;
  border-top: solid 10px #ffffff;
  border-right: solid 10px transparent;
}

#nav-trigger span:hover {
  background-color: #0e74be;
}

#nav-trigger span.open:after {
  border-left: solid 10px transparent;
  border-top: none;
  border-bottom: solid 10px #ffffff;
  border-right: solid 10px transparent;
}

nav {
  z-index: 7;
}

nav#nav-main {
  padding: 0 0;
}

nav#nav-main ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav#nav-main li {
  display: inline-block;
  border-right: solid 1px transparent;
  padding: 5px;
  margin: 0;
  text-transform: uppercase;
}

nav#nav-main li:last-child {
  border-right: none;
}

@media (max-width:1072px) {
  nav#nav-main li {
    border-right: none;
    padding: 5px 1px;
  }
}

nav#nav-main a {
  display: block;
  color: #ffffff;
  padding: 0 15px;
  text-decoration: none;
}


nav#nav-main li a:hover {
  background-color: #0e74bd;
  transition: 0.4s;
}

nav#nav-main li a:active {
  background-color: #0e74bd;
  color: #ffffff;
}

nav#nav-mobile {
  position: relative;
  display: none;
}

nav#nav-mobile ul {
  display: none;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #17468a;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;

}

nav#nav-mobile li {
  display: block;
  padding: 5px 0;
  margin: 0 5px;
  text-transform: uppercase;
}

nav#nav-mobile li:last-child {
  border-bottom: none;
}

nav#nav-mobile a {
  display: block;
  color: #ffffff;
  padding: 5px 10px;
  text-decoration: none;
}

nav#nav-mobile a:hover {
  background-color: #323d47;
  color: #333;
}

@media all and (max-width: 965px) {
  #nav-trigger {
    display: block;
  }

  nav#nav-main {
    display: none;
  }

  nav#nav-mobile {
    display: block;
  }
}


/* Hero - Video
-------------------------------------------------------------- */
.video-container {
  display: flex;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  /*
  max-height: 800px;
  overflow: hidden;
  object-fit: cover;
  top: 0;
  right: 0;
  z-index: -100;
  line-height: 0;*/
}

#video-bg {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  /*
  height: auto;
  background: transparent no-repeat;
  background-size: cover;
  background-position: center;
  margin: auto;*/

}


/* CTA
-------------------------------------------------------------- */
.cta {
  background-color: #c9ced2;
  font-size: 2.4rem;
  text-align: center;
  padding: 0.5% 0;
}

.cta p {
  line-height: 1.2;
  margin-bottom: 1%;
}

.cta a {
  color: #666666;
  text-decoration: none;
}

.cta-icon-square {
  width: 30%;
  padding-bottom: 30%;
  position: relative;
}

.cta-icon {
  background-color: #0e74be;
  border-radius: 50%;
  color: #ffffff;
  font-size: 5.0rem;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.circle-icon:hover {
  background-color: #17468a;
}

.circle-icon {
  background: #0e74be;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  vertical-align: middle;
  font-size: 5.0rem;
  color: #ffffff;
}

@media (max-width:1024px) {
  .circle-icon {
    width: 80px;
    line-height: 80px;
    font-size: 3.0rem;
  }

  .cta p {
    font-size: 2.0rem;
  }
}

/* Homepage Copy
-------------------------------------------------------------- */
.home {
  margin: 2% 0;
}

.home h1 {
  font-size: 3.0rem;
  color: #17468a;
  margin-bottom: 0;
}

.proud {
  font-size: 2.0rem;
  color: #676767;
}

.line2 {
  color: #0e74be;
  margin: 0 0 2% 0;
  border-top: 3px solid #0e74be;
  width: 13%;
}

.home img {
  max-width: 497px;
  text-align: right;
}


.home-title {
  font-size: 3.0rem;
  color: #17468a;
  margin-top: 2%;
}

/* Featured Services
-------------------------------------------------------------- */
.fs h1 {
  font-size: 2.2rem;
  color: #676767;
}

.fs h1 a {
  color: #676767;
}

.fs a {
  text-decoration: none;
  color: #2b2c30;
}

.fs div:hover {
  filter: invert(50%);
}

/* Promo
-------------------------------------------------------------- */
.promo {
  width: 100%;
  float: left;
  box-sizing: border-box;
  position: relative;
  height: 50%;
}

.promo:hover {
  filter: grayscale(100%);
}

.text h1 {
  color: #ffffff;
  font-size: 4.0rem;
}

.text {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

@media (max-width:1000px) {
  .text h1 {
    font-size: 3.0rem;
  }
}


@media (max-width:750px) {
  .text h1 {
    font-size: 2.0rem;
  }
}

@media (max-width:650px) {
  .text h1 {
    font-size: 3.0rem;
  }
}


@media (min-width:651px) {
  .promo {
    width: 50%;
  }
}




/* Reviews
-------------------------------------------------------------- */

.review {
  font-size: 2.4rem;
}

.blue {
  color: #17468a;
}

.quote {
  color: #17468a;
  font-size: 3.5rem;
  float: left;
  padding-right: 1%;
}

.review button {
  background-image: linear-gradient(to right, #17468a, #0e74be);
  background-color: #17468a;
  color: #ffffff;
  height: auto;
  font-size: 1.5rem;
  font-weight: normal;
  border-radius: 50px;
  white-space: normal;
  border: none;
}

.review button:hover {
  filter: grayscale(100%);
  color: #ffffff;
}


/* Smile Gallery
-------------------------------------------------------------- */

.smile img {
  max-width: 878px;
}

.smile {
  text-align: center;
}

.sg {
  margin: 2% 0;
  font-size: 2.0rem;
}

.sg button {
  background-image: linear-gradient(to right, #17468a, #0e74be);
  background-color: #17468a;
  color: #ffffff;
  height: auto;
  font-size: 1.5rem;
  font-weight: normal;
  border-radius: 50px;
  white-space: normal;
  border: none;
}

.sg button:hover {
  filter: grayscale(100%);
  color: #ffffff;
}

/* map
-------------------------------------------------------------- */
.google-maps-full {
  position: relative;
  padding-bottom: 25%;
  height: 0;
  overflow: hidden;
}

.google-maps-full iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width:750px) {
  .google-maps-full {
    padding-bottom: 45%;
  }
}

/* Footer
-------------------------------------------------------------- */

.footer {
  background-color: #061223;
  padding: 2% 0;
  color: #ffffff;
  text-transform: uppercase;
}

.footer a {
  text-decoration: none;
  color: #ffffff;
}

.footer a:hover {
  color: #0e74bd;
}

.footer h1 {
  color: #0e74bd;
  font-size: 1.6rem;
}

.footer ul {
  list-style: none;
}

.footer-title {
  color: #0e74bd;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -.1rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

.footer table {
  margin-bottom: 0;
}

.footer td {
  border-bottom: none;
  padding: 5px 10px;
}

.footer td:first-child {
  padding-left: 0;
}

/* Footer2
-------------------------------------------------------------- */
.footer2 {
  background-color: #0e74bd;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1% 0;
}

.uponline {
  text-align: right;
}

.uponline a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.uponline img {
  max-width: 100px;
}

@media (max-width:650px) {
  .footer2 {
    text-align: center;
  }

  .uponline {
    text-align: center;
  }
}

/* Interior Services
-------------------------------------------------------------- */

.sidebar {
  padding: 1%;
  text-align: center;
  float: left;
  margin-left: 0;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  background-color: #0e74bd;
  margin-bottom: 2%;
  color: #ffffff;
}

.sidebar li a {
  text-decoration: none;
  color: #ffffff;
  padding: 1%;
  font-weight: 500;
}

.sidebar li:hover {
  background-color: #17468a;
}

@media (max-width: 900px) {
  .sidebar {
    font-size: 1.4rem;
  }
}


@media (max-width: 650px) {
  .sidebar {
    font-size: 1.6rem;
  }
}

.int-content {
  float: right;
  padding: 1%;
}


.si-right {
  float: right;
  margin-left: 2%;
  width: 30%;
}

@media (max-width:650px) {
  .si-right {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}


/* Contact Page
-------------------------------------------------------------- */
.ct-title {
  font-size: 2.3rem;
  color: #061223;
  margin-bottom: 1%;
  display: block;
}

.contact-form {
  border: 2px solid #0e74bd;
  padding: 1%;
  border-radius: 8px;
  margin-bottom: 1%;
}

.contact-form input[type="submit"] {
  background-image: linear-gradient(to right, #17468a, #0e74be);
  background-color: #17468a;
  color: #ffffff;
  height: auto;
  font-size: 1.5rem;
  font-weight: normal;
  border-radius: 50px;
  white-space: normal;
  border: none;
}

.contact-form input[type="submit"]:hover {
  filter: grayscale(100%);
  color: #ffffff;
}

/* Team Page
-------------------------------------------------------------- */
.small {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0e74bd;
}

.team-left {
  width: 30%;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
}

/* Smile Gallery
-------------------------------------------------------------- */
.smile-gallery {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 2%;
  -moz-column-gap: 2%;
  -ms-column-gap: 2%;
  -o-column-gap: 2%;
  column-gap: 2%;
  columns: 2;
  text-align: center;
  padding-bottom: 2%;
}

.smile-gallery div {
  margin-bottom: 2%;
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari */
  page-break-inside: avoid;
  /* Theoretically FF 20+ */
  break-inside: avoid-column;
  /* IE 11 */
  display: table;
  /* Actually FF 20+ */
}

.int h1 {
  text-align: center;
  margin-top: 1%;
}



.wsc {
  padding-top: 3%;
}


/* Landing Page
----------------------------------------------------- */
.lp-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #17468a;
  color: #ffffff;
  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: #c0c0c0;
  color: #000;
}

.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;
}

.lp-sidebar h1 {
  color: #ffffff;
  font-size: 2.5rem;
}

.main-lp {
  width: 60%;
  float: left;
  padding-top: 1%;
}

@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) {
  .lp-sidebar {
    display: none;
    width: 100%;
    position: relative;
    margin-bottom: 2%;
    float: none;
    margin-left: 0;

  }

  .main-lp {
    width: 100%;
    float: none;
  }
}

.main-lp h1 {
  color: #0e74bd;
  font-size: 3.0rem;
}

.bio-lp {
  background-image: linear-gradient(to right, #17468a, #0e74be);
  background-color: #17468a;
  padding: 2%;
  color: #ffffff;
}

.bio-lp h1 {
  color: #ffffff;
  font-size: 2.5rem;
}

.left-lp {
  width: 40%;
  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;
  }
}


.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: #1d76c2;
}

.chat-form-show-profile {
  background: #15548D;
  color: #ffffff;
  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: #fff;
  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: #49aa46;
  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: #15548D;
  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: #15548D;
  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: 30px;
  z-index: 9999999999999;
}

@media screen and (min-width:770px) {
  .fixed-chat-button {
    display: none;
  }
}


/* COVID-19 Alert
-------------------------------------------------------------- */
.alert {
  padding: 20px;
  background-color: #17468a;
  color: #FFF;
  position: fixed;
  z-index: 100;
  margin: 5%;
  overflow-y: scroll;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
}

.alert a {
  color: #c9ced2;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

/* Slideshow
-------------------------------------------------------------- */

* {
  box-sizing: border-box
}

body {
  font-family: Verdana, sans-serif;
  margin: 0
}

.mySlides {
  display: none
}

img {
  vertical-align: middle;
}



/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  color: #17468a;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

  .prev,
  .next,
  .text {
    font-size: 11px
  }
}




@media (max-width:650px) {
  .slideshow-container {
    padding: 0 7%;
  }
}

.preheader {
  max-width: 100%;
  background-color: #0e74be;
  text-align: center;
  padding: 10px;
  font-size: 1.75rem;
}

.preheader a {
  transition: 0.3s;
  color: #fff;
}

.preheader a:hover {
  color: #c9ced2;
}

/*Pop-up*/
#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  cursor: pointer;
}

#text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #464646;
  background: #FFFFFF;
  padding: 30px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#close-box {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 15px;
  font-size: 3rem;
}

@media screen and (max-width:770px) {
  #text {
    overflow-y: scroll;
    position: relative;
    top: 50%;
  }
}