@charset "UTF-8";

/* ===========================================================
   ASSETS
=========================================================== */
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   Additions
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
}

a, a img, img {
  text-decoration: none;
  outline: 0;
}

a img {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Removes default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===========================================================
   FONT FACE
=========================================================== */
@font-face {
  font-family: "Open Sans";
  src: url("../webfonts/Open_Sans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../webfonts/Open_Sans/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../webfonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../webfonts/Open_Sans/OpenSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* ===========================================================
   BREAKPOINTS
=========================================================== */
/*===========================================================
   FONTS
=========================================================== */
/* ===========================================================
   COLORS
=========================================================== */
/* ===========================================================
   SIZES
=========================================================== */
/* ===========================================================
   BLOG COLORS
=========================================================== */
/* ===========================================================
   MIXINS & EXTENDS
=========================================================== */
.post .postcontent:after, .post .bottommeta:after, .post .topmeta:after, .sidebar:after, .main:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.lte-ie8 .post .postcontent, .post .lte-ie8 .postcontent, .lte-ie8 .post .bottommeta, .post .lte-ie8 .bottommeta, .lte-ie8 .post .topmeta, .post .lte-ie8 .topmeta, .lte-ie8 .sidebar, .lte-ie8 .main {
  zoom: 1;
}

/*ex: @include transition(color, 0.1s); */
/*ex: @include rotate(90); */
/* ===========================================================
   TYPOGRAPHY
=========================================================== */
.fas,
.fa {
  text-transform: none;
}

.fas.green {
  color: #81C629;
}

.fas.orange {
  color: #f7501b;
}

main h1 {
  margin: 0 0 20px;
  font: 700 35px/47px "Open Sans", sans-serif;
  color: #053765;
}
main h2 {
  margin: 0 0 15px;
  font: 700 32px/40px "Open Sans", sans-serif;
  color: #053765;
}
main h3 {
  margin: 0 0 20px;
  font: 700 22px/28px "Open Sans", sans-serif;
  color: #053765;
}
main h3.locations {
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid #053765;
}
main h4 {
  margin: 0 0 5px;
  font: 700 24px/30px "Open Sans", sans-serif;
  color: #053765;
}
main p {
  font-size: 16px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  margin-bottom: 25px;
}
main p a {
  color: #095AA6;
}
main p a:hover {
  text-decoration: underline !important;
}
main ul {
  margin: 0 0 36px 30px;
  list-style: none;
}
main ul li {
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
}
main ul li a {
  color: #053765;
}
main ul li a:hover {
  text-decoration: underline;
}
main ol {
  margin: 0 0 15px 20px;
  list-style: decimal outside;
}
main ol li {
  color: #000;
  font-size: 16px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
}
main ol li a {
  color: #053765;
}
main ol li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  main h1 {
    text-align: left;
  }
  main h2 {
    text-align: left;
  }
}
.page-wrap {
  /*
  ul, ol {
  	margin-bottom: 25px;
  }
     ol {
         list-style: none;
         counter-reset: my-awesome-counter;
         border-top: 1px solid #A8AAA6;
     }
     ol li {
         counter-increment: my-awesome-counter;
         border-bottom: 1px solid #A8AAA6;
         padding: 8px 0 8px 3.5em;
     }
     ol li::before {
         content: counter(my-awesome-counter) ". ";
         font: 700 30px/30px $f-default;
         width: 1.75em;
         margin-left: -1.75em;
     }
     */
}

.glsr-review-title h4 {
  font-size: 17px !important;
  color: #000;
  font-style: italic !important;
}

.glsr-tag-value p {
  font-style: italic !important;
}

/* ===========================================================
   FONT AWESOME
=========================================================== */
/*!
 * Font Awesome Pro 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../webfonts/fa-light-300.eot");
  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-abacus:before {
  content: "\f640";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acorn:before {
  content: "\f6ae";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-conditioner:before {
  content: "\f8f4";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-alarm-exclamation:before {
  content: "\f843";
}

.fa-alarm-plus:before {
  content: "\f844";
}

.fa-alarm-snooze:before {
  content: "\f845";
}

.fa-album:before {
  content: "\f89f";
}

.fa-album-collection:before {
  content: "\f8a0";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alicorn:before {
  content: "\f6b0";
}

.fa-alien:before {
  content: "\f8f5";
}

.fa-alien-monster:before {
  content: "\f8f6";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-slash:before {
  content: "\f846";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-amp-guitar:before {
  content: "\f8a1";
}

.fa-analytics:before {
  content: "\f643";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angel:before {
  content: "\f779";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-crate:before {
  content: "\f6b1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-atom-alt:before {
  content: "\f5d3";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-axe:before {
  content: "\f6b2";
}

.fa-axe-battle:before {
  content: "\f6b3";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backpack:before {
  content: "\f5d4";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "陵";
}

.fa-bacterium:before {
  content: "讀";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-badge-dollar:before {
  content: "\f645";
}

.fa-badge-percent:before {
  content: "\f646";
}

.fa-badge-sheriff:before {
  content: "\f8a2";
}

.fa-badger-honey:before {
  content: "\f6b4";
}

.fa-bags-shopping:before {
  content: "\f847";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ball-pile:before {
  content: "\f77e";
}

.fa-ballot:before {
  content: "\f732";
}

.fa-ballot-check:before {
  content: "\f733";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-banjo:before {
  content: "\f8a3";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-barcode-alt:before {
  content: "\f463";
}

.fa-barcode-read:before {
  content: "\f464";
}

.fa-barcode-scan:before {
  content: "\f465";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball:before {
  content: "\f432";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-basketball-hoop:before {
  content: "\f435";
}

.fa-bat:before {
  content: "\f6b5";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-bed-alt:before {
  content: "\f8f7";
}

.fa-bed-bunk:before {
  content: "\f8f8";
}

.fa-bed-empty:before {
  content: "\f8f9";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-exclamation:before {
  content: "\f848";
}

.fa-bell-on:before {
  content: "\f8fa";
}

.fa-bell-plus:before {
  content: "\f849";
}

.fa-bell-school:before {
  content: "\f5d5";
}

.fa-bell-school-slash:before {
  content: "\f5d6";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bells:before {
  content: "\f77f";
}

.fa-betamax:before {
  content: "\f8a4";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-biking-mountain:before {
  content: "\f84b";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blinds:before {
  content: "\f8fb";
}

.fa-blinds-open:before {
  content: "\f8fc";
}

.fa-blinds-raised:before {
  content: "\f8fd";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bone-break:before {
  content: "\f5d8";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-alt:before {
  content: "\f5d9";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-heart:before {
  content: "\f499";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-book-spells:before {
  content: "\f6b8";
}

.fa-book-user:before {
  content: "\f7e7";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-books:before {
  content: "\f5db";
}

.fa-books-medical:before {
  content: "\f7e8";
}

.fa-boombox:before {
  content: "\f8a5";
}

.fa-boot:before {
  content: "\f782";
}

.fa-booth-curtain:before {
  content: "\f734";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-bottom:before {
  content: "\f84d";
}

.fa-border-center-h:before {
  content: "\f89c";
}

.fa-border-center-v:before {
  content: "\f89d";
}

.fa-border-inner:before {
  content: "\f84e";
}

.fa-border-left:before {
  content: "\f84f";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-outer:before {
  content: "\f851";
}

.fa-border-right:before {
  content: "\f852";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-border-style-alt:before {
  content: "\f854";
}

.fa-border-top:before {
  content: "\f855";
}

.fa-bow-arrow:before {
  content: "\f6b9";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-bowling-pins:before {
  content: "\f437";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-alt:before {
  content: "\f49a";
}

.fa-box-ballot:before {
  content: "\f735";
}

.fa-box-check:before {
  content: "\f467";
}

.fa-box-fragile:before {
  content: "\f49b";
}

.fa-box-full:before {
  content: "\f49c";
}

.fa-box-heart:before {
  content: "\f49d";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "拏";
}

.fa-box-up:before {
  content: "\f49f";
}

.fa-box-usd:before {
  content: "\f4a0";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-boxes-alt:before {
  content: "\f4a1";
}

.fa-boxing-glove:before {
  content: "\f438";
}

.fa-brackets:before {
  content: "\f7e9";
}

.fa-brackets-curly:before {
  content: "\f7ea";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-loaf:before {
  content: "\f7eb";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-bring-forward:before {
  content: "\f856";
}

.fa-bring-front:before {
  content: "\f857";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-bullseye-arrow:before {
  content: "\f648";
}

.fa-bullseye-pointer:before {
  content: "\f649";
}

.fa-burger-soda:before {
  content: "\f858";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-burrito:before {
  content: "\f7ed";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-bus-school:before {
  content: "\f5dd";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-cabinet-filing:before {
  content: "\f64b";
}

.fa-cactus:before {
  content: "\f8a7";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calculator-alt:before {
  content: "\f64c";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-star:before {
  content: "\f736";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camcorder:before {
  content: "\f8a8";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-home:before {
  content: "\f8fe";
}

.fa-camera-movie:before {
  content: "\f8a9";
}

.fa-camera-polaroid:before {
  content: "\f8aa";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campfire:before {
  content: "\f6ba";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candle-holder:before {
  content: "\f6bc";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-candy-corn:before {
  content: "\f6bd";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-building:before {
  content: "\f859";
}

.fa-car-bump:before {
  content: "\f5e0";
}

.fa-car-bus:before {
  content: "\f85a";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-garage:before {
  content: "\f5e2";
}

.fa-car-mechanic:before {
  content: "\f5e3";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-car-tilt:before {
  content: "\f5e5";
}

.fa-car-wash:before {
  content: "\f5e6";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caravan-alt:before {
  content: "豈";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cars:before {
  content: "\f85b";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cassette-tape:before {
  content: "\f8ab";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cat-space:before {
  content: "更";
}

.fa-cauldron:before {
  content: "\f6bf";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cctv:before {
  content: "\f8ac";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chair-office:before {
  content: "\f6c1";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-line-down:before {
  content: "\f64d";
}

.fa-chart-network:before {
  content: "\f78a";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-chart-pie-alt:before {
  content: "\f64e";
}

.fa-chart-scatter:before {
  content: "\f7ee";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-cheese-swiss:before {
  content: "\f7f0";
}

.fa-cheeseburger:before {
  content: "\f7f1";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-bishop-alt:before {
  content: "\f43b";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-clock:before {
  content: "\f43d";
}

.fa-chess-clock-alt:before {
  content: "\f43e";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-king-alt:before {
  content: "\f440";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-knight-alt:before {
  content: "\f442";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-pawn-alt:before {
  content: "\f444";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-queen-alt:before {
  content: "\f446";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chess-rook-alt:before {
  content: "\f448";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chimney:before {
  content: "\f78b";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clarinet:before {
  content: "\f8ad";
}

.fa-claw-marks:before {
  content: "\f6c2";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clipboard-list-check:before {
  content: "\f737";
}

.fa-clipboard-prescription:before {
  content: "\f5e8";
}

.fa-clipboard-user:before {
  content: "\f7f3";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-drizzle:before {
  content: "\f738";
}

.fa-cloud-hail:before {
  content: "\f739";
}

.fa-cloud-hail-mixed:before {
  content: "\f73a";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-music:before {
  content: "\f8ae";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-rainbow:before {
  content: "\f73e";
}

.fa-cloud-showers:before {
  content: "\f73f";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sleet:before {
  content: "\f741";
}

.fa-cloud-snow:before {
  content: "\f742";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-clouds:before {
  content: "\f744";
}

.fa-clouds-moon:before {
  content: "\f745";
}

.fa-clouds-sun:before {
  content: "\f746";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-coffee-pot:before {
  content: "車";
}

.fa-coffee-togo:before {
  content: "\f6c5";
}

.fa-coffin:before {
  content: "\f6c6";
}

.fa-coffin-cross:before {
  content: "陋";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coin:before {
  content: "\f85c";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comet:before {
  content: "賈";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-alt-check:before {
  content: "\f4a2";
}

.fa-comment-alt-dollar:before {
  content: "\f650";
}

.fa-comment-alt-dots:before {
  content: "\f4a3";
}

.fa-comment-alt-edit:before {
  content: "\f4a4";
}

.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fa-comment-alt-lines:before {
  content: "\f4a6";
}

.fa-comment-alt-medical:before {
  content: "\f7f4";
}

.fa-comment-alt-minus:before {
  content: "\f4a7";
}

.fa-comment-alt-music:before {
  content: "\f8af";
}

.fa-comment-alt-plus:before {
  content: "\f4a8";
}

.fa-comment-alt-slash:before {
  content: "\f4a9";
}

.fa-comment-alt-smile:before {
  content: "\f4aa";
}

.fa-comment-alt-times:before {
  content: "\f4ab";
}

.fa-comment-check:before {
  content: "\f4ac";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-edit:before {
  content: "\f4ae";
}

.fa-comment-exclamation:before {
  content: "\f4af";
}

.fa-comment-lines:before {
  content: "\f4b0";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-minus:before {
  content: "\f4b1";
}

.fa-comment-music:before {
  content: "\f8b0";
}

.fa-comment-plus:before {
  content: "\f4b2";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-smile:before {
  content: "\f4b4";
}

.fa-comment-times:before {
  content: "\f4b5";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-alt:before {
  content: "\f4b6";
}

.fa-comments-alt-dollar:before {
  content: "\f652";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-slash:before {
  content: "\f5e9";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-computer-classic:before {
  content: "\f8b1";
}

.fa-computer-speaker:before {
  content: "\f8b2";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-construction:before {
  content: "\f85d";
}

.fa-container-storage:before {
  content: "\f4b7";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-corn:before {
  content: "\f6c7";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cow:before {
  content: "\f6c8";
}

.fa-cowbell:before {
  content: "\f8b3";
}

.fa-cowbell-more:before {
  content: "\f8b4";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-cricket:before {
  content: "\f449";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-croissant:before {
  content: "\f7f6";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-crutches:before {
  content: "\f7f8";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-curling:before {
  content: "\f44a";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dagger:before {
  content: "\f6cb";
}

.fa-dailymotion:before {
  content: "勒";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-debug:before {
  content: "\f7f9";
}

.fa-deer:before {
  content: "\f78e";
}

.fa-deer-rudolph:before {
  content: "\f78f";
}

.fa-deezer:before {
  content: "亮";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dewpoint:before {
  content: "\f748";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d10:before {
  content: "\f6cd";
}

.fa-dice-d12:before {
  content: "\f6ce";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d4:before {
  content: "\f6d0";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-d8:before {
  content: "\f6d2";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digging:before {
  content: "\f85e";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-diploma:before {
  content: "\f5ea";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-disc-drive:before {
  content: "\f8b5";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-do-not-enter:before {
  content: "\f5ec";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dog-leashed:before {
  content: "\f6d4";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-empty:before {
  content: "\f473";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-dolly-flatbed-alt:before {
  content: "\f475";
}

.fa-dolly-flatbed-empty:before {
  content: "\f476";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-circle:before {
  content: "\f5ed";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-draw-square:before {
  content: "\f5ef";
}

.fa-dreidel:before {
  content: "\f792";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-drone:before {
  content: "\f85f";
}

.fa-drone-alt:before {
  content: "\f860";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick:before {
  content: "\f6d6";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dryer:before {
  content: "\f861";
}

.fa-dryer-alt:before {
  content: "\f862";
}

.fa-duck:before {
  content: "\f6d8";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-ear:before {
  content: "\f5f0";
}

.fa-ear-muffs:before {
  content: "\f795";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-eclipse:before {
  content: "\f749";
}

.fa-eclipse-alt:before {
  content: "\f74a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "兩";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-egg-fried:before {
  content: "\f7fc";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-elephant:before {
  content: "\f6da";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-empty-set:before {
  content: "\f656";
}

.fa-engine-warning:before {
  content: "\f5f2";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-dollar:before {
  content: "\f657";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-evil:before {
  content: "\f6db";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fan-table:before {
  content: "滑";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-farm:before {
  content: "\f864";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "串";
}

.fa-faucet-drip:before {
  content: "句";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-field-hockey:before {
  content: "\f44c";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-certificate:before {
  content: "\f5f3";
}

.fa-file-chart-line:before {
  content: "\f659";
}

.fa-file-chart-pie:before {
  content: "\f65a";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-music:before {
  content: "\f8b6";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-search:before {
  content: "\f865";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-spreadsheet:before {
  content: "\f65b";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-user:before {
  content: "\f65c";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-files-medical:before {
  content: "\f7fd";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-film-canister:before {
  content: "\f8b7";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-smoke:before {
  content: "\f74b";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "龜";
}

.fa-fireplace:before {
  content: "\f79a";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fish-cooked:before {
  content: "\f7fe";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-alt:before {
  content: "\f74c";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flame:before {
  content: "\f6df";
}

.fa-flashlight:before {
  content: "\f8b8";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flask-poison:before {
  content: "\f6e0";
}

.fa-flask-potion:before {
  content: "\f6e1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flower:before {
  content: "\f7ff";
}

.fa-flower-daffodil:before {
  content: "\f800";
}

.fa-flower-tulip:before {
  content: "\f801";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-flute:before {
  content: "\f8b9";
}

.fa-flux-capacitor:before {
  content: "\f8ba";
}

.fa-fly:before {
  content: "\f417";
}

.fa-fog:before {
  content: "\f74e";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-download:before {
  content: "肋";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-times:before {
  content: "\f65f";
}

.fa-folder-tree:before {
  content: "\f802";
}

.fa-folder-upload:before {
  content: "凜";
}

.fa-folders:before {
  content: "\f660";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-font-case:before {
  content: "\f866";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-fragile:before {
  content: "\f4bb";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-french-fries:before {
  content: "\f803";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frosty-head:before {
  content: "\f79b";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-function:before {
  content: "\f661";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-galaxy:before {
  content: "龜";
}

.fa-game-board:before {
  content: "\f867";
}

.fa-game-board-alt:before {
  content: "\f868";
}

.fa-game-console-handheld:before {
  content: "\f8bb";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gamepad-alt:before {
  content: "\f8bc";
}

.fa-garage:before {
  content: "契";
}

.fa-garage-car:before {
  content: "金";
}

.fa-garage-open:before {
  content: "喇";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gas-pump-slash:before {
  content: "\f5f4";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gift-card:before {
  content: "\f663";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-gingerbread-man:before {
  content: "\f79d";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass:before {
  content: "\f804";
}

.fa-glass-champagne:before {
  content: "\f79e";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-citrus:before {
  content: "\f869";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glasses-alt:before {
  content: "\f5f5";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-globe-snow:before {
  content: "\f7a3";
}

.fa-globe-stand:before {
  content: "\f5f6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-golf-club:before {
  content: "\f451";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "凉";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gramophone:before {
  content: "\f8bd";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-guitar-electric:before {
  content: "\f8be";
}

.fa-guitars:before {
  content: "\f8bf";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-h4:before {
  content: "\f86a";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hammer-war:before {
  content: "\f6e4";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-heart:before {
  content: "\f4bc";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-magic:before {
  content: "\f6e5";
}

.fa-hand-holding-medical:before {
  content: "樂";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-receiving:before {
  content: "\f47c";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "諾";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-heart:before {
  content: "\f4c3";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

.fa-hands-wash:before {
  content: "丹";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt:before {
  content: "\f4c6";
}

.fa-handshake-alt-slash:before {
  content: "寧";
}

.fa-handshake-slash:before {
  content: "怒";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-chef:before {
  content: "\f86b";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-santa:before {
  content: "\f7a7";
}

.fa-hat-winter:before {
  content: "\f7a8";
}

.fa-hat-witch:before {
  content: "\f6e7";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side:before {
  content: "\f6e9";
}

.fa-head-side-brain:before {
  content: "\f808";
}

.fa-head-side-cough:before {
  content: "率";
}

.fa-head-side-cough-slash:before {
  content: "異";
}

.fa-head-side-headphones:before {
  content: "\f8c2";
}

.fa-head-side-mask:before {
  content: "北";
}

.fa-head-side-medical:before {
  content: "\f809";
}

.fa-head-side-virus:before {
  content: "磻";
}

.fa-head-vr:before {
  content: "\f6ea";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heart-circle:before {
  content: "\f4c7";
}

.fa-heart-rate:before {
  content: "\f5f8";
}

.fa-heart-square:before {
  content: "\f4c8";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-heat:before {
  content: "奈";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-helmet-battle:before {
  content: "\f6eb";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-mask:before {
  content: "\f6ee";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-hockey-sticks:before {
  content: "\f454";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-home-alt:before {
  content: "\f80a";
}

.fa-home-heart:before {
  content: "\f4c9";
}

.fa-home-lg:before {
  content: "\f80b";
}

.fa-home-lg-alt:before {
  content: "\f80c";
}

.fa-hood-cloak:before {
  content: "\f6ef";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-horizontal-rule:before {
  content: "\f86c";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-horse-saddle:before {
  content: "\f8c3";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hospitals:before {
  content: "\f80e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house:before {
  content: "懶";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-day:before {
  content: "癩";
}

.fa-house-flood:before {
  content: "\f74f";
}

.fa-house-leave:before {
  content: "羅";
}

.fa-house-night:before {
  content: "蘿";
}

.fa-house-return:before {
  content: "螺";
}

.fa-house-signal:before {
  content: "裸";
}

.fa-house-user:before {
  content: "便";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-humidity:before {
  content: "\f750";
}

.fa-hurricane:before {
  content: "\f751";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-ice-skate:before {
  content: "\f7ac";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-icons-alt:before {
  content: "\f86e";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "邏";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-image-polaroid:before {
  content: "\f8c4";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-inhaler:before {
  content: "\f5f9";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "凌";
}

.fa-integral:before {
  content: "\f667";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-intersection:before {
  content: "\f668";
}

.fa-inventory:before {
  content: "\f480";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-island-tropical:before {
  content: "\f811";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-joystick:before {
  content: "\f8c5";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-jug:before {
  content: "\f8c6";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-kazoo:before {
  content: "\f8c7";
}

.fa-kerning:before {
  content: "\f86f";
}

.fa-key:before {
  content: "\f084";
}

.fa-key-skeleton:before {
  content: "\f6f3";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-keynote:before {
  content: "\f66c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kidneys:before {
  content: "\f5fb";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kite:before {
  content: "\f6f4";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-knife-kitchen:before {
  content: "\f6f5";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-lambda:before {
  content: "\f66e";
}

.fa-lamp:before {
  content: "\f4ca";
}

.fa-lamp-desk:before {
  content: "樂";
}

.fa-lamp-floor:before {
  content: "洛";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-landmark-alt:before {
  content: "\f752";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "復";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lasso:before {
  content: "\f8c8";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-layer-minus:before {
  content: "\f5fe";
}

.fa-layer-plus:before {
  content: "\f5ff";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leaf-heart:before {
  content: "\f4cb";
}

.fa-leaf-maple:before {
  content: "\f6f6";
}

.fa-leaf-oak:before {
  content: "\f6f7";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-light-ceiling:before {
  content: "烙";
}

.fa-light-switch:before {
  content: "珞";
}

.fa-light-switch-off:before {
  content: "落";
}

.fa-light-switch-on:before {
  content: "酪";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-lightbulb-dollar:before {
  content: "\f670";
}

.fa-lightbulb-exclamation:before {
  content: "\f671";
}

.fa-lightbulb-on:before {
  content: "\f672";
}

.fa-lightbulb-slash:before {
  content: "\f673";
}

.fa-lights-holiday:before {
  content: "\f7b2";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-line-columns:before {
  content: "\f870";
}

.fa-line-height:before {
  content: "\f871";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lips:before {
  content: "\f600";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-music:before {
  content: "\f8c9";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location:before {
  content: "\f601";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-circle:before {
  content: "\f602";
}

.fa-location-slash:before {
  content: "\f603";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-loveseat:before {
  content: "\f4cc";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "不";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-mace:before {
  content: "\f6f8";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailbox:before {
  content: "\f813";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-mandolin:before {
  content: "\f6f9";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-marker-alt-slash:before {
  content: "\f605";
}

.fa-map-marker-check:before {
  content: "\f606";
}

.fa-map-marker-edit:before {
  content: "\f607";
}

.fa-map-marker-exclamation:before {
  content: "\f608";
}

.fa-map-marker-minus:before {
  content: "\f609";
}

.fa-map-marker-plus:before {
  content: "\f60a";
}

.fa-map-marker-question:before {
  content: "\f60b";
}

.fa-map-marker-slash:before {
  content: "\f60c";
}

.fa-map-marker-smile:before {
  content: "\f60d";
}

.fa-map-marker-times:before {
  content: "\f60e";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-meat:before {
  content: "\f814";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaphone:before {
  content: "\f675";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "駱";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microphone-stand:before {
  content: "\f8cb";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-microwave:before {
  content: "亂";
}

.fa-mind-share:before {
  content: "\f677";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mistletoe:before {
  content: "\f7b4";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "稜";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-money-check-edit:before {
  content: "\f872";
}

.fa-money-check-edit-alt:before {
  content: "\f873";
}

.fa-monitor-heart-rate:before {
  content: "\f611";
}

.fa-monkey:before {
  content: "\f6fb";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-moon-cloud:before {
  content: "\f754";
}

.fa-moon-stars:before {
  content: "\f755";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mountains:before {
  content: "\f6fd";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-alt:before {
  content: "\f8cd";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mp3-player:before {
  content: "\f8ce";
}

.fa-mug:before {
  content: "\f874";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-mug-marshmallows:before {
  content: "\f7b7";
}

.fa-mug-tea:before {
  content: "\f875";
}

.fa-music:before {
  content: "\f001";
}

.fa-music-alt:before {
  content: "\f8cf";
}

.fa-music-alt-slash:before {
  content: "\f8d0";
}

.fa-music-slash:before {
  content: "\f8d1";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-narwhal:before {
  content: "\f6fe";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-oil-temp:before {
  content: "\f614";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-omega:before {
  content: "\f67a";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-ornament:before {
  content: "\f7b8";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-outlet:before {
  content: "卵";
}

.fa-oven:before {
  content: "欄";
}

.fa-overline:before {
  content: "\f876";
}

.fa-page-break:before {
  content: "\f877";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-brush-alt:before {
  content: "\f5a9";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-pallet-alt:before {
  content: "\f483";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-paragraph-rtl:before {
  content: "\f878";
}

.fa-parking:before {
  content: "\f540";
}

.fa-parking-circle:before {
  content: "\f615";
}

.fa-parking-circle-slash:before {
  content: "\f616";
}

.fa-parking-slash:before {
  content: "\f617";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paw-alt:before {
  content: "\f701";
}

.fa-paw-claws:before {
  content: "\f702";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pegasus:before {
  content: "\f703";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-paintbrush:before {
  content: "\f618";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "泌";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-person-carry:before {
  content: "\f4cf";
}

.fa-person-dolly:before {
  content: "\f4d0";
}

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

.fa-person-sign:before {
  content: "\f757";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-laptop:before {
  content: "\f87a";
}

.fa-phone-office:before {
  content: "\f67d";
}

.fa-phone-plus:before {
  content: "\f4d2";
}

.fa-phone-rotary:before {
  content: "\f8d3";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pi:before {
  content: "\f67e";
}

.fa-piano:before {
  content: "\f8d4";
}

.fa-piano-keyboard:before {
  content: "\f8d5";
}

.fa-pie:before {
  content: "\f705";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "爛";
}

.fa-pig:before {
  content: "\f706";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza:before {
  content: "\f817";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "數";
}

.fa-planet-moon:before {
  content: "蘭";
}

.fa-planet-ringed:before {
  content: "鸞";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-podium:before {
  content: "\f680";
}

.fa-podium-star:before {
  content: "\f758";
}

.fa-police-box:before {
  content: "嵐";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poll-people:before {
  content: "\f759";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-popcorn:before {
  content: "\f819";
}

.fa-portal-enter:before {
  content: "濫";
}

.fa-portal-exit:before {
  content: "藍";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-presentation:before {
  content: "\f685";
}

.fa-print:before {
  content: "\f02f";
}

.fa-print-search:before {
  content: "\f81a";
}

.fa-print-slash:before {
  content: "\f686";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-projector:before {
  content: "\f8d6";
}

.fa-pump-medical:before {
  content: "索";
}

.fa-pump-soap:before {
  content: "參";
}

.fa-pumpkin:before {
  content: "\f707";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-rabbit:before {
  content: "\f708";
}

.fa-rabbit-fast:before {
  content: "\f709";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-radar:before {
  content: "襤";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-radio:before {
  content: "\f8d7";
}

.fa-radio-alt:before {
  content: "\f8d8";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-raindrops:before {
  content: "\f75c";
}

.fa-ram:before {
  content: "\f70a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-raygun:before {
  content: "拉";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-refrigerator:before {
  content: "臘";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-rings-wedding:before {
  content: "\f81b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocket-launch:before {
  content: "蠟";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-route-highway:before {
  content: "\f61a";
}

.fa-route-interstate:before {
  content: "\f61b";
}

.fa-router:before {
  content: "\f8da";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-triangle:before {
  content: "\f61c";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "梁";
}

.fa-rv:before {
  content: "\f7be";
}

.fa-sack:before {
  content: "\f81c";
}

.fa-sack-dollar:before {
  content: "\f81d";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salad:before {
  content: "\f81e";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sandwich:before {
  content: "\f81f";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-sausage:before {
  content: "\f820";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-sax-hot:before {
  content: "\f8db";
}

.fa-saxophone:before {
  content: "\f8dc";
}

.fa-scalpel:before {
  content: "\f61d";
}

.fa-scalpel-path:before {
  content: "\f61e";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-image:before {
  content: "\f8f3";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-scarecrow:before {
  content: "\f70d";
}

.fa-scarf:before {
  content: "\f7c1";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-old:before {
  content: "\f70f";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-scythe:before {
  content: "\f710";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-send-back:before {
  content: "\f87e";
}

.fa-send-backward:before {
  content: "\f87f";
}

.fa-sensor:before {
  content: "廊";
}

.fa-sensor-alert:before {
  content: "朗";
}

.fa-sensor-fire:before {
  content: "浪";
}

.fa-sensor-on:before {
  content: "狼";
}

.fa-sensor-smoke:before {
  content: "郎";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-sheep:before {
  content: "\f711";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-shield-cross:before {
  content: "\f712";
}

.fa-shield-virus:before {
  content: "塞";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shish-kebab:before {
  content: "\f821";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "綾";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shovel:before {
  content: "\f713";
}

.fa-shovel-snow:before {
  content: "\f7c3";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shredder:before {
  content: "\f68a";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sickle:before {
  content: "\f822";
}

.fa-sigma:before {
  content: "\f68b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signal-1:before {
  content: "\f68c";
}

.fa-signal-2:before {
  content: "\f68d";
}

.fa-signal-3:before {
  content: "\f68e";
}

.fa-signal-4:before {
  content: "\f68f";
}

.fa-signal-alt:before {
  content: "\f690";
}

.fa-signal-alt-1:before {
  content: "\f691";
}

.fa-signal-alt-2:before {
  content: "\f692";
}

.fa-signal-alt-3:before {
  content: "\f693";
}

.fa-signal-alt-slash:before {
  content: "\f694";
}

.fa-signal-slash:before {
  content: "\f695";
}

.fa-signal-stream:before {
  content: "\f8dd";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "省";
}

.fa-siren:before {
  content: "來";
}

.fa-siren-on:before {
  content: "冷";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-skeleton:before {
  content: "\f620";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-ski-jump:before {
  content: "\f7c7";
}

.fa-ski-lift:before {
  content: "\f7c8";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-cow:before {
  content: "\f8de";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sledding:before {
  content: "\f7cb";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoke:before {
  content: "\f760";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snake:before {
  content: "\f716";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snooze:before {
  content: "\f880";
}

.fa-snow-blowing:before {
  content: "\f761";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowflakes:before {
  content: "\f7cf";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowmobile:before {
  content: "\f7d1";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "葉";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-solar-system:before {
  content: "勞";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-alt:before {
  content: "\f883";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-circle:before {
  content: "擄";
}

.fa-sort-circle-down:before {
  content: "櫓";
}

.fa-sort-circle-up:before {
  content: "爐";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-shapes-down:before {
  content: "\f888";
}

.fa-sort-shapes-down-alt:before {
  content: "\f889";
}

.fa-sort-shapes-up:before {
  content: "\f88a";
}

.fa-sort-shapes-up-alt:before {
  content: "\f88b";
}

.fa-sort-size-down:before {
  content: "\f88c";
}

.fa-sort-size-down-alt:before {
  content: "\f88d";
}

.fa-sort-size-up:before {
  content: "\f88e";
}

.fa-sort-size-up-alt:before {
  content: "\f88f";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-soup:before {
  content: "\f823";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-space-station-moon:before {
  content: "盧";
}

.fa-space-station-moon-alt:before {
  content: "老";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-sparkles:before {
  content: "\f890";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker:before {
  content: "\f8df";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-speakers:before {
  content: "\f8e0";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spider-black-widow:before {
  content: "\f718";
}

.fa-spider-web:before {
  content: "\f719";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-sprinkler:before {
  content: "蘆";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root:before {
  content: "\f697";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-squirrel:before {
  content: "\f71a";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staff:before {
  content: "\f71b";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-christmas:before {
  content: "\f7d4";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-star-shooting:before {
  content: "虜";
}

.fa-starfighter:before {
  content: "路";
}

.fa-starfighter-alt:before {
  content: "露";
}

.fa-stars:before {
  content: "\f762";
}

.fa-starship:before {
  content: "魯";
}

.fa-starship-freighter:before {
  content: "鷺";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steak:before {
  content: "\f824";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-steering-wheel:before {
  content: "\f622";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stocking:before {
  content: "\f7d5";
}

.fa-stomach:before {
  content: "\f623";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "說";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "殺";
}

.fa-store-slash:before {
  content: "辰";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-stretcher:before {
  content: "\f825";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-sun-cloud:before {
  content: "\f763";
}

.fa-sun-dust:before {
  content: "\f764";
}

.fa-sun-haze:before {
  content: "\f765";
}

.fa-sunglasses:before {
  content: "\f892";
}

.fa-sunrise:before {
  content: "\f766";
}

.fa-sunset:before {
  content: "\f767";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sword:before {
  content: "\f71c";
}

.fa-sword-laser:before {
  content: "碌";
}

.fa-sword-laser-alt:before {
  content: "祿";
}

.fa-swords:before {
  content: "\f71d";
}

.fa-swords-laser:before {
  content: "綠";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-tachometer-alt-fast:before {
  content: "\f625";
}

.fa-tachometer-alt-fastest:before {
  content: "\f626";
}

.fa-tachometer-alt-slow:before {
  content: "\f627";
}

.fa-tachometer-alt-slowest:before {
  content: "\f628";
}

.fa-tachometer-average:before {
  content: "\f629";
}

.fa-tachometer-fast:before {
  content: "\f62a";
}

.fa-tachometer-fastest:before {
  content: "\f62b";
}

.fa-tachometer-slow:before {
  content: "\f62c";
}

.fa-tachometer-slowest:before {
  content: "\f62d";
}

.fa-taco:before {
  content: "\f826";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tally:before {
  content: "\f69c";
}

.fa-tanakh:before {
  content: "\f827";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-tasks-alt:before {
  content: "\f828";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-telescope:before {
  content: "菉";
}

.fa-temperature-down:before {
  content: "錄";
}

.fa-temperature-frigid:before {
  content: "\f768";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-hot:before {
  content: "\f76a";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-temperature-up:before {
  content: "鹿";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text:before {
  content: "\f893";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-size:before {
  content: "\f894";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-theta:before {
  content: "\f69e";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-thunderstorm:before {
  content: "\f76c";
}

.fa-thunderstorm-moon:before {
  content: "\f76d";
}

.fa-thunderstorm-sun:before {
  content: "\f76e";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "糧";
}

.fa-tilde:before {
  content: "\f69f";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tire:before {
  content: "\f631";
}

.fa-tire-flat:before {
  content: "\f632";
}

.fa-tire-pressure-warning:before {
  content: "\f633";
}

.fa-tire-rugged:before {
  content: "\f634";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-alt:before {
  content: "\f71f";
}

.fa-toilet-paper-slash:before {
  content: "沈";
}

.fa-tombstone:before {
  content: "\f720";
}

.fa-tombstone-alt:before {
  content: "\f721";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-toothbrush:before {
  content: "\f635";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-cone:before {
  content: "\f636";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-traffic-light-go:before {
  content: "\f638";
}

.fa-traffic-light-slow:before {
  content: "\f639";
}

.fa-traffic-light-stop:before {
  content: "\f63a";
}

.fa-trailer:before {
  content: "論";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-transporter:before {
  content: "壟";
}

.fa-transporter-1:before {
  content: "弄";
}

.fa-transporter-2:before {
  content: "籠";
}

.fa-transporter-3:before {
  content: "聾";
}

.fa-transporter-empty:before {
  content: "牢";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-trash-undo:before {
  content: "\f895";
}

.fa-trash-undo-alt:before {
  content: "\f896";
}

.fa-treasure-chest:before {
  content: "\f723";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-tree-christmas:before {
  content: "\f7db";
}

.fa-tree-decorated:before {
  content: "\f7dc";
}

.fa-tree-large:before {
  content: "\f7dd";
}

.fa-tree-palm:before {
  content: "\f82b";
}

.fa-trees:before {
  content: "\f724";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-triangle-music:before {
  content: "\f8e2";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plow:before {
  content: "\f7de";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-trumpet:before {
  content: "\f8e3";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-turkey:before {
  content: "\f725";
}

.fa-turntable:before {
  content: "\f8e4";
}

.fa-turtle:before {
  content: "\f726";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-alt:before {
  content: "\f8e5";
}

.fa-tv-music:before {
  content: "\f8e6";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typewriter:before {
  content: "\f8e7";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-ufo:before {
  content: "磊";
}

.fa-ufo-beam:before {
  content: "賂";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-unicorn:before {
  content: "\f727";
}

.fa-union:before {
  content: "\f6a2";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "雷";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "良";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usb-drive:before {
  content: "\f8e9";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alien:before {
  content: "壘";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-chart:before {
  content: "\f6a3";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-cowboy:before {
  content: "\f8ea";
}

.fa-user-crown:before {
  content: "\f6a4";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-hard-hat:before {
  content: "\f82c";
}

.fa-user-headset:before {
  content: "\f82d";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-md-chat:before {
  content: "\f82e";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-music:before {
  content: "\f8eb";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-robot:before {
  content: "屢";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-user-unlock:before {
  content: "菱";
}

.fa-user-visor:before {
  content: "樓";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-class:before {
  content: "\f63d";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-crown:before {
  content: "\f6a5";
}

.fa-users-medical:before {
  content: "\f830";
}

.fa-users-slash:before {
  content: "拾";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vacuum:before {
  content: "淚";
}

.fa-vacuum-robot:before {
  content: "漏";
}

.fa-value-absolute:before {
  content: "\f6a6";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vhs:before {
  content: "\f8ec";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-violin:before {
  content: "\f8ed";
}

.fa-virus:before {
  content: "若";
}

.fa-virus-slash:before {
  content: "掠";
}

.fa-viruses:before {
  content: "略";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume:before {
  content: "\f6a8";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-slash:before {
  content: "\f2e2";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-nay:before {
  content: "\f771";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-wagon-covered:before {
  content: "\f8ee";
}

.fa-walker:before {
  content: "\f831";
}

.fa-walkie-talkie:before {
  content: "\f8ef";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-wand:before {
  content: "\f72a";
}

.fa-wand-magic:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-washer:before {
  content: "\f898";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-watch-calculator:before {
  content: "\f8f0";
}

.fa-watch-fitness:before {
  content: "\f63e";
}

.fa-water:before {
  content: "\f773";
}

.fa-water-lower:before {
  content: "\f774";
}

.fa-water-rise:before {
  content: "\f775";
}

.fa-wave-sine:before {
  content: "\f899";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-wave-triangle:before {
  content: "\f89a";
}

.fa-waveform:before {
  content: "\f8f1";
}

.fa-waveform-path:before {
  content: "\f8f2";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-webcam:before {
  content: "\f832";
}

.fa-webcam-slash:before {
  content: "\f833";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whale:before {
  content: "\f72c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheat:before {
  content: "\f72d";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wifi-1:before {
  content: "\f6aa";
}

.fa-wifi-2:before {
  content: "\f6ab";
}

.fa-wifi-slash:before {
  content: "\f6ac";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-wind-turbine:before {
  content: "\f89b";
}

.fa-wind-warning:before {
  content: "\f776";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-frame:before {
  content: "累";
}

.fa-window-frame-open:before {
  content: "縷";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-windsock:before {
  content: "\f777";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wreath:before {
  content: "\f7e2";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

a {
  color: #053765;
}

/* ===========================================================
   VENDORS
=========================================================== */
/* ===========================================================
   WP STYLES
=========================================================== */
#wpadminbar {
  z-index: 9999999;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

img.alignleft, .wp-caption.alignleft {
  margin: 0 12px 4px 0;
}

img.alignright, .wp-caption.alignright {
  margin: 0 0 4px 12px;
}

img.aligncenter, .wp-caption.aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  margin: 10px 0;
  padding: 4px 0 0;
  text-align: center;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.wp-caption .wp-caption-text {
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

@media screen and (max-width: 700px) {
  img.alignleft, img.alignright, img.aligncenter, .wp-caption.alignleft, .wp-caption.alignright, .wp-caption.aligncenter {
    display: block !important;
    margin: 0 auto !important;
    float: none !important;
  }
}
/* ===========================================================
   DEFAULTS
=========================================================== */
/* ===========================================================
   DEFAULTS
=========================================================== */
body {
  font-size: 16px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  color: #000;
  background-color: #fff;
  text-transform: none;
}
body .mobile-search {
  display: none;
}
body .mobile-search.active {
  display: flex;
  position: fixed;
  z-index: 99999999;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  flex-wrap: nowrap;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
}
body .mobile-search .search-form {
  margin: 0;
  max-width: none;
  width: 100%;
  margin-right: 20px;
}
body .mobile-search .search-form__field {
  background: #fff;
  color: #095AA6;
}
body .mobile-search .search-form__btn {
  color: #095AA6;
}
body .mobile-search button {
  border: 0;
  -webkit-appearance: none;
  padding: 10px 24px;
}
body img.mobileonly {
  display: none;
}
@media screen and (max-width: 550px) {
  body img.mobileonly {
    display: block;
  }
}
@media screen and (max-width: 550px) {
  body .desktop {
    display: none !important;
  }
}
body .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
body .video-container iframe,
body .video-container object,
body .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .roundedwpr img {
  border-radius: 10px;
}
body .gform_wrapper .top_label li.gfield.gf_left_half:before {
  content: none;
}
@media screen and (max-width: 1100px) {
  body .gform_wrapper .top_label li.gfield#field_6_4 {
    float: left;
    width: 50%;
  }
}
@media screen and (max-width: 425px) {
  body .gform_wrapper .top_label li.gfield#field_6_4 {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  body .gform_wrapper .top_label li.gfield#field_6_5 {
    float: left;
    width: 50%;
    clear: none;
  }
}
@media screen and (max-width: 425px) {
  body .gform_wrapper .top_label li.gfield#field_6_5 {
    clear: both;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  body .gform_wrapper .top_label li.gfield #input_13_11,
body .gform_wrapper .top_label li.gfield #input_13_3,
body .gform_wrapper .top_label li.gfield #input_13_12,
body .gform_wrapper .top_label li.gfield #input_13_20,
body .gform_wrapper .top_label li.gfield #input_13_24,
body .gform_wrapper .top_label li.gfield #input_13_22,
body .gform_wrapper .top_label li.gfield #input_13_28_5_container,
body .gform_wrapper .top_label li.gfield #input_13_19_5_container {
    width: 100%;
  }
}
body .gform_wrapper.gf_browser_chrome .gfield_checkbox li input, body .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox] {
  margin-top: 0;
}
body .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 2px;
}
@media screen and (max-width: 425px) {
  body .gform_wrapper #input_6_10 > div,
body .gform_wrapper #input_13_10 > div,
body .gform_wrapper #input_16_9 > div {
    width: 100% !important;
  }
  body .gform_wrapper #input_6_10 > div iframe,
body .gform_wrapper #input_13_10 > div iframe,
body .gform_wrapper #input_16_9 > div iframe {
    display: block;
    margin: 0 auto;
  }
}

* {
  box-sizing: border-box;
}

a {
  color: #053765;
}

img {
  max-width: 100%;
  height: auto;
}

input, select, textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  border: 1px #095AA6 solid;
}

input[type=submit], button, .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #095AA6;
  border-radius: 5px;
  color: #fff;
  font: 700 18px/24px "Open Sans", sans-serif;
  text-align: center;
  cursor: pointer;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=submit]:active, button:hover, button:focus, button:active, .btn:hover, .btn:focus, .btn:active {
  background: #053765;
  color: #fff;
  text-decoration: none;
}

input[type=submit].go {
  padding: 6px 24px;
  background: #053765;
  margin-left: 6px;
}

.btn {
  padding: 0;
}
.btn a {
  display: block;
  padding: 12px 30px;
}
.btn a.loadmore {
  color: #fff;
}

@media (max-width: 991px) {
  .btn {
    width: 100%;
  }
}
.btn-green {
  background-color: #37560A;
  border-color: #81C629;
}
.btn-green:hover, .btn-green:focus, .btn-green:active {
  background-color: #81C629;
}

.btn-orange {
  background-color: #f7501b;
  border-color: #f7501b;
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:active {
  background-color: #053765;
}

.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}

/* ===========================================================
   PAGE WRAPPER
=========================================================== */
.container {
  margin: 0 auto;
  max-width: 1300px;
  width: 90%;
}
@media screen and (min-width: 1101px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  .container {
    width: 90%;
  }
}

.home .main {
  padding: 0;
}

.error404 article .container {
  text-align: center;
}

.shifted {
  margin-bottom: 117px;
}

hr {
  width: 80%;
  margin: 0 auto;
  height: 1px;
  background-color: #E5E5E5;
  color: transparent;
  border-style: solid;
}

.main h2.green {
  margin-top: 1em;
  border-bottom: 4px solid #7FC31C;
  padding-bottom: 0.5em;
}
.main h2.formh2 {
  border: 0;
  text-align: center;
}
.main .gform_wrapper {
  background: #DCEBF9;
  border: 1px solid #095AA6;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 24px;
}
.main .btn {
  margin-bottom: 1em;
  padding: 0;
}
.main .btn a {
  display: block;
  padding: 12px 30px;
  color: #fff;
}
.main .btn a:hover {
  color: #fff;
}
.main .btn.apptbtn {
  margin-top: 8px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #095AA6;
  color: #095AA6;
  font: 700 22px/34px "Open Sans", sans-serif;
}
.main .btn.apptbtn a {
  color: #095AA6;
  padding: 3px 30px;
}
.main .col {
  width: 48%;
  margin-right: 4%;
  float: left;
}
.main .col iframe {
  max-width: 100%;
}
.main .col:nth-of-type(2n+2) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .main .col {
    width: 100%;
    margin-right: 0;
  }
  .main .col img.alignleft, .main .col img.alignright, .main .col img.aligncenter, .main .col .wp-caption.alignleft, .main .col .wp-caption.alignright, .main .col .wp-caption.aligncenter {
    display: block !important;
    margin: 0 auto !important;
    float: none !important;
  }
}
.main .row {
  width: 100%;
}
.main .row::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.main .row .col:nth-of-type(2n+2) {
  margin-right: 0;
}

.gform_wrapper select {
  padding: 8px 18px !important;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/down-chevron.png);
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  background-size: 14px;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 8px 18px !important;
  border-radius: 5px;
}

.formbox div.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .service-contact div.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 8px 18px;
}
.formbox div.gform_wrapper textarea, .service-contact div.gform_wrapper textarea {
  padding: 8px 18px;
  border-radius: 5px;
}
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half, .formbox div.gform_wrapper .top_label li.gfield.gf_right_half, .service-contact div.gform_wrapper .top_label li.gfield.gf_left_half, .service-contact div.gform_wrapper .top_label li.gfield.gf_right_half {
  margin-top: 0;
  padding-right: 0;
}
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half + .gform_footer,
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half + li.gfield, .formbox div.gform_wrapper .top_label li.gfield.gf_right_half + .gform_footer,
.formbox div.gform_wrapper .top_label li.gfield.gf_right_half + li.gfield, .service-contact div.gform_wrapper .top_label li.gfield.gf_left_half + .gform_footer,
.service-contact div.gform_wrapper .top_label li.gfield.gf_left_half + li.gfield, .service-contact div.gform_wrapper .top_label li.gfield.gf_right_half + .gform_footer,
.service-contact div.gform_wrapper .top_label li.gfield.gf_right_half + li.gfield {
  padding-right: 0;
}
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half + .gform_footer .ginput_container,
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half + li.gfield .ginput_container, .formbox div.gform_wrapper .top_label li.gfield.gf_right_half + .gform_footer .ginput_container,
.formbox div.gform_wrapper .top_label li.gfield.gf_right_half + li.gfield .ginput_container, .service-contact div.gform_wrapper .top_label li.gfield.gf_left_half + .gform_footer .ginput_container,
.service-contact div.gform_wrapper .top_label li.gfield.gf_left_half + li.gfield .ginput_container, .service-contact div.gform_wrapper .top_label li.gfield.gf_right_half + .gform_footer .ginput_container,
.service-contact div.gform_wrapper .top_label li.gfield.gf_right_half + li.gfield .ginput_container {
  margin: 0;
}
@media (min-width: 641px) {
  .formbox div.gform_wrapper .top_label li.gfield.gf_left_half, .service-contact div.gform_wrapper .top_label li.gfield.gf_left_half {
    width: 48%;
    margin-right: 2%;
  }
}
.formbox div.gform_wrapper .top_label li.gfield.gf_left_half::before, .service-contact div.gform_wrapper .top_label li.gfield.gf_left_half::before {
  background-color: transparent;
}
.formbox div.gform_wrapper ul.gform_fields li.gfield, .service-contact div.gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
.formbox div.gform_wrapper select, .service-contact div.gform_wrapper select {
  padding: 4px 18px 4px 2px;
}
.formbox div.gform_wrapper .gform_footer, .service-contact div.gform_wrapper .gform_footer {
  width: auto;
  position: relative;
  z-index: 99;
}
@media (min-width: 641px) {
  .formbox div.gform_wrapper .gform_footer, .service-contact div.gform_wrapper .gform_footer {
    float: right;
    margin: -82px 0 0 0;
  }
}
.formbox div.gform_wrapper .gform_footer .gform_button, .service-contact div.gform_wrapper .gform_footer .gform_button {
  margin-right: 0;
}

.formbox {
  border: 1px solid #cccccc;
  background-color: #EDEDED;
  border-radius: 10px;
  padding: 0px 20px 20px;
  max-width: 700px;
  display: block;
  margin: 0 auto 30px;
  clear: both;
}
.formbox .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: 1px solid #B5B5B5;
  border-radius: 10px;
  font: 400 16px/30px "Open Sans", sans-serif;
}
.formbox .gform_wrapper input[type=submit] {
  float: right;
}
.formbox .gform_wrapper form ul li.gfield select {
  border: 1px solid #B5B5B5;
  border-radius: 10px;
  padding: 8px 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  background-image: url("../images/down-chevron.png");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  background-size: 14px;
}
.formbox::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.paoc-popup-modal-cnt {
  padding: 0;
}

.popuphdr {
  height: 36px;
  width: 100%;
  margin: 0 0 50px 0;
}
.popuphdr .popuphdr_left {
  width: calc(50% - 3px);
  margin-right: 3px;
  height: 36px;
  background-color: #095AA6;
  float: left;
}
.popuphdr .popuphdr_right {
  width: calc(50% - 3px);
  margin-left: 3px;
  height: 36px;
  background-color: #7FC31C;
  float: left;
}

.popuplogo {
  padding: 0 0 30px 0;
  text-align: center;
}
.popuplogo img {
  display: inline-block;
  width: 160px;
  height: auto;
}

.popupcontent {
  padding: 0 70px 70px 70px;
}

.popupcontent p {
  margin-bottom: 1em;
}

.popupcontent.center {
  text-align: center;
}

.paybill {
  width: 30%;
  margin-right: 3%;
  float: left;
  position: relative;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .paybill {
    width: 100%;
    margin-right: 0;
  }
}
.paybill h3 {
  text-align: center;
  margin-bottom: 25px;
}
.paybill a.button {
  display: block;
  margin: 0 auto;
  max-width: 250px;
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  left: 0;
  clear: both;
}
.paybill img {
  max-width: 100%;
  height: auto;
}
.paybill:nth-of-type(3n+3) {
  margin-right: 0;
}

.protected-page {
  padding: 80px 0 200px 0;
}
.protected-page input[type=password] {
  padding: 12px 15px;
  border: 1px solid #B5B5B5;
  border-radius: 10px;
  font: 500 18px/24px "Open Sans", sans-serif;
}
.protected-page input[type=submit] {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #f7501b;
  border-color: #794512;
}
.protected-page input[type=submit]:hover, .protected-page input[type=submit]:focus, .protected-page input[type=submit]:active {
  background-color: #794512;
}

@media (min-width: 1300px) {
  .home .header .nav {
    display: none !important;
  }
}

.gform_drop_area input.button {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  background: #053765;
  border: 1px solid #053765;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.gform_drop_area input.button:hover, .gform_drop_area input.button:focus {
  background: #053765;
  color: #fff;
  text-decoration: none;
}

select::-ms-expand {
  display: none;
}

.top-border-new {
  height: 54px;
  width: 100%;
  background: #095AA6;
}

.top-border-new2 {
  height: 54px;
  width: 100%;
  background: #7FC31C;
  margin-bottom: 50px;
}

#search-results .filtered-posts {
  display: block;
}
#search-results .filtered-posts .filter-result {
  display: block;
}
#search-results .filtered-posts .filter-result .filtered-posts_item {
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #053765;
  float: none;
  width: 100%;
  height: auto;
}
#search-results h1 {
  display: block;
  width: 100%;
  font-weight: normal;
  padding-bottom: 6px;
  margin-bottom: 24px;
  border-bottom: 2px solid #053765;
}
#search-results h1 span {
  font-weight: bold;
}
#search-results .post-nav-bar {
  width: 100%;
  display: block;
  text-align: center;
}
#search-results .search-footer {
  width: 100%;
  display: block;
  text-align: center;
  margin: 80px 0 50px 0;
  font-weight: bold;
}
#search-results .search-footer a {
  color: #095AA6;
}

.d-flex.department-select {
  display: none;
}

.showdepartment .d-flex.department-select {
  display: block;
}

/* ===========================================================
   HEADER
=========================================================== */
/* ===========================================================
   EMERGENCY
=========================================================== */
.emergency {
  position: relative;
  width: 100%;
  padding: 15px 50px;
  background-color: #D81818;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 991px) {
  .emergency {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 30px;
  }
}
.emergency a {
  color: #fff;
}
.emergency a:hover, .emergency a:focus, .emergency a:active {
  text-decoration: underline;
}
.emergency__close {
  position: absolute;
  top: 50%;
  right: 30px;
  padding: 0;
  background: none;
  border: none;
  font: 700 16px/22px "Open Sans", sans-serif;
  transform: translateY(-50%);
}
.emergency__close:hover {
  background: none;
  opacity: 0.7;
}

/* ===========================================================
   HEADER
=========================================================== */
.header .content__wpr {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.header__tippy {
  width: 100%;
  height: 19px;
  background-color: #fff;
}
.header__tippy:after {
  content: "";
  display: table;
  clear: both;
}
.header__tippy_left {
  width: 50%;
  float: left;
  height: 19px;
  background-color: #095AA6;
  box-sizing: border-box;
  border-right: 2px solid #fff;
}
.header__tippy_right {
  float: right;
  width: 50%;
  height: 19px;
  background-color: #81C629;
  box-sizing: border-box;
  border-left: 2px solid #fff;
}
.header__top {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 0;
  background-color: #fff;
  color: #fff;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
}
.header__right {
  text-align: right;
  display: block;
  flex-grow: 0;
}
.header__right_phone {
  color: #053765;
  font: 700 20px/35px "Open Sans", sans-serif;
  margin-bottom: 16px;
}
.header__right_phone {
  font-family: Hind;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #095AA6;
  margin-bottom: 16px;
}
.header__main .header__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: space-between;
}
.header__social {
  margin-top: 14px;
  display: inline-block;
  padding-left: 20px;
}
.header__social li {
  display: inline-block;
  padding-right: 10px;
}
.header__social li a {
  display: block;
  color: #DCEBF9;
  font-size: 24px;
}
.header__social li a:hover {
  color: #fff;
}
.header__social__mobile {
  margin-top: 0;
  padding-top: 6px;
}
.header__phone {
  display: inline-block;
  color: #095AA6;
  padding: 0 0 15px 0;
  font: 400 22px/28px "Open Sans", sans-serif;
}
.header__phone a {
  color: #095AA6;
  font-weight: 700;
}
.header__service-menu {
  position: relative;
  margin-left: 20px;
  display: inline-block;
  white-space: nowrap;
}
.header__service-menu .container {
  margin: 0 auto;
  width: max-content;
}
@media (min-width: 1101px) {
  .header__service-menu .container {
    margin: 0;
  }
}
.header__service-menu i {
  margin-right: 5px;
  display: inline-block;
  height: 18px;
  width: 18px;
}
.header__service-menu.active {
  display: block;
}
.header__service-menu.active i::before {
  content: "\f00d";
}
.header__service-menu span {
  font: 700 18px/24px "Open Sans", sans-serif;
}
.header__service-menu .container:hover {
  cursor: pointer;
  color: #095aa6;
}
.header__buttons li.paymybill {
  display: none;
  border: 1px solid #095AA6 !important;
  border-radius: 5px !important;
  text-align: center !important;
}
.header__buttons li.paymybill a {
  color: #095AA6 !important;
  background: transparent !important;
}
.header__buttons li {
  display: inline-block;
  padding-right: 5px;
}
.header__buttons li a {
  display: block;
  height: 100%;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font: 700 16px/22px "Open Sans", sans-serif;
}
.header__buttons .far {
  margin-right: 0.25em;
}
.header__main {
  padding: 20px 0;
  position: relative;
  z-index: 9999999;
}
.header__logo-wrap {
  display: flex;
  align-self: center;
}
.header__logo {
  width: auto !important;
  max-width: none;
  height: 80px !important;
  padding-right: 22px;
}
.header__nav {
  background: #053765;
  width: 100%;
  height: 54px;
  overflow: hidden;
}
.header__nav:after {
  content: "";
  display: table;
  clear: both;
}
.header__nav__wrapper {
  float: left;
}
.header__searchsocial {
  float: right;
  margin-top: -3px;
}
.header__searchsocial:after {
  content: "";
  display: table;
  clear: both;
}
.header__searchwpr {
  border-width: 0px;
  padding-top: 0;
  display: inline-block;
}

.single-ipf_services .header__service-menu {
  position: relative;
  left: 0;
  width: 100%;
}
@media (min-width: 1101px) {
  .single-ipf_services .header__service-menu {
    margin-left: 20px;
    width: auto;
  }
}

@media (max-width: 1900px) {
  .single-ipf_services .header__top .header__left {
    width: 400px;
    padding: 5px 0;
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .header__buttons li.paymybill {
    display: block;
  }
  .header__main {
    padding: 10px 0;
  }
  .header__top {
    padding: 10px 0;
  }
  .header__top .header__right {
    display: none;
  }
  .header__left, .header__right {
    width: 100%;
    text-align: center;
  }
  .header__left {
    justify-content: center;
    margin: 0;
  }
  .header__main .header__content {
    justify-content: center;
  }
  .header__main .header__left {
    width: auto;
  }
  .header__main .header__right {
    flex-grow: 1;
    justify-content: center;
  }
  .header__logo {
    padding-right: 0;
    max-height: 95px;
  }
  .single-ipf_services .header__top .header__left {
    width: 100%;
    margin-left: 0;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .single-ipf_services .header__service-menu {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-height: 65px;
  }
  .header__phone {
    margin-bottom: 0;
  }
  .header__buttons li {
    padding: 0 5px;
  }
  .header__buttons li:not(:last-child) {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 1100px) {
  .hide-on-mobile {
    display: none !important;
  }
}
/* ===========================================================
   SEARCH-FORM
=========================================================== */
.search-form {
  height: 46px;
  margin-top: 0px;
  padding-top: 0px;
  position: relative;
  max-width: 200px;
  width: 100%;
}
.search-form__field {
  margin: 0;
  width: 100%;
  padding: 10px 15px;
  border: 0;
  border-radius: 0;
  font: 700 16px/22px "Open Sans", sans-serif;
  background-color: #095AA6;
  color: #fff;
}
.search-form__field:focus {
  outline: none;
}
@media (max-width: 768px) {
  .search-form__field {
    padding: 8px 20px 8px 8px;
  }
}
.search-form__field::placeholder {
  color: #fff;
  opacity: 1;
  font: 700 16px/22px "Open Sans", sans-serif;
  text-transform: uppercase;
}
.search-form__btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 12px;
  background: none;
  border: 0;
  border-radius: 0;
  color: #fff;
  line-height: 20px;
}
.search-form__btn:hover {
  background: none;
}
.search-form__btn:focus {
  outline: none;
}
@media (max-width: 768px) {
  .search-form__btn {
    padding: 9px 15px;
  }
}

@media (max-width: 1100px) {
  .search-form {
    margin: 0 auto;
  }
}
/* ===========================================================
   MAIN NAV
=========================================================== */
/* ===========================================================
   TOP-NAV
=========================================================== */
.top-nav li {
  display: inline-block;
  overflow: hidden;
  width: auto;
  border-right: 2px solid #fff;
}
.top-nav li:first-child {
  border-left: 2px solid #fff;
}
.top-nav li a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px 14px 16px;
  display: block;
}
.top-nav li a:hover {
  color: #fff;
}
.top-nav li a > i {
  display: inline-block;
  margin-left: 24px;
}
.top-nav li li {
  height: auto;
  float: left;
}
.top-nav li .sub-menu {
  display: none;
  position: absolute;
  top: 211px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 999;
  background: #fff;
  padding: 20px 40px 0 40px;
  max-height: 0;
  transition: max-height 0.15s ease-out;
}
.top-nav li .sub-menu li {
  width: 23%;
  border: none;
  display: inline-block;
  padding: 0;
  margin-right: 2%;
}
.top-nav li .sub-menu li:hover {
  background-color: transparent;
}
.top-nav li .sub-menu li a {
  display: block;
  font: 700 18px/24px "Open Sans", sans-serif;
  padding: 14px 16px 0.3em 0;
  margin-bottom: 1em;
  border-bottom: 8px solid #37560A;
  color: #37560A;
}
.top-nav li .sub-menu li li {
  display: block;
  padding: 0;
  margin: 0 6px 6px 0;
  border: none;
  background-color: #DCEBF9;
}
.top-nav li .sub-menu li li a {
  display: block;
  padding: 10px;
  margin: 0 !important;
  font: 700 15px/24px "Open Sans", sans-serif;
  border: 0;
  color: #053765;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}
.top-nav li .sub-menu li li a:hover {
  background-color: #053765;
  color: #fff;
}
.top-nav li .sub-menu li .sub-menu {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  white-space: normal;
  background: #fff;
  padding: 0 0 40px 0;
}
.top-nav li .sub-menu .hdr-indoor {
  width: 48%;
}
.top-nav li .sub-menu .hdr-indoor,
.top-nav li .sub-menu .hdr-outdoor,
.top-nav li .sub-menu .hdr-store {
  padding-bottom: 40px;
}
.top-nav li .sub-menu .hdr-indoor {
  margin-right: 18px;
}
.top-nav li .sub-menu .hdr-indoor a,
.top-nav li .sub-menu .hdr-store a {
  border-bottom: 8px solid #053765;
  color: #053765;
}
.top-nav li .sub-menu .hdr-indoor li,
.top-nav li .sub-menu .hdr-store li {
  background-color: #DCEBF9;
}
.top-nav li .sub-menu .hdr-indoor li a,
.top-nav li .sub-menu .hdr-store li a {
  color: #053765;
  border: 0;
}
.top-nav li .sub-menu .hdr-indoor li a:hover,
.top-nav li .sub-menu .hdr-store li a:hover {
  background-color: #053765;
}
.top-nav li .sub-menu .hdr-indoor ul li,
.top-nav li .sub-menu .hdr-store ul li {
  background-color: #DCEBF9;
}
.top-nav li .sub-menu .hdr-indoor ul li a,
.top-nav li .sub-menu .hdr-store ul li a {
  color: #053765;
}
.top-nav li .sub-menu .hdr-indoor ul li a:hover,
.top-nav li .sub-menu .hdr-store ul li a:hover {
  background-color: #053765;
  color: #fff;
}
.top-nav li .sub-menu li:first-child ul li {
  width: calc(50% - 6px);
}
.top-nav li .sub-menu li:first-child ul li:nth-child(even) {
  width: 50%;
  margin: 0 0 6px 0;
}
.top-nav li .sub-menu li ul li a {
  border: 0;
  color: #053765;
}
.top-nav li .sub-menu li ul li {
  width: 100%;
  background-color: #DCEBF9;
}
.top-nav li .sub-menu li ul li a {
  color: #053765;
}
.top-nav li .sub-menu li ul li a:hover {
  background-color: #053765;
  color: #fff;
}
.top-nav li .sub-menu li ul li:hover {
  background-color: transparent;
}
.top-nav li .sub-menu li ul li.item-mosquito a {
  background-color: #DCEBF9;
  background-image: url("/wp-content/uploads/2021/12/item-mosquito-nav.png");
  background-repeat: no-repeat;
  background-position: top 3px right 4px;
}
.top-nav li .sub-menu li ul li.item-mosquito a:hover {
  background-image: url("/wp-content/uploads/2021/12/item-mosquito-nav.png");
  background-repeat: no-repeat;
  background-position: top 3px right 4px;
  background-color: #053765;
}
.top-nav li:hover, .top-nav li:focus {
  background-color: #053765;
}
.top-nav li:hover > .sub-menu, .top-nav li:focus > .sub-menu {
  display: block;
  max-height: 294px;
  transition: max-height 0.25s ease-in;
}
.top-nav li:hover > .sub-menu .sub-menu, .top-nav li:focus > .sub-menu .sub-menu {
  display: block;
}

@media (max-width: 1200px) {
  .top-nav {
    display: none;
  }
  .header__searchsocial {
    display: none;
  }
}
.top-service-nav {
  display: none;
  position: absolute;
  background: #81C629;
  padding: 10px 20px;
  z-index: 10000000;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1101px) {
  .top-service-nav {
    left: auto;
    transform: none;
  }
}
.top-service-nav li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-weight: 700;
}
.top-service-nav li a:hover {
  color: #095aa6;
}
.top-service-nav li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.header__service-menu:hover > .top-service-nav {
  display: block;
}

.active {
  display: block;
}

/* ===========================================================
   MAIN-NAV
=========================================================== */
#main-nav {
  display: none;
}

#main-nav.active {
  display: none;
}

.nav {
  position: relative;
  z-index: 888;
  margin: 0 0 1px;
  background-color: #053765;
}
.nav .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#mega-menu-wrap-max_mega_menu_1 {
  display: block;
}
@media screen and (max-width: 1200px) {
  #mega-menu-wrap-max_mega_menu_1 {
    display: none;
  }
}

.mega-section-name a {
  font-size: 22px !important;
}

.mega-mainnavbtn {
  float: right !important;
  background: #80BC00 !important;
  border-radius: 5px !important;
  text-align: center !important;
  padding: 0 !important;
}
.mega-mainnavbtn a {
  color: #fff !important;
  display: block !important;
  padding: 0 24px !important;
}

.mega-mainnavbtn:hover {
  background: #80BC00 !important;
}

.mega-mainnavbtn a:hover {
  background: transparent !important;
}

.mega-nonbold a {
  font-weight: normal !important;
}

.main-nav {
  text-align: center;
  /*
  @media (any-hover: hover) and (min-width: 480px) {
   	li.openerlink:hover > .sub-menu {
   		display: block;
   	}
   }
   */
}
.main-nav li {
  position: relative;
  display: inline-block;
  padding: 0 10px !important;
}
.main-nav li.mobile {
  display: none;
}
.main-nav li a {
  /* display: block; */
  color: #fff;
  font: 700 16px/22px "Open Sans", sans-serif;
}
.main-nav li button {
  display: none;
}
.main-nav li .sub-menu {
  display: none;
  position: absolute;
  top: 57px;
  left: 0;
}
.main-nav li .sub-menu li {
  display: block;
  padding: 0;
}
@media (max-width: 1100px) {
  .main-nav li .sub-menu li {
    display: flex;
    flex-basis: 100%;
  }
}
.main-nav li .sub-menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
  color: #053765;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .main-nav li .sub-menu li a {
    display: flex;
    flex-basis: 100%;
  }
}
.main-nav li .sub-menu li a:hover {
  background: #095AA6;
  color: #fff;
}
.main-nav li.subwide .sub-menu {
  position: fixed !important;
  top: 284px !important;
  left: 0;
  width: 100%;
}
.main-nav li.subwide .sub-menu li {
  display: block;
  padding: 0 !important;
}
@media (max-width: 1100px) {
  .main-nav li.subwide .sub-menu li {
    display: flex;
    flex-basis: 100%;
  }
}
.main-nav li.subwide .sub-menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
  color: #053765;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .main-nav li.subwide .sub-menu li a {
    display: flex;
    flex-basis: 100%;
  }
}
.main-nav li.subwide .sub-menu li a:hover {
  background: #095AA6;
  color: #fff;
}

@media (min-width: 1200px) {
  .main-nav .header__right {
    display: none;
  }
}
@media (max-width: 1200px) {
  .main-nav {
    display: none;
    flex-basis: 100%;
  }
  .main-nav li a {
    padding: 10px 10px 10px 0;
    font-size: 16px !important;
  }
  .main-nav li .sub-menu {
    top: 0 !important;
    margin-left: 20px;
  }
  .main-nav .header__right {
    display: none;
  }
  .main-nav .header__right.mobile-insert {
    display: block !important;
    padding: 0 12px;
  }
  .main-nav .header__right.mobile-insert ul li {
    margin-bottom: 20px;
    border: none;
  }
  .main-nav .header__right.mobile-insert ul li a {
    background-color: #095AA6;
    color: #fff;
    justify-content: center;
  }
  .main-nav .header__right.mobile-insert ul li a i {
    margin-top: 1px;
    margin-right: 10px;
  }
  .main-nav .header__right.mobile-insert ul li a.btn {
    padding: 12px 10px;
    font-size: 18px;
  }
  .main-nav .header__right.mobile-insert ul li a.btn-orange {
    background-color: #f7501b;
    color: #fff;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav.active .header__right {
    display: block;
  }
  .main-nav li {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    text-align: left;
  }
  .main-nav li:not(:last-child) {
    border-bottom: 1px solid #b8b8b8;
  }
  .main-nav li a {
    display: flex;
    flex-grow: 2;
    padding: 15px 10px;
    font-size: 20px;
  }
  .main-nav li button {
    display: block;
    padding: 9px 15px;
    border: none;
    line-height: 22px;
  }
  .main-nav li button.active {
    transform: rotate(180deg);
  }
  .main-nav li .sub-menu {
    position: relative;
    box-shadow: none;
    display: none;
  }
  .main-nav li .sub-menu li a {
    font-size: 18px;
  }
  .main-nav li .sub-menu button {
    display: block;
    padding: 9px 15px;
    border: none;
    line-height: 22px;
  }
  .main-nav li .sub-menu .sub-menu {
    display: none;
  }
  .main-nav li .sub-menu.active {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
  }
  .main-nav li .sub-menu.active button,
.main-nav li .sub-menu.active button.active {
    transform: rotate(180deg);
  }
  .main-nav li .sub-menu.active .sub-menu,
.main-nav li .sub-menu.active .sub-menu.active {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
  }
  .main-nav li.mobile {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-basis: 100%;
  }
  .main-nav li.mobile a {
    display: flex;
    flex-grow: 2;
  }
  .footer .nav {
    padding: 0;
  }
  .footer .main-nav {
    display: block;
  }
  .footer .main-nav li {
    text-align: center;
  }
  .footer .main-nav li.mobile {
    display: none;
  }
  .footer .main-nav li a {
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1101px) {
  .menu-item.active > .sub-menu {
    display: block;
  }
  .menu-item.active .sub-menu-wrapper .sub-menu {
    display: block;
  }
}
.nav .header__social {
  display: none;
}

.nav.nav-grey {
  background-color: #fff;
}
.nav.nav-grey button.menu-toggle,
.nav.nav-grey button.menu-toggle.search-toggle {
  background: #414143 !important;
}
.nav.nav-grey .main-nav {
  text-align: left;
  padding: 14px 0;
}
.nav.nav-grey .main-nav li.section-name a {
  font-size: 22px;
}
.nav.nav-grey .main-nav li.mainnavbtn {
  float: right;
  background: #80BC00;
  border-radius: 5px;
  text-align: center;
  padding: 0;
}
.nav.nav-grey .main-nav li.mainnavbtn a {
  color: #fff;
  display: block;
  padding: 10px 24px;
}
.nav.nav-grey .main-nav li a {
  padding: 10px 0;
  display: block;
  color: #095AA6;
}
.nav.nav-grey .main-nav li .sub-menu li a {
  padding: 10px 10px 10px 16px;
}
.nav.nav-grey .main-nav li button {
  background-color: #414143;
}
@media (max-width: 1100px) {
  .nav.nav-grey .main-nav li:not(:last-child) {
    border-bottom: 1px solid #b8b8b8;
  }
}
.nav.nav-grey .main-nav li .fa-chevron-down {
  font-size: 11px;
}
.nav.nav-grey .main-nav li .fa-certificate {
  margin-left: 0;
  margin-right: 0.5em;
}
.nav.nav-grey .main-nav li button {
  background: transparent;
  color: #095AA6;
}
.nav.nav-grey .main-nav li button .fa-chevron-down {
  display: block;
}

@media screen and (max-width: 1200px) {
  #main-nav.active {
    display: block;
  }
  #main-nav li a {
    padding: 10px 0;
    display: block !important;
  }
  #main-nav li button {
    color: #095AA6;
    font-size: 12px;
  }
  #main-nav li a .far {
    float: right !important;
  }
  .nav {
    padding: 8px 0;
  }
  .nav .header__social {
    position: relative;
    display: inline-block;
    margin-top: 0;
    padding-top: 6px;
    float: right;
  }
  .nav.nav-grey {
    background-color: #053765;
    padding: 8px 0;
  }
  .nav.nav-grey button.menu-toggle,
.nav.nav-grey button.menu-toggle.search-toggle {
    background: transparent !important;
  }
  .main-nav {
    background-color: #fff;
    margin-top: 8px;
    padding: 20px 40px;
  }
  .main-nav .sub-menu li a {
    padding: 10px 10px 10px 0 !important;
    background: transparent !important;
  }
  .main-nav .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #b8b8b8 !important;
  }
  .main-nav li button {
    background: transparent;
    padding: 0;
  }
  .main-nav li a {
    color: #095AA6 !important;
  }
  .main-nav li a i {
    float: right !important;
  }
  .main-nav li.mobilecorporate a {
    color: #414143 !important;
  }
  .main-nav li.orangelink a {
    color: #f7501b !important;
  }
  .main-nav a.btn {
    color: #fff !important;
  }
}
/* ===========================================================
   MENU TOGGLE
=========================================================== */
.menu-toggle {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  border: 0;
  color: #fff;
  background: #053765;
  font-weight: bold;
  line-height: 18px;
  text-align: left;
  overflow: hidden;
  padding: 10px 15px;
}
.menu-toggle__body {
  display: block;
  max-width: 100px;
  margin: 0 auto;
}
.menu-toggle__icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 18px;
  margin-right: 10px;
  vertical-align: top;
  transform: rotate(0);
}
.menu-toggle__icon span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 1;
  transition: 0.5s ease;
  transform: rotate(0);
}
.menu-toggle__icon span:nth-child(1) {
  top: 0;
}
.menu-toggle__icon span:nth-child(2) {
  top: 8px;
}
.menu-toggle__icon span:nth-child(3) {
  top: 16px;
}
.menu-toggle__text {
  display: inline-block;
  text-transform: uppercase;
}
.menu-toggle.active .menu-toggle__icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.menu-toggle.active .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.menu-toggle.active .menu-toggle__icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}
.menu-toggle.search-toggle {
  float: right;
}

@media (min-width: 1200px) {
  .menu-toggle {
    display: none;
  }
}
/* ===========================================================
   BANNER
=========================================================== */
/* ===========================================================
   BANNER
=========================================================== */
.gform_wrapper .top_label li.gfield.gf_left_third, .gform_wrapper .top_label li.gfield.gf_middle_third, .gform_wrapper .top_label li.gfield.gf_right_third {
  width: 100% !important;
  clear: both;
}

@media screen and (max-width: 641px) {
  .gform_wrapper .top_label li.gfield.gf_left_third, .gform_wrapper .top_label li.gfield.gf_middle_third, .gform_wrapper .top_label li.gfield.gf_right_third {
    width: 100% !important;
    clear: both;
  }
}
.banner-pestlibrary {
  margin: 50px 0 0 0;
}
.banner-pestlibrary .breadcrumb {
  font-size: 18px;
  color: #000;
}


.lawn-library h2 {
  font-size: 26px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  color: #000;
  width: 100%;
}

.banner-pestlibrary.lawnlibrary {
  margin-bottom: 30px;
}

.banner-pestlibrary.lawnlibrary .breadcrumb {
  padding-bottom: 8px;
  border-bottom: 3px solid #80BC00;
  margin-bottom: 24px;
}

.banner-pestlibrary.lawnlibrary h1 {
  margin-bottom: 24px;
  font-weight: 700;
}


.banner-pestlibrary.lawnlibrary h1 span {
  font-weight: 400;
}

.banner-pestlibrary.lawnlibrary .imgwpr img {
  border-radius: 10px;
}

.banner-pestlibrary .breadcrumbright {
  float: right;
  text-align: right;
}
.banner-pestlibrary .breadcrumb a {
  color: #000;
  text-decoration: underline;
}
.banner-pestlibrary .banner-wpr {
  padding: 50px 20px;
  margin: 12px 0 0 0;
  background: #095BA5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.banner-pestlibrary.lawnlibrary .banner-wpr {
  padding: 0;
  margin: 12px 0 0 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.banner-pestlibrary .banner-wpr .inside-left {
  width: 70%;
}
.banner-pestlibrary .banner-wpr .inside-left .breadcrumb {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.banner-pestlibrary .banner-wpr .inside-left .breadcrumb a {
  color: #BAD7F3;
  font-weight: 400;
  text-decoration: none;
}
.banner-pestlibrary .banner-wpr .inside-right {
  width: 30%;
  text-align: right;
}

span.librarytitle {
  font-weight: 700;
}

span.librarytitle span {
  font-weight: 400;
}

.treelibrary span.treelibrary {
  font-weight: 700;
}

.treelibrary span.treelibrary span {
  font-weight: 400;
}

.banner-pestlibrary.treelibrary .banner-wpr .inside-left {
  width: 48%;
}
.banner-pestlibrary.treelibrary .banner-wpr .inside-right {
  width: 48%;
  text-align: left;
}

@media screen and (max-width: 760px) {
  .banner-pestlibrary .banner-wpr .inside-right {
    display: none;
  }
}
.banner-pestlibrary .banner-wpr .inside-right a {
  color: #BAD7F3;
  font-weight: 700;
  font-size: 18px;
}
.banner-pestlibrary .share {
  width: 100%;
  padding: 10px 0;
  text-align: right;
  margin-bottom: 50px;
  border-bottom: 1px solid #000;
}

.banner-inside {
  margin-bottom: 50px;
}

.banner.specials-banner .banner__content__sub-inner {
  background: #095AA6;
  border-bottom: 44px solid #7FC31C;
}
.banner.specials-banner .banner__content__sub-inner hr {
  border: 6px solid #7FC31C;
}

.banner {
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: visible;
}
.banner .clear {
  clear: both;
}
.banner__head {
  width: 52%;
}
@media (max-width: 768px) {
  .banner__head {
    width: 100%;
  }
}
.banner__head h2 {
  margin: 0 0 20px;
}
.banner__head p {
  font-size: 16px;
}
.banner__services {
  width: 100%;
  max-width: 1680px;
}
.banner .service-item {
  height: 104px;
  margin: 10px;
  background: #fff;
  overflow: unset;
}
@media (max-width: 1500px) {
  .banner .service-item {
    width: calc(25% - 30px);
  }
}
@media (max-width: 1100px) {
  .banner .service-item {
    width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .banner .service-item {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .banner .service-item {
    width: 90%;
  }
}
@media screen and (max-width: 1100px) {
  .banner .service-item {
    margin: 15px auto;
  }
}
.banner .service-item__icon {
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 25%;
  max-width: 72px;
  max-height: 72px;
}
.banner .service-item:hover .service-item__icon {
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .banner .service-item:hover .service-item__icon {
    transform: scale(1);
  }
}
.banner .service-item__title {
  width: 100%;
  margin: 60px 20px 20px 20px;
  background: none;
  border: none;
  font: 700 18px/22px "Open Sans", sans-serif !important;
  color: #053765 !important;
  border-bottom: 10px solid #81C629;
  text-align: left;
  position: relative;
  text-transform: none !important;
}
.banner .service-item__title div {
  float: left;
  width: 75%;
  padding: 0 0 8px 0;
  position: relative;
}
.banner .service-item__title div.inner {
  width: 100%;
}
.banner .service-item__title div span {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner.home {
  min-height: auto;
  padding: 50px 0;
  background-color: #EAF1F5;
}
.banner.home:after {
  content: none;
}
@media screen and (max-width: 425px) {
  .banner.home .banner__head {
    width: 84%;
    margin: 0 auto 40px;
  }
}
.banner.home .banner__head h2 {
  margin: 0 0 40px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}
.banner__head {
  width: 59%;
  margin: 0 auto;
}
.banner__head h2 {
  margin: 0 0 24px 0;
  font: 700 21px/22px "Open Sans", sans-serif;
}
.banner__head p {
  margin: 0 0 40px;
  line-height: 30px;
}
.banner__content {
  padding-bottom: 60px;
}
.banner__content.pest {
  margin-bottom: 20px;
  padding-bottom: 0;
  background: #053765;
}
.banner__content.lawn {
  margin-bottom: 20px;
  padding-bottom: 0;
  background: #3A5728;
}
.banner__content__inner {
  height: 420px;
  overflow: hidden;
  margin: 0;
  padding: 0 40px;
}
.banner__content__pest {
  height: 498px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
}
@media only screen and (max-width: 760px) {
  .banner__content__pest {
    background: none;
    height: auto;
  }
}
.banner__content__pest .mobileonly {
  display: none;
}
@media only screen and (max-width: 760px) {
  .banner__content__pest .mobileonly {
    display: block;
    width: 100%;
    height: auto;
  }
}
.banner__content__inner.desktop {
  display: block;
}
@media (max-width: 991px) {
  .banner__content__inner.desktop {
    display: block;
  }
}
.banner__content__inner.mobile {
  display: none;
}
@media (max-width: 991px) {
  .banner__content__inner.mobile {
    display: block;
  }
}
.banner__content__pest__wpr {
  width: 50%;
  height: 100%;
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}
@media (max-width: 991px) {
  .banner__content__pest__wpr {
    width: 100%;
  }
}
@media only screen and (max-width: 760px) {
  .banner__content__pest__wpr {
    width: 100%;
    background: #053765;
    padding: 36px 0;
  }
  .banner__content__pest__wpr.lawncolor {
    background: #3A5728;
  }
}
.banner__content__pest__wpr .centeredvert {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
  margin: 0 80px 0 0;
  right: 0;
  width: calc(100% - 120px);
}
@media (max-width: 991px) {
  .banner__content__pest__wpr .centeredvert {
    margin: 0 auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 760px) {
  .banner__content__pest__wpr .centeredvert {
    position: relative;
    top: 0;
    -ms-transform: none;
    transform: none;
  }
}
.banner__content__pest__wpr .centeredvert .inside {
  width: 100%;
  max-width: calc(50vw - (100vw - 1300px) / 2 - 80px);
  font-size: 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 1350px) {
  .banner__content__pest__wpr .centeredvert .inside {
    max-width: calc(50vw - (100vw - 1300px) / 2 - 160px);
    width: 80%;
  }
}
.banner__content__pest__wpr .centeredvert .inside .breadcrumb {
  font-size: 18px;
  margin-bottom: 20px;
}
.banner__content__pest__wpr div.commercialtop {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.banner__content__pest__wpr h1 {
  font-size: 36px;
  line-height: 1.1em;
  margin-bottom: 0.6em;
}
.banner__content__pest__wpr h1 span.thin {
  font-weight: 400;
}
.banner__content__pest__wpr h1 span.greentotal {
  color: #7FC31C;
}

.banner__content__pest__wpr h1.green {
  color: #80BC00;
}
.banner__content__pest__wpr h1.green span {
  color: #fff;
}
.banner__content__pest__wpr h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1em;
}

.banner__content__pest__wpr h2 a {
  color: #80BC00;
  font-weight: bold;
}

.banner__content__pest__wpr .btn {
  margin-bottom: 1em;
  margin-right: 8px;
  margin-top: 18px;
}
.banner__content__pest__wpr a {
  color: #fff;
}
.banner__content__inner__wpr {
  max-width: 1300px;
  margin: 0 auto;
}
.banner__content__inner__wpr.error404 {
  padding: 40px 0 0 0;
  line-height: 1.4em;
}
.banner__content__inner__wpr.error404 .errorwpr {
  width: 75%;
  margin: 0 auto;
}
.banner__content__inner__wpr.error404 .errorwpr .fas {
  font-size: 70px;
  margin-bottom: 40px;
}
.banner__content__inner__wpr.error404 .errorwpr h1 {
  margin-bottom: 1em;
  line-height: 1.5em;
}
.banner__content__inner__wpr.error404 .errorwpr p {
  margin-bottom: 1.5em;
}
.banner__inner__sub-inner {
  margin: 0;
  height: 420px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  color: #053765;
}
.banner__content__inner:after {
  content: "";
  display: block;
  clear: both;
}
.banner__content__left {
  height: 380px;
  float: left;
  width: 40%;
  position: relative;
}
.banner__content__left img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.banner__content__center, .banner__content__topmobile {
  float: left;
  width: 40%;
  padding: 100px 40px 0;
  font: 400 28px/30px "Open Sans", sans-serif;
  color: #095AA6;
}
.banner__content__center hr, .banner__content__topmobile hr {
  width: 220px;
  margin: 14px auto;
  border: 1px solid #7FC31C;
}
.banner__content__center a, .banner__content__topmobile a {
  font-weight: 700;
  text-decoration: none;
}
.banner__content__center h1, .banner__content__topmobile h1 {
  line-height: 44px;
  font-weight: normal;
  font-size: 36px;
  color: #095AA6;
}
.banner__content__center h2, .banner__content__topmobile h2 {
  font-size: 24px;
  color: #095AA6;
}
.banner__content__center.headline__home, .banner__content__topmobile.headline__home {
  color: #DCEBF9;
}
.banner__content__center.headline__home h1, .banner__content__topmobile.headline__home h1 {
  color: #fff;
}
.banner__content__center.headline__home h2, .banner__content__topmobile.headline__home h2 {
  color: #fff;
}
.banner__content__center.headline__home a, .banner__content__topmobile.headline__home a {
  color: #fff;
}
.banner__content__center.headline__home a:hover, .banner__content__topmobile.headline__home a:hover {
  color: #fff;
}
.banner__content__center.headline_inner {
  float: none;
  width: 60%;
  margin: 0 auto;
  padding: 75px 40px 0;
  font: 400 24px/28px "Open Sans", sans-serif;
  color: #095AA6;
}
@media screen and (max-width: 768px) {
  .banner__content__center.headline_inner {
    width: 100%;
    padding: 75px 0 0;
  }
}
.banner__content__center.headline_inner h1 {
  line-height: 36px;
  font-weight: 700;
  font-size: 28px;
  color: #095AA6;
}
.banner__content__center.headline_inner h2 {
  line-height: 28px;
  font-weight: 500;
  font-size: 20px;
  color: #095AA6;
}
.banner__content__center.headline_inner a {
  color: #095AA6;
  font-weight: 700;
}
.banner__content__center.headline_inner .btn {
  background: #095aa6;
  border: 0;
  border-radius: 8px;
  color: #fff;
  margin: 20px 0;
}
.banner__content__center.headline_inner .far {
  margin-right: 12px;
}
.banner__content__center.headline_inner .btn a {
  color: #fff;
}
.banner__content__right {
  float: left;
  width: 20%;
  text-align: right;
  padding: 20px 0 0 0;
}
.banner__content__topmobile {
  display: none;
}
@media (max-width: 991px) {
  .banner__content__inner {
    height: 400px;
    padding: 0 20px;
  }
  .banner__content__inner__wpr {
    position: relative;
    height: 400px;
  }
  .banner__content__inner.home_banner {
    height: 570px !important;
  }
  .banner__content__inner__wpr.home_banner {
    height: 570px !important;
  }
  .banner__content__topmobile {
    float: none;
    width: 100%;
    display: block;
    padding: 40px 0 0;
  }
  .banner__content__center.headline__home {
    display: none;
  }
  .banner__content__left {
    float: none;
    width: 100%;
    overflow: hidden;
    height: 312px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .banner__content__left img {
    position: relative;
  }
  .banner__content__center {
    float: none;
    padding: 80px 0 0;
    width: 100%;
  }
  .banner__content__right {
    display: none;
  }
}
.banner__content__right img {
  height: 60px;
}
.banner__inner-background__top {
  height: 420px;
}
.banner__inner-sub-content {
  height: 420px;
  width: 100%;
  position: relative;
}
.banner .headerbox {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 5%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 20;
  width: 90%;
  text-align: center;
  color: #fff;
  text-transform: none;
  font: 700 35px/47px "Hind", sans-serif;
}
.banner .subbox {
  margin: 0 auto;
  background: #fff;
  padding: 50px 50px 50px 50px;
  border-radius: 10px;
  text-align: left;
  position: relative;
  margin-top: -364px;
  max-width: 1380px;
  min-height: 390px;
}
.banner .subbox ul {
  margin: 0 0 1.5em 1.5em;
}
.banner .subbox li {
  list-style: disc outside;
}
.banner .subbox .colwpr {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.banner .subbox .colwpr .column {
  width: calc(50% - 25px);
}
.banner .subbox .colwpr .column img {
  margin-bottom: 1.5em;
}
.banner .subbox .colwpr .column h3 {
  font: 700 20px/28px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 1.5em;
}
.banner .subbox .colwpr .column h4 {
  font: 700 16px/20px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0;
}
.banner .subbox .colwpr .column a.tel {
  font: 700 32px/40px "Open Sans", sans-serif;
  color: #053765;
}
@media (max-width: 991px) {
  .banner .subbox {
    padding: 24px 24px 0 24px;
    margin-bottom: 0;
  }
}
.banner .subbox:after {
  content: "";
  display: block;
  clear: both;
}
.banner .subbox h1 {
  color: #053765;
  font: 700 36px/44px "Open Sans", sans-serif;
}
.banner .subbox .viewallwpr {
  height: 44px;
  width: 100%;
}
@media (max-width: 991px) {
  .banner .subbox .viewallwpr {
    height: auto;
  }
}
.banner .subbox .viewallwpr h1 {
  color: #053765;
  font: 700 36px/44px "Open Sans", sans-serif;
  float: left;
  width: 75%;
}
@media (max-width: 991px) {
  .banner .subbox .viewallwpr h1 {
    float: none;
    width: 100%;
  }
}
.banner .subbox .viewall {
  float: right;
  text-align: right;
  font-weight: bold;
  line-height: 64px;
  width: 25%;
  height: 44px;
}
@media (max-width: 991px) {
  .banner .subbox .viewall {
    float: none;
    width: 100%;
    text-align: left;
  }
}
.banner .subbox .viewall:after {
  content: "";
  display: block;
  clear: both;
}
.banner .subbox hr {
  border: 3px solid #053765;
  width: 100%;
  margin: 24px 0 24px 0;
}
.banner .subbox-inner {
  margin: 0 auto 40px auto;
  width: 100%;
  max-width: 1300px;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  text-align: left;
  margin-top: -200px;
}
.banner .subbox-inner .tel {
  color: #434343;
  font: 700 48px/54px "Open Sans", sans-serif;
}
.banner .subbox-inner:after {
  content: "";
  display: block;
  clear: both;
}
.banner .subbox-inner h1 {
  color: #053765;
  font: 700 36px/44px "Open Sans", sans-serif;
  width: 100%;
}
.banner .subbox-inner hr {
  border: 3px solid #053765;
  width: 100%;
  margin: 24px 0 24px 0;
}
.banner__content__sub-left {
  float: left;
  width: 45%;
  text-align: left;
  color: #414143;
  font: 400 17px/27px "Open Sans", sans-serif;
}
.banner__content__sub-left p {
  margin-bottom: 1em;
}
.banner__content__sub-left h3 {
  font: 700 24px/27px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0;
  /* margin-top: 1em; */
}
.banner__content__sub-left h4 {
  font: 700 18px/27px "Open Sans", sans-serif;
  color: #053765;
}
.banner__content__sub-left .tel {
  font: 700 35px/27px "Open Sans", sans-serif;
  color: #053765;
}
.banner__content__sub-right {
  float: right;
  width: 45%;
  text-align: left;
  color: #414143;
  font: 500 20px/28px "Open Sans", sans-serif;
}
.banner__content__sub-right .gform_wrapper {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.banner__content__sub-right .right_column_form_wrapper {
  background: #DCEBF9;
  border: 1px solid #095AA6;
  border-radius: 10px;
  padding: 24px;
}
.banner__content__sub-right p {
  font: 500 20px/28px "Open Sans", sans-serif;
}
.banner__content__sub-right a {
  /* font-weight: 700; */
}
.banner__content__sub-right .btn a {
  color: #fff;
}
.banner__content__sub-right .text-btn-wpr {
  text-align: left;
}
@media screen and (max-width: 798px) {
  .banner__content__sub-right .text-btn-wpr {
    text-align: center;
  }
}
.banner__content__sub-right .header__btn {
  margin: 14px auto;
}
.banner__content__sub-right .header__btn .far {
  margin-right: 12px;
}
.banner__content__sub-right .tel {
  font: 700 35px/27px "Open Sans", sans-serif;
  color: #053765;
}
.banner__content__sub-right .gform_wrapper input[type=submit] {
  padding: 10px 30px;
  width: 100% !important;
}
.banner__content__sub-right .gform_wrapper .emergency-contact input[type=submit] {
  background: #f7501b;
  border: 0;
}
.banner__content__sub-right .appt_form_top {
  text-align: center;
}
.banner__content__sub-right .appt_form_top h3 {
  font: 700 26px/34px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0.5em;
}
.banner__content__sub-right .appt_form_top .btn {
  border-radius: 8px;
  background: transparent;
  border: 1px solid #095AA6;
  color: #095AA6;
  font: 700 22px/34px "Open Sans", sans-serif;
}
.banner__content__sub-right .appt_form_top .btn a {
  color: #095AA6;
}
.banner__content__sub-right .appt_form_top p {
  font: 400 15px/22px "Open Sans", sans-serif;
  color: #000;
}
@media (max-width: 991px) {
  .banner__content__sub-left, .banner__content__sub-right {
    float: none;
    padding: 0 0 20px 0;
    width: 100%;
  }
}
.banner__content__sub-right.fontoverride {
  font: 400 16px/30px "Open Sans", sans-serif !important;
}
.banner__content__sub-right.fontoverride p {
  font: 400 16px/30px "Open Sans", sans-serif !important;
}
.banner__background {
  margin: 0;
  width: 100%;
  height: 230px;
  background: #7FC31C;
}
.banner__background.subpage {
  margin: 0;
  width: 100%;
  height: 44px;
  background: #7FC31C;
}
.banner__inner {
  width: 100%;
  max-width: 1300px;
  margin: -270px auto 0 auto;
  padding: 30px 20px 20px 20px;
  background: #095AA6;
  border-radius: 10px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3019607843);
  display: block;
}
@media (max-width: 991px) {
  .banner__inner {
    margin: -230px auto 0 auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #095AA6;
  }
}
.banner__bottom {
  padding: 30px 0 15px 0;
  font-size: 24px;
  color: #BAD7F3;
}
.banner__bottom a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.banner__bottom .button {
  width: 310px;
  display: inline-block;
  margin: 30px auto 0 auto;
  background: #BAD7F3;
  box-sizing: border-box;
  box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.banner__bottom .button a {
  padding: 8px 30px;
  display: block;
  color: #053765;
  text-decoration: none;
}

.service-item {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  width: calc(25% - 30px);
  height: 11.75vw;
  margin: 0 15px 30px;
  border-radius: 10px;
  border: 2px solid #095AA6;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3019607843);
  overflow: hidden;
}
.service-item__back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #414143;
  background-size: cover;
  background-position: center;
}
.service-item:hover .service-item__back {
  transform: scale(1.2);
}

.banner-emergency {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3019607843);
}
.banner-emergency__close {
  display: none;
  position: absolute;
  top: 50%;
  right: 40px;
  padding: 0;
  background: none;
  border: none;
  font: 700 22px/22px "Open Sans", sans-serif;
  color: #f7501b;
  transform: translateY(-50%);
}
.banner-emergency__close:hover {
  background: none;
  color: #f7501b;
  opacity: 0.7;
}
.banner-emergency.fixed {
  position: fixed;
  bottom: 0;
  z-index: 1000000;
}
.banner-emergency.fixed .banner-emergency__close {
  display: block;
}
.banner-emergency__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}
.banner-emergency__sub-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: relative;
}
.banner-emergency__content-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: relative;
}
.banner-emergency a.btn {
  white-space: nowrap;
}
@media screen and (max-width: 400px) {
  .banner-emergency a.btn {
    white-space: normal;
  }
}
.banner-emergency h2 {
  font: 700 35px/47px "Open Sans", sans-serif;
  text-transform: uppercase;
}
.banner-emergency h2 i {
  padding-right: 20px;
  color: #f7501b;
}
.banner-emergency p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 1100px) {
  .banner__head {
    width: 100%;
  }
  .service-item {
    width: calc(33.333% - 30px);
    height: 15.67vw;
  }
  .banner-emergency__content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .banner-emergency__left {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .service-item {
    width: calc(50% - 30px);
    height: 23.5vw;
  }
}
@media (max-width: 768px) {
  .banner-emergency.fixed {
    padding: 10px 0;
  }
  .banner-emergency.fixed .container {
    position: relative;
    z-index: 9;
  }
  .banner-emergency.fixed .banner-emergency__content {
    padding: 0;
    z-index: 3;
    position: relative;
  }
  .banner-emergency.fixed .banner-emergency__content h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 768px) and (max-width: 500px) {
  .banner-emergency.fixed .banner-emergency__content h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  .banner-emergency.fixed .banner-emergency__content h2 i {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner-emergency.fixed .banner-emergency__content div {
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .banner-emergency.fixed .banner-emergency__close {
    top: 0;
    right: 10px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25);
  }
  .banner-emergency.fixed .banner-emergency__close::after, .banner-emergency.fixed .banner-emergency__close::before {
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    z-index: -2;
    background: #fff;
  }
  .banner-emergency.fixed .banner-emergency__close::after {
    border-radius: 50%;
  }
  .banner-emergency.fixed .banner-emergency__close::before {
    content: "";
    width: 70px;
    top: 50%;
    left: 50%;
    z-index: -6;
    transform: translateX(-50%);
  }
  .banner-emergency.fixed .banner-emergency__close:hover, .banner-emergency.fixed .banner-emergency__close:focus {
    opacity: 1;
    color: #fff;
  }
  .banner-emergency.fixed .banner-emergency__close:hover::after, .banner-emergency.fixed .banner-emergency__close:focus::after {
    background: #f7501b;
  }
}
@media (max-width: 768px) {
  .banner-emergency.fixed .banner-emergency__left {
    margin: 0 0 10px;
  }
}
@media (max-width: 500px) {
  .service-item {
    width: 100%;
    height: 50.61vw;
    margin: 0 0 30px;
  }
  .banner-emergency__content {
    padding: 0;
  }
  .banner-emergency__close {
    top: 15px;
    right: 15px;
  }
}
/* ===========================================================
   MAIN COLUMN
=========================================================== */
.page-wrap {
  width: 100%;
  position: relative;
}

/* ===========================================================
   MAIN
=========================================================== */
/* ===========================================================
   SIDEBAR
=========================================================== */
/* ===========================================================
   FOOTER
=========================================================== */
/* ===========================================================
   FOOTER
=========================================================== */
.footer {
  /* margin-top: 60px; */
  color: #fff;
}
.footer .gform_wrapper .top_label li.gfield.gf_left_third, .footer .gform_wrapper .top_label li.gfield.gf_middle_third, .footer .gform_wrapper .top_label li.gfield.gf_right_third {
  width: 33.3% !important;
}
@media screen and (max-width: 798px) {
  .footer .gform_wrapper .top_label li.gfield.gf_left_third, .footer .gform_wrapper .top_label li.gfield.gf_middle_third, .footer .gform_wrapper .top_label li.gfield.gf_right_third {
    width: 100% !important;
    clear: both;
  }
}
.footer__leaf {
  height: 120px;
  background: url(/wp-content/uploads/2021/05/form-top-lawn.png) no-repeat bottom center;
}
.footer__form__wpr {
  padding: 0 0 100px 0;
}
.footer__form__wpr__lawn {
  padding: 0 0 150px 0;
  background: url(/wp-content/uploads/2021/04/footer_grass2.png) repeat-x bottom center;
}
.footer__form__box {
  margin: -38px auto 0 auto;
  max-width: 1400px;
  background: #DCEBF9;
  border: 1px solid #095AA6;
  border-radius: 10px;
  padding: 50px 50px 20px 50px;
}
.footer__form__box h3 {
  font: 700 26px/34px "Open Sans", sans-serif !important;
  color: #053765;
  margin-bottom: 0.5em;
}
.footer__form__box p {
  color: #414143;
}
.footer__form__box label {
  color: #000 !important;
}
@media screen and (max-width: 798px) {
  .footer__form__box {
    padding: 20px 20px 20px 20px;
  }
}
.footer__form__box .gform_heading {
  text-align: center;
  color: #053765;
}
.footer__form__box .gform_wrapper h3.gform_title, .footer__form__box h3.gform_title {
  font-size: 30px;
  margin-bottom: 0.5em;
}
.footer__form__box .gform_description {
  color: #053765;
}
.footer__form__box .d-flex.department-select {
  display: none;
}
.footer__form__box .top_label .gfield_label, .footer__form__box .top_label .gfield_consent_label,
.footer .gform_wrapper legend.gfield_label {
  color: #000;
}
.footer .gform_validation_errors > h2::before {
  background-image: none;
}
.footer .gform_legacy_markup_wrapper div.validation_error {
  color: #c40e0e;
  border-top: 2px solid #c40e0e;
  border-bottom: 2px solid #c40e0e;
}
.footer .gform_validation_errors > h2 {
  color: #c40e0e;
}
.footer .gform_legacy_markup_wrapper li.gfield.gfield_error {
  border: 0;
}
.footer .gform_legacy_markup_wrapper .gfield_required {
  color: #c40e0e;
  margin-left: 4px;
}
.footer .gform_legacy_markup_wrapper li.gfield_error {
  background: transparent !important;
  margin-bottom: 6px !important;
  border-top: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.footer .gform_legacy_markup_wrapper .field_description_below .gfield_description {
  padding-top: 8px;
}
.footer .gform_legacy_markup_wrapper .validation_message {
  color: #c40e0e;
}
.footer .gform_legacy_markup_wrapper .gfield_error .gfield_label {
  color: #c40e0e !important;
}
.footer__form__box .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .footer__form__box .gform_wrapper textarea {
  padding: 8px 18px !important;
  border-radius: 3px !important;
  border: 1px solid #095AA6;
}
.footer__form__box.green_outline .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .footer__form__box.green_outline .gform_wrapper textarea {
  padding: 8px 18px !important;
  border-radius: 3px !important;
  border: 1px solid #7FC31C;
}
.footer__form__box .gform_footer {
  text-align: center;
}
.footer__form__box input[type=submit], .footer button, .footer .btn {
  margin: 0 auto;
  width: auto !important;
  padding: 10px 30px;
  background: #095AA6;
  border: 0 !important;
  border-radius: 6px;
  color: #fff;
}
.footer__form__box.pink_button input[type=submit], .footer button, .footer .btn {
  background: #db008b;
}
.footer #menu-main-nav {
  text-align: left !important;
}
.footer .main-nav {
  text-align: left !important;
}
.footer .main-nav li {
  padding: 0 20px 0 0;
}
.footer .main-nav li a {
  font-size: 15px;
  font-weight: 400;
}
.footer .nav {
  padding: 70px 40px;
  margin: 0;
  background: #095AA6;
}
@media screen and (max-width: 1098px) {
  .footer .nav {
    display: none;
  }
}
.footer .nav .footer__top__left {
  width: 15%;
  margin-right: 5%;
  float: left;
}
.footer .nav .footer__top__left img {
  max-width: 100%;
  height: auto;
}
.footer .nav .footer__top__right {
  width: 80%;
  float: left;
}
.footer .nav:after {
  content: "";
  display: table;
  clear: both;
}
.footer .nav img {
  float: left;
  height: 80px;
}
.footer .nav h4 {
  font: 700 19px/24px "Open Sans", sans-serif;
  color: #fff;
}
.footer .locations {
  width: 28%;
  margin-right: 5%;
  float: left;
  line-height: 1.4em;
}
@media screen and (max-width: 798px) {
  .footer .locations {
    width: 100%;
    float: none;
    margin: 0;
  }
}
.footer .locations h4 {
  font-size: 15px;
  text-transform: none;
  border-bottom: 1px solid #fff;
  padding: 0 0 6px 0;
  margin: 0 0 12px 0;
}
.footer .gform_wrapper {
  margin-top: 0;
}
.footer div.ginput_container {
  margin-top: 0 !important;
}
.footer__top .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 8px 18px !important;
  width: 90%;
  border-radius: 0;
}
.footer .gform_wrapper ul.gfield_checkbox li, .footer .gform_wrapper ul.gfield_radio li {
  width: 50%;
  float: left;
}
.footer .gform_wrapper #gform_29 ul.gfield_radio li {
  width: auto;
  margin-right: 8px;
  display: inline-block;
  color: #000;
  float: none;
}
.footer__top input[type=submit], .footer button, .footer .btn {
  width: 80% !important;
  padding: 10px 30px;
  background: #DCEBF9;
  border: 0;
  border-radius: 6px;
  color: #053765;
}
.footer__top {
  width: 100%;
  padding: 30px 40px 25px 40px;
  background-color: #053765;
}
.footer__top:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .footer__top .container {
    width: 100%;
  }
  .footer__copy a {
    display: block;
  }
}
.footer__hiring {
  width: 100%;
  padding: 30px 0 0 0;
  background-color: #DCEBF9;
  border-bottom: 44px solid #7FC31C;
}
.footer__hiring .footer__section h2 {
  font-size: 30px;
  text-transform: none;
  color: #053765;
}
.footer__hiring .footer__section p {
  color: #414143;
  font-weight: 400;
}
.footer__hiring .footer__content {
  position: relative;
}
.footer__hiring .content__wpr {
  position: relative;
  height: auto;
}
.footer__hiring .footer__top__left {
  width: auto;
  float: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__hiring .footer__top__left img {
  display: block;
}
.footer__hiring .footer__top__right {
  margin-left: 30%;
  padding-bottom: 25px;
}
@media (max-width: 991px) {
  .footer__hiring .footer__top__left {
    width: 100%;
    margin: 0;
    float: none;
  }
  .footer__hiring .footer__top__left img {
    margin: 0 auto;
  }
  .footer__hiring .footer__top__right {
    width: 100%;
    float: none;
    margin: 0;
    padding-bottom: 240px;
  }
  .footer__hiring .footer__top__right .btn {
    width: 100% !important;
  }
}
.footer__hiring:after {
  content: "";
  display: table;
  clear: both;
}
.footer__hiring .btn {
  width: auto !important;
  padding: 10px 30px;
  background: #095AA6;
  border: 0;
  border-radius: 6px;
  color: #fff;
}
.footer .content__wpr {
  width: 100%;
}
.footer__top__left {
  width: 30%;
  float: left;
}
.footer__top__left img {
  max-width: 100%;
  height: auto;
}
.footer__top__right {
  width: 70%;
  float: left;
}
.footer__bottom {
  width: 100%;
  padding: 24px 0;
  background-color: #053765;
  text-align: center;
  font: 500 16px/27px "Open Sans", sans-serif;
}
.footer__bottom .footer__content {
  padding: 20px 0 0 0;
}
.footer__bottom .footer__content__home {
  margin: 26px 0 0 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #fff;
}
.footer__bottom .header__social {
  margin-bottom: 40px;
}
.footer__bottom .header__social li a {
  font-size: 18px;
  padding: 0 9px;
}
.footer__bottom a {
  text-decoration: none;
  padding: 0 18px;
  font: 700 16px/27px "Open Sans", sans-serif;
}
.footer__bottom a:hover {
  color: #7FC31C !important;
}
.footer__content p {
  margin-bottom: 2em;
}
.footer__left {
  width: 70%;
  float: left;
  padding-top: 14px;
}
.footer__center {
  width: 30%;
  margin: 0 auto;
  padding-top: 14px;
}
.footer__right {
  width: 30%;
  float: left;
}
.footer__section {
  padding-right: 40px;
}
.footer__section h2 {
  margin: 0 0 10px;
  font: 700 35px/47px "Open Sans", sans-serif;
  text-transform: uppercase;
}
.footer__section p {
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 30px;
}
.footer__logos {
  margin: 50px 0 0 0;
}
.footer__logo {
  padding: 7px;
}
.footer__logo img {
  max-height: 60px;
}
.footer__copy a {
  color: #fff;
  text-decoration: none;
}
.footer__copy a:hover {
  color: #f7501b;
}
.footer__copy p {
  margin-bottom: 1.5em;
}
.footer__copy p.copyright {
  font-size: 15px;
}

@media (max-width: 991px) {
  .footer__left, .footer__right {
    width: 100%;
    text-align: center;
  }
  .footer__left {
    margin: 0 0 20px;
  }
  .footer__section {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .footer__logo {
    width: 100%;
  }
}
.footershort .footer__leaf {
  height: 50px !important;
}

/* ===========================================================
   SPECIFIC PAGES
=========================================================== */
/* ===========================================================
   HOMEPAGE - SERVICES
=========================================================== */
.home-services {
  width: 100%;
  padding: 0 40px;
}
.home-services h2 {
  font: 700 30px/36px "Open Sans", sans-serif;
  color: #053765;
  text-align: center;
  margin-bottom: 1em;
  width: 100%;
}
.home-services__content {
  max-width: 1300px;
  margin: 0 auto;
}
.home-services__content:after {
  content: "";
  clear: both;
  display: table;
}
.home-services__left, .home-services__right {
  width: 50%;
  float: left;
}
.home-services__left {
  padding-right: 20px;
}
.home-services__right {
  padding-left: 20px;
}
.home-services h3 {
  margin: 0 0 10px;
  color: #053765;
  font: 700 23px/30px "Open Sans", sans-serif;
}
.home-services .services_list {
  font-weight: 700;
  width: 50%;
  float: left;
}
.home-services .services_list ul {
  margin: 0 30px 15px 0;
  list-style-position: inside;
  list-style-type: disc;
}
.home-services .services_list li {
  border-bottom: 1px solid #999;
  padding-left: 10px;
}

/** Service Reviews **/
.home-reviews {
  width: 100%;
  padding: 44px 0 44px 0;
}
.home-reviews__header {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 44px;
}
.home-reviews__header h2 {
  font: 700 30px/30px "Open Sans", sans-serif;
  color: #053765;
}
.home-reviews .reviews-wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-reviews .reviews-col {
  width: 48%;
  padding-left: 2%;
  padding-right: 2%;
  box-sizing: border-box;
}
.home-reviews .reviews-col:first-of-type {
  padding-left: 0;
  border: 0;
}
.home-reviews .reviews-col:last-of-type {
  padding-right: 0;
}
.home-reviews .glsr-review-author {
  font-weight: 700;
}
.home-reviews .glsr-review-title h3 {
  font: 700 20px/26px "Open Sans", sans-serif;
  color: #053765;
}
.home-reviews .glsr-review-title h4 {
  font: 700 20px/26px "Open Sans", sans-serif;
  color: #053765;
}

@media (max-width: 991px) {
  .home-reviews .reviews-col {
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1200px) {
  .home-services__left {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
  .home-services__right {
    width: 100%;
    padding: 0;
  }
  .home-services .services_list {
    width: 100%;
  }
}
.glsr-review-date {
  display: none !important;
}

/* ===========================================================
   HOMEPAGE - SPECIALS
=========================================================== */
.service-specials {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 50px auto;
}
.service-specials p {
  margin-bottom: 1em;
}
.service-specials h3 {
  font: 700 30px/36px "Open Sans", sans-serif;
  color: #053765;
  text-align: center;
  margin-bottom: 1em;
}
.service-specials h4 {
  font: 700 25px/30px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0.5em;
}
.service-specials__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}
.service-specials__left {
  width: 48%;
  float: left;
}
.service-specials__right {
  width: 48%;
  float: right;
}
.service-specials .box {
  background: #DCEBF9;
  padding: 30px;
  border: 1px solid #053765;
  border-radius: 10px;
  height: 100%;
}
.service-specials .btn {
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: #fff;
}
.service-specials .btn a {
  padding: 8px 24px;
  display: block;
  color: #fff;
}
@media (max-width: 1200px) {
  .service-specials .btn {
    width: 100%;
  }
}
.service-specials select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
.service-specials select::-ms-expand {
  display: none;
}
.service-specials .select {
  margin: 0 auto;
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.service-specials .select select, .service-specials .select::after {
  grid-area: select;
}
.service-specials .select:not(.select--multiple)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  color: #053765;
  justify-self: end;
  width: 0.8em;
  height: 1em;
}

@media (max-width: 1200px) {
  .service-specials__left {
    width: 100%;
    margin: 0 24px 24px 24px;
  }
  .service-specials__right {
    width: 100%;
    margin: 0 24px 0 24px;
  }
}
/* ===========================================================
   HOMEPAGE - HISTORY
=========================================================== */
.home-history {
  max-width: 1300px;
  margin: 40px auto;
  background: #095AA6;
  padding: 40px 40px;
  border-radius: 10px;
  color: #fff;
}
.home-history__content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home-history__left {
  width: 55%;
  padding-right: 5%;
}
.home-history__right {
  width: 40%;
}
.home-history h3 {
  font: 700 30px/36px "Open Sans", sans-serif;
  color: #fff;
  margin-bottom: 1em;
}
.home-history p {
  color: #fff;
}
.home-history p a {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1200px) {
  .home-history__left {
    width: 100%;
    display: block;
  }
  .home-history__right {
    width: 100%;
    display: block;
  }
}
/* ===========================================================
   TEXT WITH IMAGE
=========================================================== */
.about-testimonial {
  margin: 0;
  padding: 100px 0 100px 0;
  background: #095AA6;
  color: #fff;
  font: 700 26px/30px "Open Sans", sans-serif;
  text-align: center;
}
.about-testimonial .container {
  width: 75%;
}

.about-testimonial p {
  color: #fff;
  font: 400 22px/28px "Open Sans", sans-serif;
  text-align: center;
}

.about-testimonial p span {
  font-weight: 700;
}

.text-image {
  width: 100%;
}
.text-image__content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 0 50px;
}
.text-image__content .wpr {
  text-align: center;
}
.text-image.left .text-image__content {
  flex-direction: row-reverse;
}
.text-image__left {
  width: 48%;
  max-width: 600px;
  padding-right: 0;
}
.text-image__right {
  width: 48%;
  padding-left: 2%;
}
.text-image__right img {
  max-width: 100%;
  height: auto;
}
.text-image h2 {
  display: block;
  width: 100%;
}
.text-image__img-two {
  float: left;
  width: 48%;
  margin: 0 1%;
}
.text-image__img {
  position: relative;
  margin: 0 0 0 auto;
}
.text-image.left .text-image__img {
  margin: 0 auto 0 0;
}
.text-image__balloon-text {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}
.text-image__balloon-text strong {
  font-size: 28px;
}
@media screen and (max-width: 1100px) {
  .text-image.full {
    padding: 0;
  }
}
.text-image.full.right .text-image__right {
  float: right;
}
@media (max-width: 1200px) {
  .text-image.full.right .text-image__right {
    position: relative;
  }
}
.text-image.full.left .text-image__right {
  position: absolute;
  left: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .text-image.full.left .text-image__right {
    position: relative;
  }
}
.text-image.group .text-image__content {
  align-items: center;
  padding: 24px 0 10px;
}
.text-image.group .text-image__left {
  padding-right: 2%;
}
.text-image.group .text-image__right {
  width: 50%;
  padding-left: 2%;
}
.text-image.group .text-image__right .text-image__wrap img {
  -webkit-box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
  -moz-box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
  box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
}

@media (max-width: 1200px) {
  .text-image {
    padding: 20px;
  }
  .text-image__left {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .text-image__right {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .text-image__img-two {
    float: none;
    width: 100%;
    margin: 0 0 12px 0;
  }
  .text-image.group .text-image__left {
    width: 100%;
    padding: 20px;
    max-width: none;
  }
  .text-image.group .text-image__right {
    width: 100%;
    padding: 20px;
  }
  .text-image.group .text-image__right .text-image__wrap {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .text-image.group .text-image__right .text-image__group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(1) {
    margin: 92px 30px 30px 0;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(3) {
    margin: 0px 30px 0 20px;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(4) {
    margin-top: -115px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .text-image.group .text-image__right .text-image__wrap:nth-child(1) {
    width: calc(50% - 15px);
    margin: 92px 30px 30px 0;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(2) {
    width: calc(50% - 15px);
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(3) {
    width: calc(50% - 15px);
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(4) {
    width: calc(50% - 35px);
    margin-top: -85px;
  }
}
@media screen and (max-width: 991px) {
  .text-image.group .text-image__right .text-image__group {
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .text-image.group .text-image__right .text-image__wrap:nth-child(1) {
    width: 252px;
    height: 295px;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(2) {
    height: 272px;
    width: 232px;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(3) {
    width: 232px;
    height: 272px;
  }
  .text-image.group .text-image__right .text-image__wrap:nth-child(4) {
    height: 296px;
    width: 258px;
  }
}
@media (max-width: 1200px) {
  .text-image.group .text-image__left {
    padding: 0;
  }
  .text-image.group .text-image__right {
    width: 100%;
    padding: 0;
  }
  .text-image.wide .container {
    width: 100%;
  }
}
img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

img.mobile {
  display: none !important;
}

@media screen and (max-width: 550px) {
  img.mobile {
    display: block !important;
  }
  img.desktop {
    display: none !important;
  }
  .text-image__balloon-text {
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    position: relative;
    background: #053765;
    border-radius: 50%;
    padding: 20px 30px;
    max-width: 235px;
  }
  .text-image__balloon-text:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #053765;
    border-bottom: 0;
    border-right: 0;
    margin-left: -10px;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 455px) {
  .text-image__balloon-text {
    position: relative !important;
    margin: 0 auto;
    top: 22px !important;
    left: 0 !important;
    right: 0 !important;
  }
  iframe[src*=recaptcha] {
    max-width: 300px;
    overflow: hidden;
    width: 275px !important;
    border: 1px solid lightgray;
    border-radius: 5px;
  }
}
/* ===========================================================
   TEXT WITH IMAGES
=========================================================== */
.text-images {
  width: 100%;
}
.text-images__content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 0 10px;
}
.text-images__left {
  width: 50%;
  max-width: 600px;
  padding-right: 85px;
  margin: 0 0 0 auto;
}
.text-images__left ul {
  margin-left: 33px;
}
.text-images__left ul li {
  margin-bottom: 25px;
}
.text-images__right {
  width: 50%;
  padding-left: 20px;
}
.text-images__right .text-images__wrap img {
  -webkit-box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
  -moz-box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
  box-shadow: 10px 10px 0px 0px rgb(0, 99, 167);
}

@media (max-width: 991px) {
  .text-images__left {
    width: 100%;
    padding: 20px;
    max-width: unset;
  }
  .text-images__right {
    width: 100%;
    padding: 20px;
  }
  .text-images__right .text-images__wrap {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .text-images__right .text-images__group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .text-images__right .text-images__wrap img {
    display: none;
  }
  .text-images__right .text-images__wrap:nth-child(1) {
    margin: 92px 30px 30px 0;
  }
  .text-images__right .text-images__wrap:nth-child(3) {
    margin: 0px 30px 0 20px;
  }
  .text-images__right .text-images__wrap:nth-child(4) {
    margin-top: -115px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .text-images__right .text-images__wrap:nth-child(1) {
    width: calc(50% - 15px);
    margin: 92px 30px 30px 0;
  }
  .text-images__right .text-images__wrap:nth-child(2) {
    width: calc(50% - 15px);
  }
  .text-images__right .text-images__wrap:nth-child(3) {
    width: calc(50% - 15px);
  }
  .text-images__right .text-images__wrap:nth-child(4) {
    width: calc(50% - 35px);
    margin-top: -85px;
  }
}
@media screen and (max-width: 991px) {
  .text-images__right .text-images__group {
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .text-images__right .text-images__wrap:nth-child(1) {
    width: 252px;
    height: 295px;
  }
  .text-images__right .text-images__wrap:nth-child(2) {
    height: 272px;
    width: 232px;
  }
  .text-images__right .text-images__wrap:nth-child(3) {
    width: 232px;
    height: 272px;
  }
  .text-images__right .text-images__wrap:nth-child(4) {
    height: 296px;
    width: 258px;
  }
}
/* ===========================================================
   LANDING
=========================================================== */
.landingTop {
  width: 100%;
  max-width: 1300px;
  padding: 20px 0;
  margin: 0 auto;
  display: flex;
}

.landingTopLeft {
  width: 30%;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  color: #095AA6;
  font-size: 20px;
  padding-top: 20px;
}
.landingTopLeft p {
  display: inline-block;
}
.landingTopLeft a {
  display: inline-block !important;
  color: #095AA6;
}

.landingTopCenter {
  width: 40%;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
}

.landingTopRight {
  width: 30%;
  text-align: right;
  display: inline-flex;
  flex-direction: column;
  padding-top: 12px;
}
.landingTopRight .btn {
  background: transparent;
  border: 2px solid #fff;
  text-align: center;
  border-radius: 8px;
  min-width: 400px;
  margin-bottom: 10px;
}
.landingTopRight .btn a {
  color: #fff;
  padding: 10px 50px;
}
.landingTopRight .btn.orange {
  background-color: #f7501b;
  border-color: #f7501b;
}

@media (max-width: 991px) {
  .landingTopLeft {
    display: none;
  }
  .landingTopRight {
    display: none;
  }
  .landingTopCenter {
    width: 100%;
  }
}
.landingBanner {
  width: 100%;
  height: auto;
  display: block;
  min-height: 338px;
  background: #083E72;
  position: relative;
  margin-bottom: 50px;
}

.herocopy {
  color: #fff;
}

.landingTruck {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -50px;
}
.landingTruck img {
  display: inline-block;
}

.landingBannerWrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}

.landingBannerLeft {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
  padding-top: 30px;
}

.landingBannerLeftInner {
  padding: 40px;
  text-align: left;
}
.landingBannerLeftInner h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.2em;
}
.landingBannerLeftInner h2 {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1em;
  text-align: left;
}
.landingBannerLeftInner .btn {
  background: transparent;
  border: 2px solid #fff;
  text-align: center;
  border-radius: 8px;
  min-width: 400px;
  margin-bottom: 10px;
}
.landingBannerLeftInner .btn a {
  color: #fff;
  padding: 10px 50px;
}
.landingBannerLeftInner .btn.orange {
  background-color: #f7501b;
  border-color: #f7501b;
}
.landingBannerLeftInner .btn.mobileOnly {
  display: none;
}

.landingBannerRight {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
  min-height: 338px;
}

@media (max-width: 991px) {
  .landingBannerLeft {
    width: 100%;
    padding-top: 0;
  }
  .herocopy.hideMobile {
    display: none !important;
  }
  .landingBannerRight {
    display: none;
  }
  .btn {
    display: block;
    width: 100%;
    min-width: 100% !important;
    max-width: 100%;
  }
  .btn.mobileOnly {
    display: block !important;
  }
  .landingBannerLeftInner h1 {
    text-align: center;
  }
  .landingBannerLeftInner h2 {
    text-align: center;
  }
  .landingBanner {
    height: auto;
    padding-bottom: 50px;
  }
}
.landingContent {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  padding: 0 0 50px 0;
}
.landingContent .tagline {
  font-size: 24px;
  color: #083E72;
  text-align: center;
  padding: 30px 0;
  width: 100%;
}

.landingContentWrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
}

.landingContentLeft {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
}
.landingContentLeft .bodyWrapper h3 {
  margin-top: 24px;
}
.landingContentLeft .reviewWrapper {
  margin-bottom: 30px;
}
.landingContentLeft .extraContent {
  margin-bottom: 30px;
}
.landingContentLeft .bodyWrapper ul,
.landingContentLeft .extraContent ul {
  list-style: disc outside;
}
.landingContentLeft .bodyWrapper li,
.landingContentLeft .extraContent li {
  margin-left: 20px;
}
.landingContentLeft .tagline {
  font-size: 24px;
  color: #083E72;
  text-align: center;
}
.landingContentLeft .tagline.mobileOnly {
  display: none;
}
.landingContentLeft .promotionWrapper {
  border: 2px dotted #095BA5;
  background: #e0ebf8;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.landingContentLeft .promotionWrapper h3 {
  color: #083E72;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1em;
}
.landingContentRight {
  width: 45%;
  margin-left: 5%;
  display: inline-flex;
  flex-direction: column;
}
.landingContentRight .appt_form_top {
  text-align: center;
}
.landingContentRight h3 {
  font: 700 26px/34px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0.5em;
}
.landingContentRight .btn {
  border-radius: 8px;
  background: transparent;
  border: 1px solid #095AA6;
  color: #095AA6;
  font: 700 22px/34px "Open Sans", sans-serif;
}

.landingContentRightFormWrapper {
  background: #DCEBF9;
  background-color: rgb(220, 235, 249);
  border: 1px solid #095AA6;
  border-radius: 10px;
  padding: 24px;
}

@media (max-width: 991px) {
  .tagline.mobileOnly {
    display: block !important;
  }
  .promotionWrapper {
    margin-top: 40px;
  }
  .tagline.hideMobile {
    display: none;
  }
  .landingContentWrapper {
    display: block;
  }
  .landingContentLeft {
    width: 100%;
    padding: 0 30px;
  }
  .landingContentLeft .bodyWrapper h3 {
    margin-top: 24px;
    margin-bottom: 1em;
    text-align: center;
  }
  .landingContentRight {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 0 30px;
  }
}
/* ===========================================================
   SERVICES
=========================================================== */
.services {
  width: 100%;
  padding: 50px 0;
  background-color: #EAF1F5;
}
.services__title {
  margin: 0 0 40px;
  font: 700 35px/47px "Open Sans", sans-serif;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
.services__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin: 0 -15px;
}

@media (max-width: 768px) {
  .services__list {
    width: 100%;
    margin: 0 auto;
  }
}
.page-template-services .services {
  background-color: transparent;
}

/* ===========================================================
   PEST LANDING
=========================================================== */
.pest-landing h3 {
  text-align: center;
  font-weight: 400;
}
.pest-landing .pest-landing-buttons {
  text-align: center;
}
.pest-landing .pest-landing-buttons .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  background: #083E72 !important;
  display: inline-block !important;
}
@media (max-width: 991px) {
  .pest-landing .pest-landing-buttons .btn {
    display: inline-block !important;
    width: auto !important;
  }
}
.pest-landing .pest-landing-buttons .btn.on {
  background: #095BA5 !important;
}
.pest-landing .pest-landing-content {
  background: #F3F1F1;
  padding: 20px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 30px;
}
.pest-landing .pest-landing-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pest-landing .pest-landing-content .pest-landing-column {
  width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .pest-landing .pest-landing-content .pest-landing-column {
    width: 100%;
  }
}
.pest-landing .pest-landing-content .pest-landing-column h4 {
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 1em;
}

.pest-landing.lawn-landing .pest-landing-content .pest-landing-column h4 {
  font-size: 20px;
  color: #37560A;
  text-align: center;
  margin-bottom: 1em;
}

.pest-landing.lawn-library-landing h4 {
  font-size: 20px;
  color: #37560A !important;
  text-align: left !important;
  margin-bottom:.5em;
}

.service-pest .service-pest-wpr.lawn-library-landing .half-column h4 a {
  font-size: 20px;
  color: #37560A !important;
  text-align: left !important;
  margin-bottom:.5em;
}

.pest-landing.lawn-library-landing img {
  border-radius: 10px;
  margin-bottom:.5em;
}

.pest-landing.tree-landing .pest-landing-content .pest-landing-column h4 {
  font-size: 20px;
  color: #37560A;
  text-align: center;
  margin-bottom: 1em;
}

.pest-landing .pest-landing-content .pest-landing-column .review-wpr {
  border-radius: 0;
  padding: 0 0 0 50px;
}
@media (max-width: 768px) {
  .pest-landing .pest-landing-content .pest-landing-column .review-wpr {
    padding: 0;
  }
}
.pest-landing .pest-landing-content .pest-landing-column .review-wpr h4 {
  color: #000000;
  font-size: 18px;
  text-align: left;
}
.pest-landing .pest-landing-content-left {
  text-align: center;
}
.pest-landing .pest-landing-content-left a {
  font-size: 16px;
}
.pest-landing .pest-btns-wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pest-landing .pest-btns-wpr .pest-btns {
  width: calc(50% - 5px);
}
@media (max-width: 991px) {
  .pest-landing .pest-btns-wpr .pest-btns {
    width: 100%;
  }
}
.pest-landing .pest-btns-wpr .pest-btns a {
  color: #095BA5 !important;
  font-size: 17px;
  font-weight: bold;
  display: block;
  text-align: left !important;
}
.pest-landing .pest-btns-wpr .pest-btns .pest-btn {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 8px;
  display: block;
  color: #095AA6;
  padding: 15px 100px 15px 15px;
  background-repeat: no-repeat;
  background-position: center right 6px;
  background-size: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.pest-landing.lawn-landing .pest-btns-wpr .pest-btns .pest-btn {
  color: #3A5728;
  border: 1px solid #3A5728;
  padding: 15px;
}

.pest-landing.tree-landing .pest-btns-wpr .pest-btns .pest-btn {
  color: #3A5728;
  border: 1px solid #3A5728;
  padding: 15px;
}


.pest-landing.lawn-landing .pest-btns-wpr .pest-btns-left a:first-of-type .pest-btn {
  color: #fff;
  background: #3A5728;
  border: 1px solid #3A5728;
}

.pest-landing.lawn-landing .pest-btns-wpr .pest-btns-left a:first-of-type .pest-btn img {
  width: auto;
  max-width: 100%;
  height: 61px;
  border-radius: 10px;
}

.pest-landing.lawn-landing .pest-btns-wpr .pest-btns-left a:first-of-type .pest-btn .totalimg {
  width: 100%;
  height: 61px;
  border-radius: 10px;
  background: url('/wp-content/uploads/2024/10/lawn-total-nav2.jpg') no-repeat bottom center /cover;
}


.pest-landing.lawn-landing .pest-btns-wpr .pest-btns a {
  color: #3A5728 !important;
}

.pest-landing.lawn-landing .pest-btns-wpr .pest-btns a span {
  font-weight: 400;
}

.pest-landing.lawn-landing .pest-btns-wpr .pest-btns a span.greentxt {
  color: #80BC00;
  font-weight: 700;
}

.pest-landing.tree-landing .pest-btns-wpr .pest-btns a {
  color: #3A5728 !important;
}

.pest-landing.tree-landing .pest-btns-wpr .pest-btns a span {
  font-weight: 400;
}

.pest-landing .pest-landing-bottom {
  width: 100%;
  display: block;
  text-align: center;
  margin: 24px 0 0 0;
}
.pest-landing .pest-landing-bottom .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.pest-landing .pest-landing-bottom .btn a {
  color: #fff;
}
.pest-landing .pest-landing-bottom a {
  color: #000;
  font-weight: bold;
}
.pest-landing .pest-landing-bottom p {
  font-size: 24px;
  color: #000;
}



/* ===========================================================
   LAWN LANDING
=========================================================== */
.lawn-landing {
  width: 100%;
}

.lawn-landing.lawn-library-landing-top {
  text-align: center;
}

.lawn-landing.lawn-library-landing-top h2 {
  text-align: center;
  font-weight: 400;
  color: #37560A;
  font-size: 24px;
}


.lawn-landing.lawn-library-landing-top h3 {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: 22px;
}


.lawn-landing h3 {
  text-align: center;
  font-weight: 400;
  color: #37560A;
}

.lawn-landing h4 {
  text-align: center;
  font-weight: 700;
  color: #37560A;
}
.lawn-landing .landing-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lawn-landing .landing-top p {
  color: #37560A;
}
.lawn-landing .landing-top .landing-top-column {
  width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .lawn-landing .landing-top .landing-top-column {
    width: 100%;
  }
}

.totalgreenwpr {
  background: url(/wp-content/uploads/2024/10/lawn-total-promo2.jpg) no-repeat top left;
  padding-top: 200px;
 border-radius: 10px;
}

.totalgreencontent {
  background: #3A5728;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 24px;
  text-align: center;
}


.totalgreencontent h2 {
  color: #fff;
}
.totalgreeninner {
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.totalgreencontentleft {
  width: 70%;
  padding-right: 5%;
  color: #fff;
}


.totalgreencontentleft h3 {
  color: #fff;
  text-align: left;
}

.totalgreencontentleft h3 span {
  color: #80BC00;
  font-weight: 700;
}

.totalgreencontentleft p {
  color: #fff;
}

.totalgreencontentleft .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.totalgreencontentleft .btn a {
  color: #fff;
}

.totalgreencontentright {
  width: 25%;
}

@media (max-width: 768px) {
  .totalgreencontentleft {
    width: 100%;
  }
  .totalgreencontentright {
    width: 100%;
  }
}



.totalgreencontentright img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.totalgreencontentright .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: block;
}
.totalgreencontentright .btn a {
  color: #fff;
}

.pest-landing h3.lawnh3 {
  text-align: center;
  color: #37560A;
  margin-bottom: 24px;
}

.pest-landing h4 {
  text-align: center;
  font-weight: 700;
  color: #37560A;
  margin-bottom: 24px;
}
.pest-landing .landing-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pest-landing .landing-top p {
  color: #37560A;
}
.pest-landing .landing-top .landing-top-column {
  width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .pest-landing .landing-top .landing-top-column {
    width: 100%;
  }
}

.lawn-landing .landing-buttons {
  text-align: center;
}
.lawn-landing .landing-buttons .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  background: #083E72 !important;
  display: inline-block !important;
}
@media (max-width: 991px) {
  .lawn-landing .landing-buttons .btn {
    display: inline-block !important;
    width: auto !important;
  }
}
.lawn-landing .landing-buttons .btn.on {
  background: #095BA5 !important;
}
.lawn-landing .landing-content {
  background: #EAF6DF;
  padding: 20px;
  color: #3A5728;
  border-radius: 5px;
  margin-bottom: 30px;
}
.lawn-landing .landing-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lawn-landing .landing-content a {
  color: #3A5728;
}
.tree-landing .landing-content a {
  color: #3A5728;
}
.lawn-landing .landing-content .landing-column {
  width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .lawn-landing .landing-content .landing-column {
    width: 100%;
  }
}
.lawn-landing .glsr-review {
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 40px;
}

.lawn-landing .landing-column .glsr-default .glsr-review p {
  color: #3A5728;
}

.tree-landing .glsr-review {
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 40px;
}

.tree-landing .landing-column .glsr-default .glsr-review p {
  color: #3A5728;
}
.lawn-landing .landing-content .landing-column h4 {
  font-size: 20px;
  color: #3A5728;
  text-align: center;
  margin-bottom: 1em;
}
.lawn-landing .landing-content .landing-column .review-wpr {
  border-radius: 0;
  padding: 0 0 0 50px;
}
@media (max-width: 768px) {
  .lawn-landing .landing-content .landing-column .review-wpr {
    padding: 0;
  }
}
.lawn-landing .landing-content .landing-column .review-wpr h4 {
  color: #3A5728;
  font-size: 18px;
  text-align: left;
}
.lawn-landing .landing-content-left {
  text-align: center;
}
.lawn-landing .landing-content-left a {
  font-size: 16px;
}
.lawn-landing .btns-wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.lawn-landing .btns-wpr .btns {
  width: calc(50% - 5px);
}
@media (max-width: 991px) {
  .lawn-landing .btns-wpr .btns {
    width: 100%;
  }
}
.lawn-landing .btns-wpr .btns a {
  color: ##3A5728 !important;
  font-size: 17px;
  font-weight: bold;
  display: block;
  text-align: left !important;
}
.lawn-landing .btns-wpr .btns .btn {
  background: #fff;
  border: 1px solid #3A5728;
  border-radius: 5px;
  margin-bottom: 8px;
  display: block;
  color: #3A5728;
  padding: 15px 15px 15px 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: left !important;
}
.lawn-landing .landing-bottom {
  width: 100%;
  display: block;
  text-align: center;
  margin: 24px 0 0 0;
}
.lawn-landing .landing-bottom h4 {
  margin-bottom: 20px;
}
.lawn-landing .landing-bottom .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.lawn-landing .landing-bottom .btn a {
  color: #fff;
}
.lawn-landing .landing-bottom a {
  color: #3A5728;
  font-weight: bold;
}
.lawn-landing .landing-bottom p {
  color: #000;
  text-align: left;
}

.lawn-landing .landing-bottom li {
  text-align: left;
}

.lawn-landing .landing-bottom.leadimg {
  width: 100%;
}
.lawn-landing .landing-bottom .leadimg img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.leadimg .mobileonly {
  display: none;
}

.leadimg .desktoponly {
    display: block;
  }

@media (max-width: 768px) {
  .leadimg .mobileonly {
    display: block;
  }
  .leadimg .desktoponly {
    display: none;
  }
}

.lawn-landing .landing-bottom .lowerpromo p {
  color: #3A5728;
  text-align: center;
  font-size: 24px;
}



.lawn-service .service-content {
  color: #3A5728;
  border-radius: 5px;
}
.lawn-service .service-content .wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.lawn-service .service-content .wpr .service-content-left {
  width: 48%;
  margin-bottom: 24px;
}

.lawn-service .service-content .wpr .service-content-left img {
  border-radius: 10px;
}

.lawn-service .service-content .wpr .service-content-left h3 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-left h3.thin {
  font-weight: 400;
}

.lawn-service .service-content .wpr .service-content-left ul {
 list-style-type: circle;
}

.lawn-service .service-content .wpr .service-content-right {
  width: 48%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .lawn-service .service-content .wpr .service-content-left {
    width: 100%;
  }
  .lawn-service .service-content .wpr .service-content-right {
    width: 100%;
  }
}

.lawn-service .service-content .wpr .service-content-right img {
  border-radius: 10px;
}

.lawn-service .service-content .wpr .service-content-right h3 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-right ul {
 list-style-type: circle;
}

.lawn-service .service-content .wpr .service-content-third {
  width: 30%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .lawn-service .service-content .wpr .service-content-third {
    width: 100%;
  }
}

.lawn-service .service-content .wpr .service-content-third img {
  border-radius: 10px;
}

.lawn-service .service-content .wpr .service-content-third h3 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-third h4 {
  color: #3A5728;
  font-size: 16px;
  margin-bottom: 0;
}

.lawn-service .service-content .wpr .service-content-quarter h4 {
  color: #3A5728;
  font-size: 16px;
  margin-bottom: 0;
}

.lawn-service .service-content .wpr .service-content-third .box {
  background: #f3f9eb;
  padding: 20px;
  height: 100%;
}

.lawn-service .service-content .wpr .service-content-third .box p {
   margin-bottom: 0;
}

.lawn-service .service-content .wpr .service-content-quarter {
  width: 24%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .lawn-service .service-content .wpr .service-content-quarter {
    width: 100%;
  }
}

.lawn-service .service-content .wpr .service-content-quarter img {
  border-radius: 10px;
}

.lawn-service .service-content .wpr .service-content-quarter h3 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-center {
  width: 100%;
  text-align: center;
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-center ul {
 list-style-type: circle;
}


.lawn-service .service-content .wpr .service-content-center a {
 color: #3A5728;
 font-weight: 700;
}

.lawn-service .service-content .wpr .service-content-center h2 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-center h3 {
  color: #3A5728;
}

.lawn-service .service-content .wpr .service-content-center .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.lawn-service .service-content .wpr .service-content-center .btn a {
  color: #fff;
}

.lawn-service .service-content .wpr .service-content-center .lowerpromo p {
  color: #3A5728;
  text-align: center;
  font-size: 24px;
}

.lawn-service .service-content .wpr .service-content-center .lowerpromo a {
 color: #3A5728;
 font-weight: 700;
}

.lawn-service .service-content .wpr .service-content-center .lowerpromo .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.lawn-service .service-content .wpr .service-content-center .lowerpromo .btn a {
  color: #fff;
}


/* ===========================================================
   TREE LANDING
=========================================================== */
.tree-landing h3 {
  text-align: center;
  font-weight: 400;
}
.tree-landing .landing-buttons {
  text-align: center;
}
.tree-landing .landing-buttons .btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  background: #083E72 !important;
  display: inline-block !important;
}
@media (max-width: 991px) {
  .tree-landing .landing-buttons .btn {
    display: inline-block !important;
    width: auto !important;
  }
}
.tree-landing .landing-buttons .btn.on {
  background: #095BA5 !important;
}
.tree-landing .landing-content {
   background: #EAF6DF;
  padding: 20px;
  color: #000;
  border-radius: 5px;
  margin-bottom: 30px;
}
.tree-landing .landing-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tree-landing .landing-content .landing-column {
  width: calc(50% - 5px);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .tree-landing .landing-content .landing-column {
    width: 100%;
  }
}
.tree-landing .landing-content .landing-column h4 {
  font-size: 20px;
  color: #000;
  text-align: center;
  margin-bottom: 1em;
}
.tree-landing .landing-content .landing-column .review-wpr {
  border-radius: 0;
  padding: 0 0 0 50px;
}
@media (max-width: 768px) {
  .tree-landing .landing-content .landing-column .review-wpr {
    padding: 0;
  }
}
.tree-landing .landing-content .landing-column .review-wpr h4 {
  color: #000000;
  font-size: 18px;
  text-align: left;
}
.tree-landing .landing-content-left {
  text-align: center;
}
.tree-landing .landing-content-left a {
  font-size: 16px;
}
.tree-landing .tns-wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tree-landing .btns-wpr .btns {
  width: calc(50% - 5px);
}
@media (max-width: 991px) {
  .tree-landing .btns-wpr .btns {
    width: 100%;
  }
}
.tree-landing .btns-wpr .btns a {
  color: #095BA5 !important;
  font-size: 17px;
  font-weight: bold;
  display: block;
  text-align: left !important;
}
.tree-landing .btns-wpr .btns .btn {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 8px;
  display: block;
  color: #095AA6;
  padding: 15px 100px 15px 15px;
  background-repeat: no-repeat;
  background-position: center right 6px;
  background-size: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.tree-landing .landing-bottom {
  width: 100%;
  display: block;
  text-align: center;
  margin: 24px 0 0 0;
}
.tree-landing .landing-bottom .btn {
  background: #80BC00 !important;
  font-size: 17px;
  display: inline-block !important;
}
.tree-landing .landing-bottom .btn a {
  color: #fff;
}
.tree-landing .landing-bottom a {
  color: #000;
  font-weight: bold;
}
.tree-landing .landing-bottom p {
  font-size: 24px;
  color: #000;
}

/* ===========================================================
   Specials
=========================================================== */
.single-ipf_specials .specials, .page-template-specials .specials {
  display: flex;
  flex-wrap: wrap;
}
.single-ipf_specials .specials .special, .page-template-specials .specials .special {
  background-color: #095aa6;
  padding: 2%;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
}
@media (max-width: 991px) {
  .single-ipf_specials .specials .special, .page-template-specials .specials .special {
    width: 96%;
    margin-right: 0px;
  }
}
.single-ipf_specials .specials .special:nth-of-type(2n+2), .page-template-specials .specials .special:nth-of-type(2n+2) {
  margin-right: 0px;
}
.single-ipf_specials .specials .special .inner, .page-template-specials .specials .special .inner {
  border: 5px dashed #fff;
  padding: 30px;
  text-align: center;
}
.single-ipf_specials .specials .special .inner h2, .page-template-specials .specials .special .inner h2 {
  color: #7eb948;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 5px;
  text-transform: none;
}
.single-ipf_specials .specials .special .inner h3, .page-template-specials .specials .special .inner h3 {
  color: #fff;
}
.single-ipf_specials .specials .special .inner h5, .page-template-specials .specials .special .inner h5 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
}
.single-ipf_specials .specials .special .inner p, .page-template-specials .specials .special .inner p {
  color: #fff;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 20px;
  margin-top: 25px;
}

.single-specials {
  padding-top: 40px;
}
.single-specials h3 {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  color: #053765;
}
.single-specials__title {
  font-size: 40px;
  line-height: 46px;
  font-family: "Open Sans Condensed", sans-serif;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.single-specials__wrap {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  justify-content: start;
}
.single-specials__border-wrap {
  width: calc(33.333333% - 50px);
  margin: 0 25px 50px 25px;
  padding: 0;
  position: relative;
  padding-bottom: 70px;
}
.single-specials__border-wrap .btn {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 960px) {
  .single-specials__border-wrap .btn {
    position: relative;
  }
}
@media (max-width: 468px) {
  .single-specials__border-wrap .btn {
    text-align: left;
  }
}
@media (max-width: 960px) {
  .single-specials__border-wrap {
    width: 100%;
    padding: 0;
    margin: 0 0 40px 0;
  }
}
.single-specials .nospecials {
  text-align: center;
}
.single-specials .nospecials h2 {
  font: 700 26px/31px "Open Sans", sans-serif;
}

.coupon {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .coupon {
    flex-wrap: wrap;
  }
}
.coupon__offer-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  padding: 20px;
  background-color: #EAF1F5;
}
@media screen and (max-width: 425px) {
  .coupon__offer-wrap {
    width: 100%;
  }
}
.coupon__offer {
  margin: 0;
  font: 600 26px/31px "Open Sans", sans-serif;
  color: #053765;
  text-align: center;
  word-wrap: anywhere;
}
.coupon__offer span {
  font-size: 41px;
}
.coupon__content {
  padding: 0;
  width: 100%;
}
.coupon__content p {
  margin: 0 0 15px;
  font-size: 16px;
}
.coupon__content .expires {
  /* margin-bottom: 1.5em; */
}
.coupon__content .btn a {
  color: #fff;
}
.coupon__image img {
  border-radius: 10px;
  margin-bottom: 1em;
}
.coupon__header {
  margin: 0 0 15px;
}
.coupon__sup {
  /* height: 120px; */
}
@media (max-width: 769px) {
  .coupon__sup {
    height: auto;
  }
}
.coupon__sup h2 {
  margin: 0 0 5px;
  font: 700 19px/24px "Open Sans", sans-serif;
  color: #095AA6;
}
.coupon__sup h2 a {
  color: #095AA6;
}
.coupon__sub {
  font: 700 18px/25px "Open Sans", sans-serif;
  color: #37560A;
}

.signup {
  text-align: center;
}
.signup p {
  margin-bottom: 1.5em;
}
.signup .btn {
  margin-bottom: 1.5em;
}
.signup .btn a {
  color: #fff;
}

.top-border {
  height: 54px;
}

.specials-detail h1 {
  font: 700 36px/44px "Open Sans", sans-serif;
  color: #053765;
}
.specials-detail hr {
  border: 3px solid #053765;
  width: 100%;
  margin: 24px 0 24px 0;
}
.specials-detail h2 {
  font: 400 24px/27px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 1.5em;
}
.specials-detail .appt_form_top {
  text-align: center;
}
.specials-detail .appt_form_top h3 {
  font: 700 26px/34px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 0.5em;
}
.specials-detail .appt_form_top .btn {
  padding: 4px 30px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #095AA6;
  color: #095AA6;
  font: 700 22px/34px "Open Sans", sans-serif;
}
.specials-detail .appt_form_top .btn a {
  color: #095AA6;
}
.specials-detail .appt_form_top p {
  font: 400 15px/22px "Open Sans", sans-serif;
  color: #000;
}
.specials-detail .text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.specials-detail .text__left {
  width: calc(70% - 50px);
  margin-right: 50px;
}
@media (max-width: 960px) {
  .specials-detail .text__left {
    width: 100%;
    margin: 0;
  }
}
.specials-detail .text__right {
  width: 30%;
}
@media (max-width: 960px) {
  .specials-detail .text__right {
    width: 100%;
    margin: 0;
  }
}
.specials-detail .special-data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.specials-detail .special-data .expires {
  width: calc(50% - 50px);
  margin-right: 50px;
}
@media (max-width: 960px) {
  .specials-detail .special-data .expires {
    width: 100%;
    margin: 0;
  }
}
.specials-detail .special-data .coupon_code {
  width: calc(50% - 50px);
  margin-right: 50px;
}
@media (max-width: 960px) {
  .specials-detail .special-data .coupon_code {
    width: 100%;
    margin: 0;
  }
}
.specials-detail .image {
  margin-bottom: 24px;
}
.specials-detail h3 {
  font: 700 22px/40px "Open Sans", sans-serif;
  color: #000;
}
.specials-detail .large {
  font: 400 20px/40px "Open Sans", sans-serif;
  color: #000;
}
.specials-detail .large a {
  font-weight: 700;
}
.specials-detail .form .box {
  box-sizing: border-box;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 60px;
}
.specials-detail .form .box .gform_wrapper {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  border-radius: 0;
  padding: 0;
}

#gform_wrapper_15 .gfield_label {
  color: #053765;
}
#gform_wrapper_15 .gfield_label .gfield_required {
  color: #81C629;
}
#gform_wrapper_15 .gform_footer input[type=submit] {
  background-color: #095AA6;
  border: none;
  position: relative;
  top: 0;
}
#gform_wrapper_15 .gform_footer input[type=submit]:hover, #gform_wrapper_15 .gform_footer input[type=submit]:focus, #gform_wrapper_15 .gform_footer input[type=submit]:active {
  background-color: #010f1c;
  top: 2px;
}

/* ===========================================================
   EMPLOYMENT
=========================================================== */
.employment h2 {
  border: 0;
  text-align: center;
}
.employment h3 {
  margin: 0 0 5px;
  font: 700 24px/30px "Open Sans", sans-serif;
  color: #053765;
}
.employment .block-two-columns__column {
  margin-bottom: 2em;
  text-align: center;
  width: calc(50% - 25px);
}
.employment .block-two-columns__column p {
  margin: 0;
}
.employment .block-two-columns__column .btn {
  margin-top: 20px;
}
@media (max-width: 769px) {
  .employment .block-two-columns__column {
    width: 100%;
  }
}

.intro {
  font: 400 24px/30px "Open Sans", sans-serif;
}

.positions {
  background: rgba(173, 212, 123, 0.5019607843);
  padding: 5px 10px;
  margin: 0 auto 2em auto;
  width: 60%;
}
.positions .fas {
  color: #7FC31C;
}

.offer {
  text-align: center;
}

.benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.benefits__column {
  width: calc(50% - 25px);
  text-align: center;
  font-weight: 700;
}

.header-line {
  margin-top: -5px;
  height: 8px;
}

.sub-service-head {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.sub-service-head__content {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sub-service-head__content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  top: 0;
  left: 0;
}
.sub-service-head__content h1 {
  font-size: 55px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 600px) {
  .sub-service-head__content h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 340px) {
  .sub-service-head__content h1 {
    font-size: 30px;
  }
}
.sub-service-head__content.vid {
  width: 100%;
  position: relative;
  overflow: hidden;
  top: 0;
  z-index: 1;
}
.sub-service-head__content .video-wrapper {
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100%;
  max-height: 825px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  position: absolute;
}
.sub-service-head__content .video {
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub-service-head__content .hidden {
  width: 100%;
  height: 100%;
  max-height: 825px;
  opacity: 0;
  visibility: hidden;
  min-height: 450px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.sub-service-head__img {
  align-self: flex-end;
  margin-top: 47px;
  width: 100%;
  max-width: 49.08%;
  max-height: 454px;
  display: flex;
}
@media (max-width: 769px) {
  .sub-service-head__img {
    max-width: none;
  }
}
.sub-service-head__img img {
  width: 100%;
  height: auto;
}

.sub-service-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .sub-service-content {
    justify-content: center;
  }
}
.sub-service-content__block {
  margin: 0 0 70px;
}
.sub-service-content__block h2 {
  font-size: 22px;
  line-height: 30px;
  color: #37560A;
  margin-bottom: 20px;
}
.sub-service-content__block p:not(:last-child) {
  margin-bottom: 20px;
}
.sub-service-content__flexible {
  flex-grow: 1;
}
.sub-service-content__flexible--with-sidebar {
  max-width: calc(100% - 423px);
}
@media (max-width: 900px) {
  .sub-service-content__flexible--with-sidebar {
    max-width: none;
  }
}
.sub-service-content__sidebar {
  width: 375px;
}
@media (max-width: 900px) {
  .sub-service-content__sidebar {
    top: 60px !important;
    max-width: 375px;
    width: 100%;
    margin-bottom: 60px;
    position: relative !important;
  }
}
.sub-service-content__text h2 {
  font-size: 22px;
  line-height: 30px;
  color: #053765;
  margin-bottom: 9px;
}
.sub-service-content__text p {
  margin-bottom: 25px;
}
.sub-service-content__text strong {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #37560A;
}
.sub-service-content__columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.sub-service-content__columns .column {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .sub-service-content__columns .column {
    width: 100%;
  }
}
.sub-service-content__columns ul {
  padding-left: 18px;
}
.sub-service-content__columns ul li {
  position: relative;
}
.sub-service-content__columns ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -18px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #37560A;
}
.sub-service-content ul {
  padding-left: 18px;
  margin-left: 18px;
}
.sub-service-content ul li {
  position: relative;
  margin-bottom: 10px;
}
.sub-service-content ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -18px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #37560A;
}
.sub-service-content a {
  color: #414143;
  text-decoration: underline;
}
.sub-service-content a:hover, .sub-service-content a:focus, .sub-service-content a:active {
  text-decoration: none;
}

.programs__header {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .programs__header {
    margin-bottom: 15px;
  }
}
.programs__header h2 {
  text-align: center;
  font-size: 35px;
  line-height: 47px;
  color: #053765;
  text-transform: uppercase;
}
.programs__header strong {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #37560A;
}
.programs__plans {
  margin: 0 auto;
  max-width: 774px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .programs__plans {
    justify-content: space-around;
  }
}

.program-plan {
  flex-grow: 1;
  max-width: calc(33.3333333333% - 6px);
  min-height: 382px;
}
@media (max-width: 800px) {
  .program-plan {
    max-width: 254px;
    margin-bottom: 20px;
  }
}
.program-plan__header {
  min-height: 74px;
  text-align: center;
}
.program-plan__header h3 {
  padding: 22px 0;
  font-size: 25px;
  color: #053765;
  text-transform: uppercase;
}
.program-plan:nth-child(1) {
  background-color: rgba(241, 213, 177, 0.45);
}
.program-plan:nth-child(1) .program-plan__header {
  background-color: rgba(225, 162, 83, 0.45);
}
.program-plan:nth-child(2) {
  background-color: rgba(225, 225, 225, 0.45);
}
.program-plan:nth-child(2) .program-plan__header {
  background-color: rgba(202, 202, 202, 0.45);
}
.program-plan:nth-child(3) {
  background-color: rgba(255, 235, 177, 0.45);
}
.program-plan:nth-child(3) .program-plan__header {
  background-color: rgba(255, 211, 82, 0.45);
}
.program-plan__content {
  padding: 25px 40px;
}
.program-plan__content ul {
  font-style: italic;
}
.program-plan__prev {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #053765;
  text-transform: uppercase;
  text-align: center;
}
.program-plan__plus {
  margin: 22px 0 24px;
  font-size: 16px;
  line-height: 1;
}
.program-plan__item:not(:last-child) {
  margin-bottom: 30px;
}
.program-plan--large .program-plan__header {
  min-height: 100px;
}
.program-plan--large .program-plan__header h3 {
  padding: 35px 0;
}
.program-plan--small {
  margin-top: 26px;
}

.plan-item__head {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #4D4D4F;
  margin-bottom: 8px;
}
.plan-item__head .fa-check {
  margin-right: 9px;
  font-size: 15px;
  line-height: 30px;
  color: #053765;
}
.plan-item__content {
  padding-left: 35px;
}

.horizontal-line {
  height: 2px;
  margin: 0 auto;
  display: none;
}

.logos {
  width: 100%;
  margin: 0 auto -32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 650px) {
  .logos {
    justify-content: center;
  }
}
.logos__img {
  max-width: calc(50% - 20px);
  margin: 0 10px 32px;
}
@media (max-width: 991px) {
  .logos__img {
    max-width: calc(50% - 30px);
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .logos__img {
    max-width: 100%;
    text-align: center;
  }
}

.sub-service-sidebar {
  position: relative;
}
.sub-service-sidebar.fixed {
  position: sticky;
  top: 5px !important;
}
.sub-service-sidebar__balloon-text {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
.sub-service-sidebar__balloon-text strong {
  font-size: 18px;
}
.sub-service-sidebar__img {
  position: relative;
  background-color: #EAF1F5;
}
.sub-service-sidebar__img img {
  width: 100%;
}
.sub-service-sidebar__shadow {
  position: absolute;
  top: 10px;
  right: 0;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 10px;
}
.sub-service-sidebar__content {
  position: relative;
  margin: 0 10px 10px 0;
  padding: 30px;
  background-color: #EDEDED;
  border: 1px solid #cccccc;
  border-radius: 10px;
  overflow: hidden;
}
.sub-service-sidebar__content h2 {
  font-size: 22px;
  line-height: 30px;
  color: #053765;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sub-service-sidebar__content p {
  font-size: 16px;
  margin-bottom: 22px;
}
.sub-service-sidebar__content a {
  display: block;
  font-weight: 700;
  text-decoration: none;
}
.sub-service-sidebar__content .fas {
  margin-right: 10px;
  font-size: 14px;
  line-height: 26px;
  color: #053765;
}
.sub-service-sidebar__phone-link {
  margin-bottom: 16px;
}
.sub-service-sidebar__phone-link:hover, .sub-service-sidebar__phone-link:focus, .sub-service-sidebar__phone-link:active {
  text-decoration: underline;
}
.sub-service-sidebar__mail-link {
  margin-bottom: 25px;
}
.sub-service-sidebar__mail-link:hover, .sub-service-sidebar__mail-link:focus, .sub-service-sidebar__mail-link:active {
  text-decoration: underline;
}
.sub-service-sidebar__button {
  margin: 0 auto;
  max-width: 255px;
  padding: 14px 0;
  background-color: #053765;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.sub-service-sidebar__button:focus, .sub-service-sidebar__button:hover, .sub-service-sidebar__button:active {
  background-color: #053765;
}

a.sub-service-sidebar__button {
  color: #fff;
}

.single-ipf_services .header.standart-service .header__logo {
  padding-right: 22px;
}
@media (max-width: 768px) {
  .single-ipf_services .header.standart-service .header__logo {
    padding-right: 0;
  }
}
.single-ipf_services .content-wrap > .container {
  margin: 40px auto;
}
.single-ipf_services .content-wrap > .container .sub-service-head {
  margin-top: 0;
  padding-top: 0;
}
.single-ipf_services .page-wrap .btn {
  background: #095AA6;
  border: 0;
}
.single-ipf_services .page-wrap .banner__head {
  width: 43%;
}
.single-ipf_services .page-wrap .banner__head h2 {
  font: 700 35px/47px "Open Sans", sans-serif;
  margin-bottom: 30px;
}
.single-ipf_services .page-wrap .banner__head p {
  color: #414143;
  margin-bottom: 65px;
}
.single-ipf_services .page-wrap .banner-emergency .btn {
  background-color: #f7501b;
}
.single-ipf_services .page-wrap .banner-emergency .btn:hover, .single-ipf_services .page-wrap .banner-emergency .btn:focus, .single-ipf_services .page-wrap .banner-emergency .btn:active {
  background-color: #794512;
}
.single-ipf_services .page-wrap .banner-emergency .btn i {
  margin-right: 5px;
}

.service-partner {
  width: 100%;
  padding: 50px 0 70px 0;
}
.service-partner__head {
  width: 59%;
  margin: 0 auto;
  text-align: center;
}
.service-partner__head_title {
  font: 700 35px/47px "Open Sans", sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-partner__head_text {
  font: 400 16px/30px "Open Sans", sans-serif;
  margin-bottom: 20px;
}
.service-partner__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.service-partner__logos img {
  max-width: calc(20% - 68px);
  margin: 0 32px;
  max-height: 163px;
  width: auto;
}

.service-name {
  font: 700 30px/35px "Open Sans", sans-serif;
  text-transform: uppercase;
  border-left: 1px solid #B5B5B5;
  padding: 15px 28px;
  align-self: center;
}
@media (max-width: 768px) {
  .service-name {
    display: none;
  }
}

/** Service Blog **/
.service-blog {
  width: 100%;
  padding: 24px 0;
}
.service-blog__content {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-blog__header {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.service-blog__header h2 {
  font: 700 30px/30px "Open Sans", sans-serif;
  color: #053765;
}
.service-blog__item {
  width: 33.333333%;
  padding-left: 40px;
}
.service-blog__item:first-of-type {
  padding-left: 0 !important;
}
.service-blog__item h3 {
  font: 700 19px/30px "Open Sans", sans-serif;
  color: #095AA6;
  min-height: 70px;
}
.service-blog__item h3 a {
  color: #095AA6;
}
.service-blog__item p a {
  display: block;
  color: #095AA6;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.service-blog__item .img-container {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1em;
}
@media screen and (max-width: 798px) {
  .service-blog__item {
    width: 100%;
    padding: 0px;
    margin-bottom: 40px;
  }
  .service-blog__item:last-of-type {
    margin-bottom: 0;
  }
  .service-blog__item h3 {
    min-height: auto;
  }
  .service-blog__item .img-container {
    width: 100%;
    height: 120px;
    margin-bottom: 0.4em;
  }
}

/** Service Reviews **/
.service-reviews {
  width: 100%;
  padding: 44px 0 44px 0;
}
.lawn-reviews {
  background: #EAF6DF;
  border-radius: 10px;
  padding: 40px;
}
.service-reviews__header {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 44px;
}
.service-reviews__header h2 {
  font: 700 30px/30px "Open Sans", sans-serif;
  color: #053765;
}
.service-reviews .glsr .glsr-reviews-wrap {
  display: block;
}
.service-reviews .glsr .glsr-reviews {
  display: flex;
  justify-content: left;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.service-reviews .glsr-review {
  width: 30%;
  padding-left: 2%;
  padding-right: 2%;
  border-left: 1px solid #575756;
  box-sizing: border-box;
  align-items: flex-start;
}

.service-reviews .glsr-review:first-of-type {
  padding-left: 0;
  border: 0;
}
.service-reviews .lglsr-review:last-of-type {
  padding-right: 0;
}
.service-reviews .lawn-reviews .glsr-review {
  width: 50%;
  padding: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border: 0;
  box-sizing: border-box;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
}
@media (max-width: 768px) {
  .service-reviews .lawn-reviews .glsr-review {
    width: 100%;
  }
}
.service-reviews .lawn-reviews .glsr-review:first-of-type {
  padding: 20px;
}
.service-reviews .lawn-reviews .glsr-review:last-of-type {
  padding: 20px;
}
@media screen and (max-width: 798px) {
  .service-reviews .glsr .glsr-reviews {
    flex-wrap: wrap;
  }
  .service-reviews .glsr-review {
    width: 100%;
    border: 0;
    padding: 0;
  }
  .service-reviews .glsr-review:first-of-type {
    padding: 0;
  }
  .service-reviews .lglsr-review:last-of-type {
    padding: 0;
  }
}
.service-reviews .glsr-review-author {
  font-weight: 700;
}
.service-reviews .glsr-review-title h3 {
  font: 700 20px/26px "Open Sans", sans-serif;
  color: #053765;
}

@media (max-width: 991px) {
  .service-reviews__header h2 {
    text-align: center !important;
  }
}
/** Service Emergency **/
.service-emergency {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 0 24px 0;
}
@media (max-width: 991px) {
  .service-emergency .far {
    display: none;
  }
}
.service-emergency__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-emergency .box {
  width: 100%;
  background: #FFFFFF;
  border: 2px solid #F7501B;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 8px 8px 8px 14px;
  color: #F7501B;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  line-height: 46x;
}
.service-emergency .box .fas {
  font-size: 18px;
  margin-right: 5px;
}
.service-emergency .box a {
  color: #F7501B;
}
.service-emergency .btn {
  background: #F7501B !important;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  border: 0;
  margin: 0 0 0 24px;
}
@media (max-width: 991px) {
  .service-emergency .btn {
    margin: 8px 0 0 0;
  }
}
.service-emergency .btn a {
  color: #fff;
}

.service-emergency.inner .btn {
  float: right;
}

.contactbtn {
  width: 90%;
  text-align: center;
  margin: 0 auto 24px auto;
  font-size: 26px;
}
.contactbtn .btn {
  background: #095AA6;
  color: #fff;
  margin-bottom: 18px;
  border: 0;
}
.contactbtn .btn .far {
  margin-right: 12px;
}
.contactbtn .btn a {
  color: #fff;
}
.contactbtn a {
  font-weight: 700;
}

/** Service Plans **/
.service-plans {
  width: 100%;
  padding: 0 0 24px 0;
}
.service-plans__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-plans__content .mobileonly {
  display: none;
}
@media (max-width: 991px) {
  .service-plans__content td.hdr,
.service-plans__content td.hdrleft {
    display: none;
  }
  .service-plans__content td.label-left {
    border-bottom: 1px solid #ccc;
  }
  .service-plans__content td.label-left.grub {
    border-bottom: 1px solid #000;
  }
  .service-plans__content td.bronze,
.service-plans__content td.silver,
.service-plans__content td.gold,
.service-plans__content td.platinum {
    display: none;
  }
  .service-plans__content .mobileonly {
    display: block;
  }
  .service-plans__content h4 {
    color: #095AA6;
    font-size: 18px;
  }
  .service-plans__content .likeh4 {
    color: #053765;
    font-size: 18px;
  }
  .service-plans__content .boxtop {
    margin-bottom: 24px;
  }
  .service-plans__content .planitems {
    display: block;
    margin-top: 5px;
  }
  .service-plans__content .planbox {
    display: inline-block;
    width: 20px;
    height: 14px;
    margin-right: 3px;
  }
  .service-plans__content .planbox.bronzebox {
    background: #D7D49D;
  }
  .service-plans__content .planbox.silverbox {
    background: #D8D8D8;
  }
  .service-plans__content .planbox.goldbox {
    background: #F5E095;
  }
  .service-plans__content .planbox.platinumbox {
    background: #A8AAA6;
  }
  .service-plans__content .plantxt {
    display: inline-block;
  }
  .service-plans__content .plantxt span {
    color: #37560A;
  }
}
.service-plans__header {
  width: 100%;
  text-align: center;
}
.service-plans h2 {
  color: #053765;
  text-align: center;
  margin: 0 0 24px;
  font: 700 30px/44px "Open Sans", sans-serif;
}
.service-plans h3 {
  color: #053765;
  text-align: center;
  margin: 0 0 10px;
  font: 700 26px/30px "Open Sans", sans-serif;
}
.service-plans h4 {
  color: #000;
  text-align: center;
  margin: 0 0 24px;
  font: 400 16px/22px "Open Sans", sans-serif;
}
.service-plans .gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  margin: 0 0 24px 0;
}
.service-plans .gallery img {
  width: 100%;
  height: auto;
}
.service-plans .gallery__img2 {
  width: calc(50% - 15px);
}
.service-plans .gallery__img2.pool {
  text-align: left;
}
.service-plans .gallery__img2.pool li {
  list-style: disc;
  margin-left: 1em;
}
.service-plans .gallery__img3 {
  width: calc(33.333333% - 15px);
}
.service-plans .gallery__img3.pool {
  text-align: left;
}
.service-plans .gallery__img4 {
  width: calc(25% - 15px);
}
.service-plans .gallery h3 {
  color: #053765;
  margin: 0 0 12px;
  padding: 0 0 6px;
  font: 700 22px/47px "Open Sans", sans-serif;
  border-bottom: 1px solid #81C629;
  text-align: left;
}
.service-plans .gallery__img3.pool {
  width: calc(33.333333% - 30px);
}
.service-plans .gallery__img3.pool h3 {
  color: #414143;
  font-weight: 400;
}
.service-plans .gallery .pool-col {
  width: 45%;
  margin-right: 5%;
  float: left;
}
@media (max-width: 991px) {
  .service-plans .gallery__img2 {
    width: 100%;
  }
  .service-plans .gallery__img3 {
    width: 100%;
  }
  .service-plans .gallery__img4 {
    width: 100%;
  }
  .service-plans .gallery__img3.pool {
    width: 100%;
  }
  .service-plans .gallery .pool-col {
    width: 100%;
    float: none;
    margin: 0;
  }
}
.service-plans .pool-customized {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 50px;
  margin: 60px 0;
}
.service-plans .pool-customized a {
  color: #fff;
}
.service-plans .seasons_xtra {
  width: 70%;
  margin: 0 auto 24px auto;
  text-align: center;
}
@media (max-width: 991px) {
  .service-plans .seasons_xtra {
    width: 100%;
  }
}
.service-plans .plans_lawn_one {
  margin: 0 0 44px 0;
}
.service-plans .plans_lawn_one td {
  padding: 10px;
  border: 1px solid #fff;
  line-height: 22px;
}
.service-plans .plans_lawn_one td.check:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
}
.service-plans .plans_lawn_one td.label-left {
  width: 40%;
}
.service-plans .plans_lawn_one .fa-award {
  color: #F1C837;
  margin-right: 6px;
}
.service-plans .plans_lawn_one td.bronze {
  background: #D7D49D;
  color: #6A6733;
  font-weight: 700;
  text-align: center;
}
.service-plans .plans_lawn_one td.bronze.off {
  background: rgba(215, 212, 157, 0.5);
}
.service-plans .plans_lawn_one td.silver {
  background: #D8D8D8;
  color: #535252;
  font-weight: 700;
  text-align: center;
}
.service-plans .plans_lawn_one td.silver.off {
  background: rgba(216, 216, 216, 0.5);
}
.service-plans .plans_lawn_one td.gold {
  background: #F5E095;
  color: #AD8C16;
  font-weight: 700;
  text-align: center;
}
.service-plans .plans_lawn_one td.gold.off {
  background: rgba(245, 224, 149, 0.5);
}
.service-plans .plans_lawn_one td.platinum {
  background: #A8AAA6;
  color: #575756;
  font-weight: 700;
  text-align: center;
}
.service-plans .plans_lawn_one td.platinum.off {
  background: #A8AAA6;
}
.service-plans .plans_lawn_one td.hdr {
  background: #095AA6;
  color: #fff;
}
.service-plans .plans_lawn_one td.bronze.hdr {
  background: #AD8C16;
}
.service-plans .plans_lawn_one td.gold.hdr {
  background: transparent;
}
.service-plans .plans_lawn_one .mobileonly {
  display: none;
}
@media (max-width: 991px) {
  .service-plans .plans_lawn_one td.hdr,
.service-plans .plans_lawn_one td.hdrleft {
    display: none;
  }
  .service-plans .plans_lawn_one td.label-left {
    border-bottom: 1px solid #ccc;
  }
  .service-plans .plans_lawn_one td.label-left.grub {
    border-bottom: 1px solid #000;
  }
  .service-plans .plans_lawn_one td.bronze,
.service-plans .plans_lawn_one td.silver,
.service-plans .plans_lawn_one td.gold,
.service-plans .plans_lawn_one td.platinum {
    display: none;
  }
  .service-plans .plans_lawn_one .mobileonly {
    display: block;
  }
}
.service-plans .plans_lawn_addons {
  margin: 0 0 40px 0;
}
.service-plans .plans_lawn_addons p {
  text-align: center;
  margin-bottom: 2em;
}
.service-plans .plans_lawn_addons .block-two-columns__column {
  width: calc(50% - 50px);
}
@media (max-width: 991px) {
  .service-plans .plans_lawn_addons .block-two-columns__column {
    width: 100%;
    margin-bottom: 24px;
  }
}
.service-plans .plans_lawn_addons .block-two-columns__column p {
  text-align: left;
  margin-bottom: 0;
}
.service-plans .plans_lawn_addons h4 {
  color: #053765;
  border-bottom: 1px solid #81C629;
  text-align: left;
  margin: 0 0 12px;
  padding: 0 0 10px 0;
  font: 700 20px/22px "Open Sans", sans-serif;
}
.service-plans .plans_lawn_addons a {
  font-weight: 700;
}

.heating_oil_plans_header {
  background: #7fbc03;
  color: #fff !important;
  font-weight: bold;
  padding: 6px;
  text-align: center;
  border-bottom: 8px solid #fff;
}
.heating_oil_plans_header h3 {
  color: #fff !important;
  margin-bottom: 0 !important;
}

.heating_oil_plans_header_blank {
  background: #fff;
  border-bottom: 8px solid #fff;
  height: 48px;
}

.heating_oil_plans_box {
  background: #dcebf9;
  color: #053765;
  padding: 24px;
  text-align: left;
}
.heating_oil_plans_box h3 {
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #053765;
}
.heating_oil_plans_box h3 span {
  font-weight: 400;
}
.heating_oil_plans_box p {
  text-align: left !important;
  color: #053765;
  line-height: 1.5em;
}

.heating_oil_plans_box.green {
  background: #d8ebb3;
}

.bgboxblue {
  background: #dcebf9;
}

.bgboxgreen {
  background: #d8ebb3;
}

@media (max-width: 991px) {
  .bgboxgreen {
    margin-top: 40px !important;
  }
}
.heating_oil_plans_learn_more {
  background: #dcebf9;
  color: #053765;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.heating_oil_plans_learn_more h3 {
  margin-bottom: 0 !important;
}

.formore {
  width: 60%;
  margin: 0 auto 20px auto;
  text-align: center;
  padding: 0 40px;
}
.formore li {
  list-style: disc;
}
.formore h4 {
  font-size: 24px;
}
@media (max-width: 991px) {
  .formore {
    width: 100%;
  }
}

.plans_lawn_two {
  margin: 0 0 24px 0;
}
.plans_lawn_two h3 {
  color: #37560A;
}
.plans_lawn_two table td {
  padding: 20px;
  margin: 0;
}
.plans_lawn_two td.left {
  background: #d9eebe;
  color: #37560A;
  font: 400 18px/22px "Open Sans", sans-serif;
  width: 70%;
}
.plans_lawn_two td.left a {
  color: #37560A;
}
.plans_lawn_two td.right {
  background: #37560A;
  color: #fff;
  font: 700 18px/22px "Open Sans", sans-serif;
  width: 30%;
  border-left: 2px solid #fff;
  text-align: center;
}
.plans_lawn_two td.right a {
  color: #fff;
}

@media (max-width: 991px) {
  .plans_lawn_two td.left {
    width: 100%;
    display: block;
  }
  .plans_lawn_two td.right {
    width: 100%;
    border-left: 0;
    border-top: 2px solid #fff;
    display: block;
  }
}
.plumbing-plans .box {
  background: #DCEBF9;
  margin: 0;
  padding: 20px 50px 30px 50px;
  border: 1px solid #095AA6;
  border-radius: 10px;
}
.plumbing-plans .box :after {
  content: "";
  display: table;
  clear: both;
}

.box-two-columns {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-two-columns .btn {
  background: #095AA6;
  color: #fff;
  margin-bottom: 1em;
}
.box-two-columns .btn a {
  color: #fff;
}

.box-two-columns .box-left {
  box-sizing: border-box;
  width: 50%;
  padding: 0 30px 0 0;
  border-right: 1px solid #828282;
  color: #414143;
}
.box-two-columns .box-left h3 {
  color: #095AA6;
  font: 400 26px/30px "Open Sans", sans-serif;
  text-align: left;
}
.box-two-columns .box-left p {
  margin-bottom: 1em;
}

.box-two-columns .box-right {
  box-sizing: border-box;
  width: 50%;
  padding: 0 0 0 30px;
  color: #414143;
}
.box-two-columns .box-right .btn {
  background: #fff;
  margin-bottom: 1em;
  padding: 12px 18px;
  color: #414143;
}
.box-two-columns .box-right .btn a {
  color: #414143;
}
.box-two-columns .box-right .btn.hvac {
  text-align: left;
  font: 400 16px/20px "Open Sans", sans-serif;
}
.box-two-columns .box-right .btn.hvac ul {
  margin-bottom: 0;
}
.box-two-columns .box-right .note {
  color: #828282;
}

@media (max-width: 991px) {
  .box-two-columns .box-left {
    width: 100%;
    padding: 0;
    border: 0;
    margin-bottom: 40px;
  }
  .box-two-columns .box-right {
    width: 100%;
    padding: 0;
    border: 0;
  }
}
.box-two-columns .box-right.hvac li {
  list-style: disc outside;
  margin-left: 1.5em;
  padding-left: 0.5em;
}

/**** Service Banner *****/
.service__banner {
  height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.service__banner_text {
  display: flex;
  width: 50%;
  right: 0;
  position: absolute;
  height: inherit;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 9;
}
.service__banner_text_title {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4862745098);
  text-transform: uppercase;
  font: 700 60px/82px "Open Sans", sans-serif;
  margin-bottom: 11px;
}
.service__banner_text_subtitle {
  font: 400 46px/62px "Open Sans", sans-serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4862745098);
  text-transform: uppercase;
  margin-bottom: 21px;
}
.service__banner_text_description {
  font: 500 24px/40px "Open Sans", sans-serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4862745098);
  margin-bottom: 32px;
}
.service__banner_text div {
  width: 660px;
}
.service__banner.vid {
  width: 100%;
  position: relative;
  overflow: hidden;
  top: 0;
  z-index: 1;
}
.service__banner .video-wrapper {
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100%;
  max-height: 825px;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 1280px) and (max-height: 681px) {
  .service__banner .video-wrapper {
    top: -4px;
  }
}
@media (max-width: 1024px) and (max-height: 640px) {
  .service__banner .video-wrapper {
    top: 0;
  }
}
.service__banner .video-wrapper video, .service__banner .video-wrapper iframe {
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  width: 100vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 960px) {
  .service__banner .video-wrapper video, .service__banner .video-wrapper iframe {
    height: auto;
  }
}
.service__banner .video-img {
  position: relative;
  z-index: -2;
  min-height: 450px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.service__banner .hidden {
  width: 100%;
  height: 100%;
  max-height: 825px;
  opacity: 0;
  visibility: hidden;
  min-height: 450px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.threequarterdiv {
  width: 75%;
  margin: 0 0 24px 0;
  text-align: left;
}

@media (max-width: 991px) {
  .threequarterdiv {
    width: 100%;
  }
}
/** Service About **/
.service-about {
  width: 100%;
  padding: 0 0 24px 0;
}
.service-about .coupon-tankless {
  font-size: 18px;
  width: 100%;
  max-width: 850px;
  margin: 90px auto 40px auto;
  min-height: 170px;
  text-align: left;
  background-image: linear-gradient(#bacbe3, #e5ebf4);
  border-radius: 10px;
  border: 2px dashed #053765;
}
.service-about .coupon-tankless p {
  text-align: left;
}
@media screen and (max-width: 798px) {
  .service-about .coupon-tankless p {
    text-align: center;
  }
}
.service-about .coupon-tankless .coupon-tankless-img {
  margin-top: -50px;
  width: 40%;
  float: left;
  margin-left: 5%;
}
@media screen and (max-width: 798px) {
  .service-about .coupon-tankless .coupon-tankless-img {
    width: 100%;
    margin: -50px 0 0 20px;
    text-align: center;
  }
  .service-about .coupon-tankless .coupon-tankless-img img {
    display: inline-block;
  }
}
.service-about .coupon-tankless .coupon-tankless-content {
  padding: 16px 30px 16px 0;
}
@media screen and (max-width: 798px) {
  .service-about .coupon-tankless .coupon-tankless-content {
    padding: 30px 30px 0 30px;
    text-align: center;
  }
}
.service-about .coupon-tankless .coupon-tankless-header {
  color: #095AA6;
  font-weight: bold;
}
.service-about .coupon-tankless .coupon-tankless-header span {
  font-size: 30px;
  vertical-align: top;
  line-height: 55px;
}
.service-about .coupon-tankless .coupon-tankless-header span.couponprice {
  vertical-align: top;
  font-size: 90px;
  line-height: 90px;
}
.service-about .coupon-tankless .coupon-tankless-header span.dollar {
  font-size: 26px;
  vertical-align: top;
  line-height: 51px;
}
.service-about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-about__content .leadimg {
  width: 100%;
}
.service-about__content .leadimg img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.service-about__topleft {
  width: 70%;
  font-size: 22px;
  color: #37560A;
  margin-bottom: 20px;
}
.service-about__topright {
  width: 30%;
  text-align: right;
  margin-bottom: 20px;
}
.service-about__left, .service-about__right {
  width: 50%;
}
.service-about__left {
  padding-right: 40px;
}
.service-about__right {
  margin: 0 0 40px;
}
.service-about__center {
  margin: 0 0 40px;
  width: 100%;
}
.service-about__center .imgwpr {
  width: 350px;
  margin: 0 auto;
}
.service-about__center img {
  margin: 0 auto;
}
.service-about__center p {
  text-align: center;
}
@media (max-width: 991px) {
  .service-about__center {
    margin: 0;
  }
}
.service-about__text {
  width: 100%;
}
.service-about h3 {
  text-align: center;
  color: #053765;
  margin-bottom: 1em;
  font-size: 20px;
}
.service-about h3.lawn {
  color: #37560A;
}
.service-about .pool h3 {
  text-align: left;
}
.service-about .poolspromo {
  width: 100%;
  padding: 50px 0;
  background: url(/wp-content/uploads/2021/07/propane-pool-promo.jpg) no-repeat top center/cover;
  text-align: center;
}
.service-about .poolspromo a {
  color: #095AA6;
  font: 700 20px/30px "Open Sans", sans-serif;
}
@media (max-width: 991px) {
  .service-about .block-two-columns__column {
    width: 100%;
  }
}
.service-about .gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 0 24px 0;
}
.service-about .gallery img {
  width: 100%;
  height: auto;
}
.service-about .gallery .fuel_column_header {
  width: 100%;
}
.service-about .gallery .fuel_column_header h3 {
  width: 40%;
  margin: 0 auto 24px auto;
}
@media (max-width: 991px) {
  .service-about .gallery .fuel_column_header h3 {
    width: 100%;
  }
}
.service-about .gallery .fuel_column_header .fuel_inner_left {
  width: 48%;
  margin-right: 2%;
  margin-bottom: 24px;
  float: left;
}
.service-about .gallery .fuel_column_header .fuel_inner_right {
  width: 48%;
  float: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .service-about .gallery .fuel_column_header .fuel_inner_left {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .service-about .gallery .fuel_column_header .fuel_inner_right {
    width: 100%;
    float: none;
  }
}
.service-about .gallery .lawn_column {
  text-align: left;
}
.service-about .gallery .fuel_column {
  width: calc(33.3333333% - 15px);
}
.service-about .gallery .gallery_column {
  width: calc(25% - 15px);
}
@media (max-width: 991px) {
  .service-about .gallery .gallery_column {
    width: 100%;
    margin: 0 auto;
  }
  .service-about .gallery .fuel_column {
    width: 100%;
    margin: 0 auto;
  }
}
.service-about .gallery__img2 {
  width: calc(50% - 15px);
}
.service-about .gallery__img2.pool {
  text-align: left;
}
.service-about .gallery__img2.pool p {
  text-align: left;
}
.service-about .gallery__img2.left {
  width: calc(50% - 30px);
  text-align: left;
}
.service-about .gallery__img2.left p {
  text-align: left;
}
.service-about .gallery__img2.left h3 {
  text-align: left;
}
.service-about .gallery__img2.listleft {
  width: 50%;
  padding-left: 10%;
  text-align: left;
}
.service-about .gallery__img2.listleft p {
  text-align: left;
}
.service-about .gallery__img2.listright {
  width: 50%;
  padding-right: 10%;
  text-align: left;
}
.service-about .gallery__img2.listright p {
  text-align: left;
}
.service-about .gallery__img2.heating {
  text-align: left;
}
.service-about .gallery__img2.heating p {
  text-align: left;
}
.service-about .gallery__img3 {
  width: calc(33.333333% - 15px);
}
.service-about .gallery__img3.left {
  width: calc(33.333333% - 30px);
  text-align: left;
}
.service-about .gallery__img3.left p {
  text-align: left;
}
.service-about .gallery__img3.left h3 {
  text-align: left;
}
.service-about .gallery__img3.pool {
  width: calc(33.333333% - 30px);
  text-align: left;
}
.service-about .gallery__img3.pool p {
  text-align: left;
}
.service-about .gallery__img3.heating_payment {
  width: calc(33.333333% - 30px);
  text-align: left;
  color: #000;
}
.service-about .gallery__img3.heating_payment p {
  text-align: left;
}
.service-about .gallery__img3.heating_payment h3 {
  color: #000;
  text-align: left;
  margin-bottom: 1em;
  font: 700 26px/30px "Open Sans", sans-serif;
}
.service-about .gallery__img4 {
  width: calc(25% - 15px);
}
.service-about .gallery__img4.left {
  width: calc(25% - 30px);
  text-align: left;
}
.service-about .gallery__img4.left p {
  text-align: left;
}
.service-about .gallery__img4.left h3 {
  text-align: left;
}
.service-about .gallery__wide {
  width: 70%;
  margin: 0 auto;
}
.service-about .gallery__wide img {
  margin: 0 40px 50px 0;
}
@media (max-width: 991px) {
  .service-about .gallery__img2, .service-about .gallery__img2.left, .service-about .gallery__img2.pool, .service-about .gallery__img2.heating {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-about .gallery__img2.listleft, .service-about .gallery__img2.listright {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  .service-about .gallery__img2.listleft ul, .service-about .gallery__img2.listright ul {
    margin-bottom: 0;
  }
  .service-about .gallery__img3, .service-about .gallery__img3.left, .service-about .gallery__img3.pool, .service-about .gallery__img3.heating_payment {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-about .gallery__img4, .service-about .gallery__img4.left {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-about .gallery__img4:last-of-type {
    margin-bottom: 0;
  }
  .service-about .gallery__wide {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-about .gallery__wide img {
    margin: 0 0 24px 0;
  }
}
.service-about .gallery .tankwpr {
  width: 70%;
  margin: 0 auto;
}
.service-about .gallery .tankwpr :after {
  content: "";
  display: table;
  clear: both;
}
.service-about .gallery .tankwpr .tank_left {
  width: 30%;
  float: left;
  text-align: left;
}
.service-about .gallery .tankwpr .tank_left img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.service-about .gallery .tankwpr .tank_right {
  width: 65%;
  float: right;
  text-align: left;
}
.service-about .gallery .tankwpr .tank_right p {
  text-align: left;
}
.service-about .gallery .tankwpr .tank_right .btn {
  color: #fff;
  margin-bottom: 1.5em;
}
.service-about .gallery .tankwpr .tank_right .btn a {
  color: #fff;
}
@media (max-width: 991px) {
  .service-about .gallery .tankwpr {
    width: 100%;
    margin: 0 auto;
  }
  .service-about .gallery .tankwpr .tank_left {
    width: 100%;
    float: none;
    text-align: center;
  }
  .service-about .gallery .tankwpr .tank_left img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .service-about .gallery .tankwpr .tank_right {
    width: 100%;
    float: none;
  }
}
.service-about .gallery h4 {
  color: #053765;
  margin: 0 0 12px;
  padding: 0 0 6px;
  font: 700 20px/32px "Open Sans", sans-serif;
  border-bottom: 1px solid #81C629;
}
.service-about .gallery .fly-left {
  width: 35%;
  margin-right: 5%;
  float: left;
}
.service-about .gallery .fly-right {
  width: 60%;
  float: left;
}
@media (max-width: 991px) {
  .service-about .gallery .fly-left {
    width: 100%;
    float: none;
    margin: 0;
  }
  .service-about .gallery .fly-right {
    width: 100%;
    float: none;
  }
}
.service-about h5 {
  color: #000;
  margin: 0;
  padding: 0;
  font: 700 16px/24px "Open Sans", sans-serif;
  border: 0;
}
.service-about .commercialbox {
  padding: 30px 30px 20px 30px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: #d9eebe;
}
.service-about .commercialbox h3 {
  color: #37560A;
  margin: 0 0 12px;
  padding: 0;
  text-align: left;
  font: 700 20px/32px "Open Sans", sans-serif;
  border: 0;
}
.service-about .commercialbox h4 {
  color: #37560A;
  margin: 0 0 12px;
  padding: 0 0 6px;
  font: 700 18px/32px "Open Sans", sans-serif;
  border-bottom: 1px solid #81C629;
}
.service-about .commercialbox h5 {
  color: #37560A;
  margin: 0;
  padding: 0;
  font: 700 16px/24px "Open Sans", sans-serif;
  border: 0;
}
.service-about .commercialbox .innerbox {
  padding: 30px 30px 20px 30px;
  border-radius: 10px;
  background: #fff;
}
.service-about .box.emergencybox {
  padding: 30px 30px 20px 30px;
  border: 1px solid #F7501B;
  border-radius: 10px;
  background: #fff;
  color: #414143;
  text-transform: none;
  font-weight: 400;
}
.service-about .box.emergencybox .wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-about .box.emergencybox .alert {
  /*
  width: 20%;
  font-size: 50px;
  color: #F7501B;
  */
  display: none;
}
.service-about .box.emergencybox .content {
  width: 80%;
  text-align: left;
}
.service-about .box.emergencybox p {
  text-align: left;
  text-transform: none;
  font-weight: 400;
}
.service-about .box.emergencybox h3 {
  font: 700 26px/30px "Open Sans", sans-serif;
  color: #F7501B;
  text-align: left;
  margin-bottom: 0;
  text-transform: none;
}
.service-about .box.emergencybox h3 a {
  color: #F7501B;
}
.service-about .box.emergencybox h4 {
  font: 700 18px/30px "Open Sans", sans-serif;
  color: #F7501B;
  text-align: left;
  text-transform: none;
}
.service-about .box.emergencybox .btn {
  background: #F7501B;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.service-about .box.emergencybox .btn a {
  color: #fff;
}
.service-about .box.emergencybox .btn.phone {
  background: #fff;
  color: #F7501B;
  border: 1px solid #F7501B;
}
.service-about .box.emergencybox .btn.phone a {
  color: #F7501B;
}
@media (max-width: 991px) {
  .service-about .box.emergencybox {
    margin-bottom: 24px;
  }
  .service-about .box.emergencybox .alert {
    display: none;
  }
  .service-about .box.emergencybox .content {
    width: 100%;
  }
}
.service-about .box.special {
  padding: 30px 30px 20px 30px;
  border: 1px solid #095AA6;
  border-radius: 10px;
  background: #e3effa;
  color: #095AA6;
  text-align: left;
}
.service-about .box.special h3 {
  font: 700 26px/30px "Open Sans", sans-serif;
  color: #095AA6;
  border-bottom: 1px solid #095AA6;
  padding: 0 0 8px 0;
  margin: 0 0 0.5em 0;
  text-align: left;
}
.service-about .box.special .terms {
  color: #095AA6;
  font-size: 12px;
}
.service-about .box.special .terms ul li {
  color: #095AA6;
  font-size: 12px;
  margin-bottom: 0;
}
.service-about .box.special p {
  text-align: left;
}
.service-about .box.special .btn {
  background: #095AA6;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.service-about .box.special .btn .fas {
  margin-right: 10px;
}
.service-about .box.special .btn a {
  color: #fff;
}
@media (max-width: 768px) {
  .service-about .box.special .btn .fas {
    display: none;
  }
}
.service-about .box.special .btn.phone {
  background: #e3effa;
  color: #095AA6;
  border: 1px solid #095AA6;
}
.service-about .box.special .btn.phone a {
  color: #095AA6;
}
.service-about .plumberbox {
  padding: 30px 30px 0 500px;
  border-radius: 10px;
  background: #e3effa;
  text-align: left;
  position: relative;
  margin: 130px 0 0 0;
}
.service-about .plumberbox img {
  position: absolute;
  bottom: 0;
  left: 100px;
}
.service-about .plumberbox p {
  text-align: left;
}
.service-about .plumberbox .plumber-inner {
  padding: 0 0 30px 0;
}
.service-about .plumberbox h3 {
  font: 700 26px/30px "Open Sans", sans-serif;
  color: #095AA6;
  margin: 0 0 0.5em 0;
  text-align: left;
}
@media (max-width: 991px) {
  .service-about .plumberbox {
    padding: 30px 30px 330px 30px;
    margin: 0 0 24px 0;
  }
  .service-about .plumberbox img {
    position: absolute;
    bottom: 0;
    left: 30px;
  }
}
.service-about .gallery.commercial {
  text-align: left;
}
.service-about .gallery.commercial p {
  text-align: left;
}
.service-about .gallery.commercial :after {
  content: "";
  display: table;
  clear: both;
}
.service-about .gallery.left-align {
  text-align: left;
}
.service-about .seasons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 0 24px 0;
}
.service-about .seasons__column {
  width: calc(33.333333% - 25px);
  text-align: left;
}
@media (max-width: 991px) {
  .service-about .seasons__column {
    width: 100%;
  }
}
.service-about .seasons h3 {
  color: #053765;
  margin: 0;
  padding: 0;
  font: 700 26px/32px "Open Sans", sans-serif;
  text-align: left;
}
.service-about .seasons h4 {
  color: #414143;
  margin: 0 0 8px 0;
  padding: 0 0 2px 0;
  font: 400 20px/32px "Open Sans", sans-serif;
  border-bottom: 1px solid #81C629;
}
.service-about .seasons p {
  text-align: left;
}
.service-about .seasons_xtra {
  width: 70%;
  margin: 0 auto 24px auto;
  text-align: center;
}
@media (max-width: 991px) {
  .service-about .seasons_xtra {
    width: 100%;
    text-align: left;
  }
  .service-about .seasons_xtra h3 {
    text-align: left;
  }
  .service-about .seasons_xtra p {
    text-align: left;
  }
}
.service-about .free-estimates {
  background: #d9eebe;
  margin: 40px auto 60px auto;
  padding: 15px 25px 15px 190px;
  position: relative;
  max-width: 700px;
}
.service-about .free-estimates h3 {
  color: #095AA6;
  text-align: left;
  margin-bottom: 0;
}
.service-about .free-estimates p {
  text-align: left;
  margin-bottom: 0;
}
.service-about .free-estimates .seal {
  width: 166px;
  height: 166px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -25px;
}
.service-about .free-estimates .seal img {
  display: inline-block;
}
.service-about .free-estimates .seal a {
  display: block;
  width: 166px;
  height: 166px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .service-about .free-estimates {
    margin-top: 80px;
    padding: 15px 25px 15px 25px;
  }
  .service-about .free-estimates h3 {
    text-align: center;
  }
  .service-about .free-estimates p {
    text-align: center;
  }
  .service-about .free-estimates .seal {
    position: relative;
    margin: -70px auto 0 auto;
  }
}
.service-about .flea-week {
  background: #e6f0a9;
  margin: 40px auto 60px auto;
  padding: 15px 25px 15px 190px;
  position: relative;
  max-width: 700px;
}
.service-about .flea-week h3 {
  color: #095AA6;
  text-align: left;
  margin-bottom: 0;
}
.service-about .flea-week p {
  text-align: left;
  margin-bottom: 0;
}
.service-about .flea-week .seal {
  width: 166px;
  height: 166px;
  position: absolute;
  left: 0;
  top: -25px;
}
@media (max-width: 991px) {
  .service-about .flea-week {
    margin-top: 80px;
    padding: 15px 25px 15px 25px;
  }
  .service-about .flea-week h3 {
    text-align: center;
  }
  .service-about .flea-week p {
    text-align: center;
  }
  .service-about .flea-week .seal {
    position: relative;
    margin: -70px auto 0 auto;
  }
}
.service-about .center-block {
  width: 70%;
  margin: 0 auto 40px auto;
  text-align: center;
}
@media (max-width: 991px) {
  .service-about .center-block {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.service-about .tree .gallery__img2 {
  background: #d9eebe;
  text-align: left;
}
.service-about .tree .gallery__img2 p {
  text-align: left;
}
.service-about .tree .gallery__img2 .box {
  padding: 0 30px 16px 30px;
}
.service-about .tree .gallery__img2 .box h4 {
  color: #37560A;
  text-align: left;
  border: 0;
}
.service-about .tree .gallery__img2 .learnmore {
  color: #37560A;
  border-top: 1px solid #7FC31C;
  padding: 8px 0 0 0;
  margin: 24px 0 0 0;
  font-weight: bold;
  display: block;
}
.service-about table.tree-shrub td {
  padding: 8px;
  color: #37560A;
}
.service-about table.tree-shrub .coleft {
  width: 30%;
  border-bottom: 1px solid #7FC31C;
  border-right: 1px solid #7FC31C;
}
.service-about table.tree-shrub .colright {
  width: 70%;
  border-bottom: 1px solid #7FC31C;
  padding: 8px 12px;
}
.service-about table.tree-shrub .coleft.last {
  border-bottom: 0;
}
.service-about table.tree-shrub .colright.last {
  border: 0;
}
.service-about .specialized {
  text-align: left;
}
.service-about .specialized p {
  text-align: left;
}
.service-about .specialized h3 {
  color: #053765;
  margin: 0 0 8px 0;
  padding: 0 0 2px 0;
  font: 700 19px/28px "Open Sans", sans-serif;
  border-bottom: 1px solid #81C629;
  text-align: left;
}
.service-about .center-block.specialized p {
  text-align: center;
}
.service-about .center-block.specialized h3 {
  text-align: center;
}
.service-about .laternfly {
  background: #d9eebe;
  margin: 100px auto 60px auto;
  padding: 15px 25px 15px 350px;
  position: relative;
}
.service-about .laternfly a {
  color: #37560A;
  font-weight: 700;
}
.service-about .laternfly p {
  text-align: left;
  margin-bottom: 0;
}
.service-about .laternfly .seal {
  width: 250px;
  height: 142px;
  position: absolute;
  left: 50px;
  top: -50px;
}
@media (max-width: 991px) {
  .service-about .laternfly {
    margin-top: 80px;
    padding: 15px 25px 15px 25px;
  }
  .service-about .laternfly h3 {
    text-align: center;
  }
  .service-about .laternfly p {
    text-align: center;
  }
  .service-about .laternfly .seal {
    position: relative;
    margin: -70px auto 0 auto;
    left: 0;
    top: 0;
  }
}
.service-about__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 0 0;
  flex-basis: 100%;
}
.service-about__bottom .block1 {
  width: calc(66.667% - 20px);
  background-color: #095aa6;
  border: 2px solid #053765;
  padding: 20px;
  color: #fff;
}
@media (max-width: 991px) {
  .service-about__bottom .block1 {
    width: 100%;
    margin-bottom: 60px;
  }
}
.service-about__bottom .block1__content {
  display: inline-flex;
  flex-wrap: wrap;
}
.service-about__bottom .block1__left, .service-about__bottom .block1__right {
  width: 50%;
}
@media (max-width: 768px) {
  .service-about__bottom .block1__left, .service-about__bottom .block1__right {
    width: 100%;
  }
}
.service-about__bottom .block1 h3 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
}
.service-about__bottom .block1 hr {
  width: 100%;
  height: 2px;
  background-color: #053765;
  color: transparent;
  margin: 20px 0px;
}
.service-about__bottom .block1 p {
  color: #fff;
  line-height: 26px;
  text-align: center;
}
@media (min-width: 768px) {
  .service-about__bottom .block1 p:last-child {
    margin: 0;
  }
}
.service-about__bottom .block1 iframe {
  max-width: 100%;
}
.service-about__bottom .block2 {
  width: calc(33.333% - 20px);
  background-color: #81C629;
  border: 2px solid #37560A;
  padding: 20px;
  color: #fff;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .service-about__bottom .block2 {
    width: 100%;
  }
}
.service-about__bottom .block2__content {
  padding: 20px 0;
}
.service-about__bottom .block2::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 40px;
  top: -44px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: #81C629;
  border-radius: 50%;
  border-top-left-radius: 160px;
  border-top-right-radius: 160px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border: 2px solid #37560A;
  border-bottom: 2px solid #81C629;
}
.service-about__bottom .block2 .icon {
  position: absolute;
  top: -33px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 15px;
  border: 2px solid #37560A;
  background-color: #fff;
}
.service-about__bottom .block2 .icon img {
  width: 20px;
  height: auto;
}
.service-about__bottom .block2 hr {
  width: 100%;
  height: 2px;
  background-color: #37560A;
  color: transparent;
  margin: 20px 0px;
}
.service-about__bottom .block2 h3 {
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 40px;
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
}
.service-about__bottom .block2 p {
  color: #fff;
  line-height: 26px;
  text-align: center;
}
.service-about__bottom .block2 a.btn {
  margin: 0 auto;
  background-color: #f7501b;
  border-color: #794512;
}
.service-about__bottom .block2 a.btn:hover, .service-about__bottom .block2 a.btn:focus, .service-about__bottom .block2 a.btn:active {
  background-color: #794512;
}
.service-about h2 {
  color: #053765;
  text-align: center;
  margin: 0 0 24px;
  font: 700 30px/44px "Open Sans", sans-serif;
}
.service-about h2.lawn {
  color: #3A5728;
}
.service-about p {
  margin-bottom: 1em;
}
.service-about ul {
  list-style-type: disc;
  margin-left: 1em;
}
.service-about__img-wrap {
  position: relative;
  width: calc(100% - 10px);
}
.service-about__img {
  position: relative;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .service__banner_text div {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .service__banner_text {
    padding-left: 30px;
  }
  .service__banner_text div {
    max-width: 450px;
  }
  .ipf_services-template-default .service-contact__left, .ipf_services-template-default .service-contact__right {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .service__banner div {
    width: 100%;
    padding: 10px;
  }
  .service__banner_text {
    padding-left: 0;
  }
  .single-ipf_services .page-wrap .banner__head {
    width: 90%;
  }
  .service-partner__head {
    width: 90%;
  }
  .service-partner__logos {
    text-align: center;
    padding: 10px;
  }
  .service-partner img {
    max-width: 100%;
    margin: 20px 10px;
  }
  .service-contact {
    padding: 48px 10px 73px 10px;
  }
  .service-about__content {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .service-about {
    padding: 10px 0;
  }
  .service-about__left {
    width: 100%;
    padding: 0;
  }
  .service-about__right {
    width: 100%;
  }
  .service-about__bottom {
    order: 3;
  }
  .service__banner_text_title {
    font: 700 48px/62px "Open Sans", sans-serif;
  }
  .service__banner_text_subtitle {
    font: 400 36px/48px "Open Sans", sans-serif;
  }
  .service__banner_text_description {
    font: 500 18px/30px "Open Sans", sans-serif;
  }
}
.service-contact {
  width: 100%;
  padding: 48px 0 73px 0;
  background-color: #EDEDED;
}
.service-contact .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.service-contact__left, .service-contact__right {
  width: 50%;
}
.service-contact__left {
  padding-right: 40px;
}
.service-contact__left_title {
  font: 700 35px/47px "Open Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.service-contact__left .gform_wrapper {
  margin-top: 0;
}
.service-contact__left .gform_wrapper form ul li.gfield {
  margin-top: 12px;
}
.service-contact__left .gform_wrapper form ul li.gfield label {
  font: 700 14px/19px "Open Sans", sans-serif;
}
.service-contact__left .gform_wrapper form ul li.gfield input, .service-contact__left .gform_wrapper form ul li.gfield select, .service-contact__left .gform_wrapper form ul li.gfield textarea {
  border: 1px solid #095AA6;
  border-radius: 5px;
  font: 400 16px/30px "Open Sans", sans-serif;
}
.service-contact__left .gform_wrapper form ul li.gfield select {
  padding: 8px 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  background-image: url("../images/down-chevron.png");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  background-size: 14px;
}
.service-contact__left .gform_wrapper form ul li.gfield textarea {
  height: 142px;
}
.service-contact__left .gform_wrapper form ul li.gfield input[type=submit] {
  background: #095AA6;
  font: 700 18px/24px "Open Sans", sans-serif;
  color: #fff;
  margin: 30px 0 0 130px;
}
.service-contact__left .gform_wrapper .gform_footer {
  width: auto;
}
@media (min-width: 641px) {
  .service-contact__left .gform_wrapper .gform_footer {
    float: right;
    margin: -82px 20px 0 0;
  }
}
.service-contact__left .gform_wrapper .gform_footer .gform_button {
  padding: 14px 40px;
  background: #414143;
  border: 1px solid #053765;
  margin: 0;
}
.service-contact__left .gform_wrapper .gform_footer .gform_button:hover, .service-contact__left .gform_wrapper .gform_footer .gform_button:focus, .service-contact__left .gform_wrapper .gform_footer .gform_button:active {
  background-color: #000;
}
.service-contact__right {
  background-color: #E2E2E2;
  border: 1px solid #cccccc;
  border-radius: 10px 10px 0 0;
}
.service-contact__right_banner {
  height: 328px;
  border-radius: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-contact__right .service-contact__wrap {
  padding: 33px 40px 42px;
}
.service-contact__right .service-contact__wrap h4 {
  text-transform: uppercase;
  font: 700 22px/30px "Open Sans", sans-serif;
  margin-bottom: 16px;
}
.service-contact__right .service-contact__wrap p {
  margin-bottom: 15px;
}
.service-contact__right .service-contact__wrap a {
  display: block;
  margin-bottom: 15px;
  color: #414143;
}
.service-contact__right .service-contact__wrap a:hover, .service-contact__right .service-contact__wrap a:focus, .service-contact__right .service-contact__wrap a:active {
  text-decoration: underline;
}
.service-contact__right .service-contact__wrap i {
  margin-right: 10px;
}

/** Service Pest **/
.service-pest.pest-faq {
  margin-top: 60px;
}

.service-pest {
  width: 100%;
}


.service-pest .hr {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  border-bottom: 1px solid #000;
}
.service-pest h3 {
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
.service-pest h3.ul {
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
  display: block;
  width: 100%;
}
.service-pest ul {
  margin: 0 0 20px 0;
}
.service-pest li {
  list-style: disc;
  margin-left: 1em;
}
.service-pest p {
  margin-bottom: 1.5em;
}
.service-pest .service-pest-wpr.pest-landing .one-third-column {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr.pest-landing .one-third-column {
    margin: 0 0 24px 0;
  }
}
.service-pest .service-pest-wpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-pest .service-pest-wpr .center {
  text-align: center;
}
.service-pest .service-pest-wpr .lg {
  font-size: 24px;
  font-weight: 600;
}
.service-pest .service-pest-wpr .boxestimator {
  width: 100%;
  background: #DAEEC8;
  border: 0;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}
.service-pest .service-pest-wpr .boxestimator .btnwpr {
  margin: 20px 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #095BA5;
}
.service-pest .service-pest-wpr .boxestimator .btnwpr .btn {
  display: block;
}
.service-pest .service-pest-wpr .boxestimator .btnwpr .btn a {
  color: #fff;
}
.service-pest .service-pest-wpr .boxestimator .btnwpr a {
  color: #095BA5;
  font-weight: bold;
  font-size: 20px;
}
.service-pest .service-pest-wpr .boxestimator.complete {
  background: #DEEBF9;
}
.service-pest .service-pest-wpr .boxestimator.platinum {
  background: #E7E7E7;
}
.service-pest .service-pest-wpr .boxestimator.platinumplus {
  background: #E7E7E7;
}
.service-pest .service-pest-wpr .pricingbox {
  width: 100%;
  background: #fff;
  border: 0;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px;
}
.service-pest .service-pest-wpr .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
}
.service-pest .service-pest-wpr .row h4 {
  margin: 0 0 5px;
  font: 700 16px/24px "Open Sans", sans-serif;
  color: #000;
}
.service-pest .service-pest-wpr .row h4.planshdr1 {
  margin-top: 24px;
  font-weight: 400;
}
.service-pest .service-pest-wpr .row h4.planshdr1 span {
  font-weight: 700;
}
.service-pest .service-pest-wpr .row h3 {
  margin: 0 0 24px;
  font: 700 24px/30px "Open Sans", sans-serif;
  color: #000;
  text-align: left;
}
.service-pest .service-pest-wpr .row h3.targeted {
  font-weight: 400;
  text-align: left;
  color: #083E72;
}
.service-pest .service-pest-wpr .row h3.targeted span {
  font-weight: 700;
}
.service-pest .service-pest-wpr .row h3.lawntargeted {
  font-weight: 400;
  text-align: left;
  color: #37560A;
}
.service-pest .service-pest-wpr .row h3.lawntargeted span {
  font-weight: 700;
}
.service-pest .service-pest-wpr .row h5.planshdr2 {
  margin: 0 0 5px;
  font: 400 16px/24px "Open Sans", sans-serif;
  color: #000;
}
.service-pest .service-pest-wpr .row h5.planshdr2 span {
  font-weight: 700;
}
.service-pest .service-pest-wpr .row .box {
  background: #DEEBF9;
  padding: 20px;
  height: 100%;
}
.service-pest .service-pest-wpr .row .box .btn a {
  padding: 12px 60px;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .row.plansmobile {
    flex-direction: column-reverse;
  }
}
.service-pest .service-pest-wpr .full-column {
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.pest-promo h3 {
  font-size: 24px;
  font-weight: bold;
  color: #80BC00;
  margin-bottom: 0.5em;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box {
  background: rgba(128, 195, 66, 0.1);
  margin-bottom: 12px;
  padding: 20px;
  color: #3A5728;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: auto;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box .box-left {
  width: 66%;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .full-column.pest-promo .box .box-left {
    width: 100%;
  }
}
.service-pest .service-pest-wpr .full-column.pest-promo .box .box-right {
  width: 34%;
  text-align: right;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .full-column.pest-promo .box .box-right {
    width: 100%;
  }
}
.service-pest .service-pest-wpr .full-column.pest-promo .box span {
  color: #3A5728;
  font-size: 44px;
  font-weight: 600;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box p {
  color: #3A5728;
  font-size: 24px;
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box p.sm {
  font-size: 14px;
  color: #000;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box .btn {
  background: #80BC00;
  color: #fff;
  margin-top: 12px;
}
.service-pest .service-pest-wpr .full-column.pest-promo .box .btn a {
  color: #fff;
}
.service-pest .service-pest-wpr .full-column.center h3 {
  text-align: center;
  color: #083E72;
  font-size: 30px;
  font-weight: 400;
}
.service-pest .service-pest-wpr .full-column.center h3 span {
  font-weight: 800;
}
.service-pest .service-pest-wpr .full-column.center.stdhdr h3 {
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: 800;
}
.service-pest .service-pest-wpr .full-column.center.reverse h3 {
  color: #fff;
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .full-column.exterior {
  position: relative;
  height: 144px;
}
.service-pest .service-pest-wpr .full-column.exterior .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-exterior-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.exterior .plansinside {
  background: #80c342;
  padding: 24px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.complete {
  position: relative;
  height: 144px;
}
.service-pest .service-pest-wpr .full-column.complete .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-complete-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.complete .plansinside {
  background: #095BA5;
  padding: 24px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.platinum {
  position: relative;
  height: 144px;
}
.service-pest .service-pest-wpr .full-column.platinum .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-platinum-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.platinum .plansinside {
  background: #939598;
  padding: 24px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.platinumplus {
  position: relative;
  height: 144px;
}
.service-pest .service-pest-wpr .full-column.platinumplus .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-platinumplus-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}

.service-pest.service-lawn .service-pest-wpr .row h3 {
  color: #37560A;
}
.lawntotal {
  text-align: center;
}
.lawntotal h3 {
  text-align: center;
  font-weight: 700;
  color: #37560A;
}
.lawntotal .container {
  width: 60%;
}

.lawntotalbtm {
  color: #3A5728;
  font-size: 24px;
  text-align: center;
}

.lawntotalbtm p {
  color: #3A5728;
  font-size: 24px;
  text-align: center;
}

h3.lawn-blog {
  color: #3A5728;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 5px solid #81C629;
  text-align: center;
  width: 100%;
}
.service-pest .service-pest-wpr .full-column.platinumplus .plansinside {
  background: #757679;
  padding: 24px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
}
.service-pest .service-pest-wpr .ten-column {
  width: 10%;
  text-align: center;
}
@media (max-width: 768px) {
  .service-pest .service-pest-wpr .ten-column {
    width: 50%;
  }
}
.service-pest .service-pest-wpr .half-column {
  width: calc(50% - 30px);
  margin: 0 0 15px 0;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .half-column {
    width: 100%;
  }
}
.service-pest .service-pest-wpr .half-column h4 {
  font-size: 18px;
  color: #000;
}
.service-pest .service-pest-wpr .half-column h4 a {
  color: #000;
}
.service-pest .service-pest-wpr .half-column .equalheight {
  min-height: 130px;
}
.service-pest .service-pest-wpr .half-column .learnmore {
  margin: 20px 0 30px 0;
  padding: 12px 0 0 0;
  border-top: 1px solid #000;
  text-align: center;
}
.service-pest .service-pest-wpr .half-column .learnmore a {
  color: #095BA5;
  font-size: 17px;
  font-weight: 600;
}
.service-pest .service-pest-wpr .two-third-column {
  width: calc(66.666666% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .two-third-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .one-third-column {
  width: calc(33.333333% - 30px);
  margin: 0 0 15px 0;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .one-third-column {
    width: 100%;
  }
}
.service-pest .service-pest-wpr .one-third-column.offset {
  width: calc(33.333333% - 30px);
  margin-left: 15%;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .one-third-column.offset {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .one-quarter-column {
  width: calc(25% - 30px);
  margin: 0 0 15px 0;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .one-quarter-column {
    width: 100%;
  }
}
.service-pest .service-pest-wpr .forty-column.centered {
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-pest .service-pest-wpr .forty-column.centered p {
  text-align: left;
}
.service-pest .service-pest-wpr .forty-column.centered img {
  float: left;
  margin-right: 20px;
}
.service-pest .service-pest-wpr .forty-column.centered .innerimg {
  width: 161px;
}
.service-pest .service-pest-wpr .forty-column.centered .innertxt {
  padding-top: 30px;
  width: calc(100% - 161px);
}
.service-pest .service-pest-wpr .forty-column.centered .innertxt h3 {
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .sixty-column {
  width: calc(60% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .sixty-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .sixty-column.centered {
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-pest .service-pest-wpr .sixty-column.centered p {
  text-align: left;
}
.service-pest .service-pest-wpr .sixty-column.centered img {
  float: left;
  margin-right: 20px;
}
.service-pest .service-pest-wpr .sixty-column.centered .innerimg {
  width: 161px;
}
.service-pest .service-pest-wpr .sixty-column.centered .innertxt {
  padding-top: 30px;
  width: calc(100% - 161px);
}
.service-pest .service-pest-wpr .sixty-column.centered .innertxt h3 {
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .eighty-column {
  width: calc(80% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .eighty-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .eighty-column.centered {
  margin: 0 auto 15px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-pest .service-pest-wpr .eighty-column.centered p {
  text-align: left;
}
.service-pest .service-pest-wpr .eighty-column.centered img {
  float: left;
  margin-right: 20px;
}
.service-pest .service-pest-wpr .eighty-column.wasps .box {
  background: rgba(241, 200, 55, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-pest .service-pest-wpr .eighty-column.wasps .box .innerimg {
  width: 160px;
}
.service-pest .service-pest-wpr .eighty-column.wasps .box .innerimg img {
  width: 132px;
  height: auto;
}
.service-pest .service-pest-wpr .eighty-column.wasps .box .innertxt {
  padding-top: 0;
  width: calc(100% - 160px);
}
.service-pest .service-pest-wpr .eighty-column.wasps .box .innertxt h3 {
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .eighty-column.wasps .box .innertxt p {
  line-height: 1.5em;
  margin-bottom: 0;
}
.service-pest .service-pest-wpr .forty-column {
  width: calc(40% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .forty-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .forty-column.offset {
  width: calc(40% - 30px);
  margin-left: 10%;
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .forty-column.offset {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .seventy-column {
  width: calc(70% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .seventy-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .thirty-column {
  width: calc(30% - 30px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .thirty-column {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.service-pest .service-pest-wpr .thirty-column.right {
  text-align: right;
}
.service-pest .service-pest-wpr .callout {
  font-size: 24px;
  font-weight: 600;
}
.service-pest .service-pest-wpr .pullquote p {
  color: #000;
  font-size: 16px;
  font-style: italic;
  line-height: 1.4em;
}
.service-pest .service-pest-wpr .buttonwpr {
  color: #095BA5;
  font-size: 16px;
  font-style: normal;
  text-align: center;
}
.service-pest .service-pest-wpr .buttonwpr p {
  color: #095BA5;
  font-size: 20px;
  font-style: normal;
  text-align: center;
}
.service-pest .service-pest-wpr .buttonwpr .btn {
  margin-bottom: 0.5em;
}
.service-pest .service-pest-wpr .pest_banner {
  width: 100%;
  color: #fff;
  text-align: left;
}
.service-pest .service-pest-wpr .pest_banner p {
  color: #fff;
  margin-bottom: 0.5em;
}
.service-pest .service-pest-wpr .pest_banner li {
  color: #fff;
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content {
  margin-bottom: 20px;
  color: #fff;
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_inner {
  height: 498px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_inner p {
  margin-bottom: 0;
}
@media only screen and (max-width: 760px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_inner {
    background: none !important;
    height: auto;
  }
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_inner .mobileonly {
  display: none;
}
@media only screen and (max-width: 760px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_inner .mobileonly {
    display: block;
    width: 100%;
    height: auto;
  }
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr {
  width: 50%;
  height: 100%;
  margin: 0 0 0 50%;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  display: block;
}
@media only screen and (max-width: 760px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr {
    width: 100%;
    background: #053765;
    padding: 36px 0;
  }
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr {
    width: 100%;
    margin: 0;
  }
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
  margin: 0 80px 0 80px;
  right: 0;
  width: calc(100% - 120px);
}
@media (max-width: 991px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert {
    margin: 0 auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (max-width: 760px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert {
    position: relative;
    top: 0;
    -ms-transform: none;
    transform: none;
  }
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert .inside {
  width: 100%;
  max-width: calc(50vw - (100vw - 1300px) / 2 - 160px);
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
}
@media only screen and (max-width: 1350px) {
  .service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert .inside {
    width: 80%;
  }
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert .inside p {
  color: #fff;
  font-size: 20px;
}
.service-pest .service-pest-wpr .pest_banner .pest_banner_content_wpr .centeredvert .inside a {
  color: #fff;
}
.service-pest .service-pest-wpr .pest_banner h2 {
  font-size: 36px;
  line-height: 1.1em;
  margin-bottom: 0.6em;
  color: #fff;
}
.service-pest .service-pest-wpr .pest_banner h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1em;
  color: #fff;
}

.page-template-rewards .content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.page-template-rewards .main {
  width: 65%;
  margin-right: 5%;
}
@media (max-width: 1100px) {
  .page-template-rewards .main {
    width: 100%;
    margin-right: 0px;
  }
}
.page-template-rewards .main h1 {
  text-transform: none;
}
.page-template-rewards .sidebar {
  width: 29%;
  background-color: #7eb948;
  border: 2px solid #649538;
  position: relative;
  margin-top: 80px;
  margin-bottom: 10px;
}
@media (max-width: 1100px) {
  .page-template-rewards .sidebar {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-template-rewards .sidebar::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 40px;
  top: -40px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
  background-color: #7eb948;
  border-radius: 50%;
  border-top-left-radius: 160px;
  border-top-right-radius: 160px;
  border: 2px solid #649538;
  border-bottom: 0;
}
.page-template-rewards .sidebar img.icon {
  position: absolute;
  top: -25px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-rewards .sidebar .content {
  padding: 40px 20px 20px;
}
.page-template-rewards .sidebar .content h3 {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
  text-align: center;
}
.page-template-rewards .sidebar .content h3 span {
  color: #0259a5;
}
.page-template-rewards .sidebar .content p {
  padding-bottom: 0px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.page-template-rewards .sidebar .content a.button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 20px 5px;
  color: #fff;
  background-color: #f7501b;
  position: relative;
  top: 0;
  box-shadow: 0 3px 0 #bf3307;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  max-width: 210px;
  margin-top: 20px;
}
@media (max-width: 990px) {
  .page-template-rewards .sidebar .content a.button {
    display: block;
    margin: 15px auto 15px;
    max-width: 200px;
  }
}
@media (max-width: 680px) {
  .page-template-rewards .sidebar .content a.button {
    max-width: 100%;
  }
}
.page-template-rewards .sidebar .content a.button:hover, .page-template-rewards .sidebar .content a.button:focus, .page-template-rewards .sidebar .content a.button:active {
  background-color: #bf3307;
  box-shadow: 0 2px 0 #5c1903;
  top: 2px;
}

.calculator form {
  width: 70%;
}

@media (max-width: 991px) {
  .calculator form {
    width: 100%;
  }
}
.calculator h1 {
  font-size: 30px;
  color: #095AA6;
}

.calculator h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 0;
}

.calculator #field_59_1 {
  background: #ececec;
  padding: 12px;
  margin-bottom: 24px;
}

.calculator #field_59_6 {
  background: #ececec;
  padding: 12px;
  margin-bottom: 24px;
}

.calculator #field_59_9,
.calculator #field_59_10,
.calculator #field_59_11,
.calculator #field_59_12 {
  background: #ececec;
  padding: 12px;
  margin-bottom: 8px;
}
.calculator #field_59_9 label,
.calculator #field_59_10 label,
.calculator #field_59_11 label,
.calculator #field_59_12 label {
  float: left;
  margin-bottom: 0;
  margin-top: 4px;
}
.calculator #field_59_9 .ginput_container,
.calculator #field_59_10 .ginput_container,
.calculator #field_59_11 .ginput_container,
.calculator #field_59_12 .ginput_container {
  float: right;
}
.calculator #field_59_9 .ginput_container_select,
.calculator #field_59_10 .ginput_container_select,
.calculator #field_59_11 .ginput_container_select,
.calculator #field_59_12 .ginput_container_select {
  min-width: 227px;
}

.calculator #field_59_13 h2 {
  text-align: right;
}

.calculator #field_59_14,
.calculator #field_59_15,
.calculator #field_59_16,
.calculator #field_59_17,
.calculator #field_59_20,
.calculator #field_59_19 {
  background: #fff;
  padding: 0;
  margin-bottom: 2px;
  text-align: right;
}
.calculator #field_59_14 label,
.calculator #field_59_15 label,
.calculator #field_59_16 label,
.calculator #field_59_17 label,
.calculator #field_59_20 label,
.calculator #field_59_19 label {
  margin-bottom: 0;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 400;
  padding: 0 0 4px 0;
  display: inline-block;
}
.calculator #field_59_14 .ginput_container,
.calculator #field_59_15 .ginput_container,
.calculator #field_59_16 .ginput_container,
.calculator #field_59_17 .ginput_container,
.calculator #field_59_20 .ginput_container,
.calculator #field_59_19 .ginput_container {
  display: inline-block;
}
.calculator #field_59_14 .ginput_container input,
.calculator #field_59_15 .ginput_container input,
.calculator #field_59_16 .ginput_container input,
.calculator #field_59_17 .ginput_container input,
.calculator #field_59_20 .ginput_container input,
.calculator #field_59_19 .ginput_container input {
  font-size: 18px;
  padding: 8px 0 8px 8px !important;
  border: 0 !important;
  width: 100px;
  text-align: right;
}

.calculator #field_59_15 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}

.calculator #field_59_19 {
  margin-top: 10px;
  margin-bottom: 24px;
}
.calculator #field_59_19 label {
  font-size: 24px;
  font-weight: bold;
  padding-top: 4px;
}
.calculator #field_59_19 .ginput_container input {
  font-size: 24px;
  font-weight: 600;
  width: 120px;
}

@media (max-width: 768px) {
  h1 {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  h1 {
    text-align: center !important;
  }
  .calculator #field_59_1 {
    margin-bottom: 8px;
  }
  .calculator #field_59_9,
.calculator #field_59_10,
.calculator #field_59_11,
.calculator #field_59_12 {
    text-align: left;
  }
  .calculator #field_59_9 label,
.calculator #field_59_10 label,
.calculator #field_59_11 label,
.calculator #field_59_12 label {
    float: none;
    width: 100%;
  }
  .calculator #field_59_9 .ginput_container,
.calculator #field_59_10 .ginput_container,
.calculator #field_59_11 .ginput_container,
.calculator #field_59_12 .ginput_container {
    float: none;
  }
  .calculator #field_59_9 .ginput_container input,
.calculator #field_59_10 .ginput_container input,
.calculator #field_59_11 .ginput_container input,
.calculator #field_59_12 .ginput_container input {
    width: 100%;
  }
  .calculator #field_59_9 .ginput_container select,
.calculator #field_59_10 .ginput_container select,
.calculator #field_59_11 .ginput_container select,
.calculator #field_59_12 .ginput_container select {
    width: 100%;
  }
}
/*
** Most popular posts masonry grid
*/
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.5rem;
  grid-auto-rows: minmax(100px, auto);
  margin: 40px 0;
}
.grid .blocks {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column-reverse;
  padding: 15px 35px;
  font: 700 16px/22px "Open Sans", sans-serif;
  color: #fff;
}
.grid .blocks h4 {
  font: 700 16px/22px "Open Sans", sans-serif;
}
.grid .blocks::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4862745098) 36%, rgba(0, 0, 0, 0.8784313725) 100%);
}
.grid .blocks:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
  height: 438px;
  padding: 15px 30px;
  font: 700 22px/30px "Open Sans", sans-serif;
  color: #fff;
}
.grid .blocks:first-child h4 {
  font: 700 22px/30px "Open Sans", sans-serif;
}
.grid .blocks .post-time {
  position: relative;
  font: 600 16px/30px "Open Sans", sans-serif;
}
.grid .blocks a {
  color: #fff;
}
.grid .blocks a:hover {
  text-decoration: underline;
}
.grid .blocks h4 {
  position: relative;
}
.grid .blocks .post-category {
  position: relative;
  display: flex;
  width: max-content;
  font: 700 12px/17px "Open Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 6px;
}
.grid .blocks .post-category a {
  font: 700 12px/17px "Open Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 6px;
}
.grid .blocks:hover, .grid .blocks:focus, .grid .blocks:active {
  opacity: 0.7;
}

.filtered-posts {
  display: flex;
  flex-wrap: wrap;
}
.filtered-posts .filter {
  margin: 15px 0 -15px;
}
.filtered-posts .filter fieldset {
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.filtered-posts .filter fieldset input {
  width: 0;
  opacity: 0;
  position: absolute;
}
.filtered-posts .filter fieldset input:hover {
  cursor: pointer;
}
.filtered-posts .filter fieldset input:checked + label:after {
  color: #414143 !important;
}
.filtered-posts .filter fieldset input:checked + label {
  background-color: transparent !important;
  border: 1px solid #053765;
  color: #414143;
}
.filtered-posts .filter fieldset label {
  flex-shrink: 0;
  font: 700 16px/22px "Open Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 15px;
  border: 1px solid transparent;
}
.filtered-posts .filter fieldset label:hover {
  cursor: pointer;
  text-decoration: underline;
}
.filtered-posts .filter fieldset span {
  margin: 0 15px 15px;
  font-weight: 900;
}
.filtered-posts .filter button {
  display: none;
}
.filtered-posts .filter-result {
  width: 100%;
  margin-top: 20px;
  margin-right: 54px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.filtered-posts .filter-result .filtered-posts_item {
  margin: 32px 30px 32px 0;
  float: left;
  width: calc(33.333333% - 30px);
}
.filtered-posts .filter-result .filtered-posts_item .image {
  margin-bottom: 16px;
  height: 170px;
  overflow: hidden;
  border-radius: 10px;
}
.filtered-posts .filter-result .filtered-posts_item .image img {
  width: 100%;
  height: auto;
  display: block;
}
.filtered-posts .filter-result .filtered-posts_item__description {
  width: 100%;
}
.filtered-posts .filter-result .filtered-posts_item__description a {
  font: 700 16px/30px "Open Sans", sans-serif;
  display: block;
}
.filtered-posts .filter-result .filtered-posts_item__description__title a {
  font: 700 21px/28px "Open Sans", sans-serif;
  color: #095AA6;
}
.filtered-posts .filter-result .filtered-posts_item__description__category {
  display: block;
  width: 100%;
  padding: 0px 5px 10px 0;
}
.filtered-posts .filter-result .filtered-posts_item__description__category a {
  font: 700 18px/17px "Open Sans", sans-serif;
  color: #095AA6;
}
.filtered-posts .filter-result .filtered-posts_item__description__category a:hover, .filtered-posts .filter-result .filtered-posts_item__description__category a:focus, .filtered-posts .filter-result .filtered-posts_item__description__category a:active {
  text-decoration: none;
}
.filtered-posts .filter-result .filtered-posts_item__description hr {
  height: 7px;
  width: 100%;
  margin-bottom: 12px;
}
.filtered-posts .filter-result .filtered-posts_item__description__date {
  font: 400 12px/30px "Open Sans", sans-serif;
}
.filtered-posts .filter-result .filtered-posts_item__description p {
  margin-bottom: 0;
}
.filtered-posts .filter-result .loadmorewpr {
  margin: 40px auto;
  width: 100%;
  text-align: center;
}

.recent-posts {
  width: 30%;
  margin-top: 32px;
  background: #EAF1F5;
  height: 100%;
  padding: 15px 30px;
  margin-bottom: 40px;
  display: grid;
}
.recent-posts h3 {
  font: 700 16px/22px "Open Sans", sans-serif;
  color: #095aa6;
  text-transform: uppercase;
}
.recent-posts .filtered-posts_item {
  clear: both;
  margin-top: 20px;
}
.recent-posts .filtered-posts_item__image {
  height: 113px;
  width: 113px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  float: left;
  margin-right: 15px;
}
.recent-posts .filtered-posts_item__image:hover, .recent-posts .filtered-posts_item__image:focus, .recent-posts .filtered-posts_item__image:active {
  opacity: 0.7;
}
.recent-posts .filtered-posts_item__description {
  display: flex;
  flex-direction: column;
}
.recent-posts .filtered-posts_item__description__title a {
  font: 700 18px/1.3333 "Open Sans", sans-serif;
  color: #414143;
}
.recent-posts .filtered-posts_item__description__title a:hover, .recent-posts .filtered-posts_item__description__title a:focus, .recent-posts .filtered-posts_item__description__title a:active {
  text-decoration: underline;
}
.recent-posts .filtered-posts_item__description__details__category {
  width: fit-content;
  width: -moz-fit-content;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-right: 15px;
  margin-top: 5px;
}
.recent-posts .filtered-posts_item__description__details__category a {
  font: 700 10px/14px "Open Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.recent-posts .filtered-posts_item__description__details__category a:hover, .recent-posts .filtered-posts_item__description__details__category a:focus, .recent-posts .filtered-posts_item__description__details__category a:active {
  text-decoration: none;
  opacity: 0.7;
}
.recent-posts .filtered-posts_item__description__details__date {
  font: 600 10px/30px "Open Sans", sans-serif;
  color: #414143;
}
.recent-posts .filtered-posts_item__description p {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .filtered-posts .filter-result {
    width: 65%;
    margin-top: 20px;
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid .blocks {
    padding: 10px;
  }
  .grid .blocks:first-child {
    padding: 15px;
  }
  .filtered-posts .filter-result .filtered-posts_item {
    margin: 0 0 24px 0;
    float: none;
    width: 100%;
  }
  .filter span {
    display: none;
  }
  .filtered-posts .filter fieldset label {
    font-size: 10px;
  }
}
@media screen and (max-width: 991px) and (max-width: 700px) {
  .filtered-posts .filter fieldset {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .filtered-posts .filter-result {
    width: 100%;
    margin-right: 0;
  }
  .filtered-posts .filter-result .filtered-posts_item {
    height: unset;
    display: flex;
    flex-direction: row;
  }
  .filtered-posts .filter-result .filtered-posts_item__image {
    width: 60%;
  }
  .filtered-posts .filter-result .filtered-posts_item__description {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .recent-posts {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .filtered-posts .filter-result .filtered-posts_item {
    flex-direction: column;
  }
  .filtered-posts .filter-result .filtered-posts_item__image {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 22px;
  }
  .grid .blocks:first-child {
    height: 300px;
  }
}
.archive-location {
  padding-top: 20px;
}
.archive-location__header {
  font-size: 40px;
  line-height: 46px;
  font-family: "Open Sans Condensed", sans-serif;
  text-transform: none;
  margin-bottom: 15px;
}
.archive-location__locations {
  margin: 0 0 35px 30px;
  list-style: disc outside;
}
.archive-location__location-name {
  font-size: 18px;
  line-height: 34px;
  color: #d9eebe;
  margin-bottom: 5px;
}
.archive-location__location-name:before {
  content: none;
}
.archive-location__location-name a {
  color: #053765;
  transition: color 0.5s ease;
}
.archive-location__location-name a:hover {
  color: #d9eebe;
  text-decoration: none;
}

.footer-banner {
  position: relative;
  z-index: 1000000;
  padding: 30px 0;
  background-color: #053765;
  margin-bottom: -60px;
  /*
  @media (max-width: 1023px) {
    margin-bottom: -116px;
  }

  @media (max-width: 992px) {
    min-height: 348px;
    margin-bottom: -353px;
  }
  */
}
.footer-banner__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1053px) {
  .footer-banner__wrap {
    justify-content: center;
  }
}
.footer-banner__content {
  width: calc(80% - 5px);
}
@media (max-width: 1053px) {
  .footer-banner__content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-banner__header {
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  font-family: "Open Sans Condensed", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.57);
  text-transform: uppercase;
}
.footer-banner__header p {
  font-size: 28px;
  line-height: 34px;
  font-family: "Open Sans Condensed", sans-serif;
  color: #fff;
}
.footer-banner__header strong {
  color: #f2a85f;
}
.footer-banner__attributes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  list-style: none;
}
.footer-banner__attribute-item {
  width: calc(50% - 5px);
  font-weight: 700;
  font-size: 16px;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 992px) {
  .footer-banner__attribute-item {
    width: 100%;
  }
}
.footer-banner__attribute-item:before {
  content: none;
}
.footer-banner__attribute-item .fas {
  margin-right: 3px;
  font-size: 19px;
  color: #f2a85f;
}
.footer-banner__button {
  width: calc(20% - 50px);
}
@media (max-width: 1053px) {
  .footer-banner__button {
    width: 100%;
  }
}
.footer-banner__button a {
  display: block;
  max-width: 210px;
  position: relative;
  top: 0;
  box-shadow: 0 3px 0 #bf3307;
  border-radius: 5px;
  padding: 18px 10px;
  background-color: #f7501b;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.15s linear 0s;
}
@media (max-width: 1053px) {
  .footer-banner__button a {
    margin: 0 auto;
  }
}
.footer-banner__button a:hover {
  background-color: #bf3307;
  box-shadow: 0 2px 0 #5c1903;
  top: 2px;
}

.single-location {
  padding-top: 20px;
  margin-bottom: 60px;
}
.single-location h2 {
  margin: 0 0 15px;
  font: 400 32px/40px "Open Sans", sans-serif;
  color: #053765;
}
.single-location h2.lawn {
  color: #37560A;
}
.single-location h2.center {
  text-align: center;
}
.single-location .single-location__header h3 {
  text-align: center;
  color: #053765;
  margin-bottom: 24px;
  font: 400 22px/28px "Open Sans", sans-serif;
}
.single-location .single-location__header h3.lawnh3 {
  color: #37560A;
}
.single-location h3.lawnh3 {
  color: #37560A;
}
.single-location h3.center {
  text-align: center;
}
.single-location .mobileOnly {
  display: none;
}
.single-location .desktopOnly {
  display: block;
}
.single-location .herocopylocation {
  color: #083E72;
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.single-location .herocopylocation a {
  font-weight: bold;
}
.single-location .btnwpr .bodypromo {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 18px;
}
.single-location .btnwpr .btn {
  display: block;
  width: 100%;
  min-width: 100% !important;
  max-width: 100%;
}
.single-location .btnwpr .btn {
  border-radius: 8px;
  background: #095AA6;
  border: 0;
  color: #fff;
  font: 700 16px/24px "Open Sans", sans-serif;
  margin-bottom: 8px;
}
.single-location .btnwpr .btn a {
  color: #fff;
}
.single-location .btnwpr .btn.orange {
  background-color: #f7501b;
  border: 0;
  color: #095AA6;
}
.single-location .btnwpr .btn.orange a {
  color: #fff;
}
@media (max-width: 991px) {
  .single-location .mobileOnly {
    display: block;
  }
  .single-location .desktopOnly {
    display: none;
  }
}
.single-location__header {
  margin-bottom: 24px;
}
.single-location__header h1 {
  font: 700 36px/44px "Open Sans", sans-serif;
  color: #053765;
  margin-bottom: 8px;
}
.single-location__header h2 {
  font: 400 20px/28px "Open Sans", sans-serif;
  color: #414143;
}
.single-location__header hr {
  width: 100%;
  background: #053765;
  height: 7px;
}
.single-location__header img {
  margin-bottom: 0;
  width: 100%;
}
.single-location__columnwpr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single-location__left {
  width: calc(60% - 24px);
  margin-right: 24px;
}
.single-location__left .center {
  text-align: center;
}
@media (max-width: 991px) {
  .single-location__left {
    width: 100%;
    margin: 0;
  }
}
.single-location__left h3 {
  font: 700 21px/28px "Open Sans", sans-serif;
  color: #414143;
}
.single-location__left ul {
  list-style-type: disc;
  margin-left: 1em;
}
.single-location__left a {
  font-weight: bold;
}
.single-location__left .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%;
  flex-direction: row;
}
.single-location__left .blog h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
  color: #000;
}
.single-location__left .half-column {
  width: calc(50% - 30px);
  margin: 0 0 15px 0;
}
@media (max-width: 991px) {
  .single-location__left .half-column {
    width: 100%;
  }
}
.single-location__left .half-column h4 {
  font: 700 20px/24px "Open Sans", sans-serif;
  color: #095BA5;
}
.single-location__left .full-column.exterior {
  position: relative;
  height: 144px;
}
.single-location__left .planscontent {
  padding: 20px;
  background: #E6E0E4;
  margin-top: 2px;
}
.single-location__left .plansmore {
  display: block;
  padding: 12px 0;
  margin-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
}
.single-location__left .full-column.exterior .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-exterior-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.single-location__left .full-column.exterior .plansinside {
  background: #80c342;
  padding: 18px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
}
.single-location__left .full-column.exterior .plansinside h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-location__left .exterior .planscontent {
  padding: 20px;
  background: #D8EDB4;
}
.single-location__left .full-column.complete {
  position: relative;
  height: 144px;
}
.single-location__left .full-column.complete .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-complete-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.single-location__left .full-column.complete .plansinside {
  background: #095BA5;
  padding: 18px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
}
.single-location__left .full-column.complete .plansinside h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-location__left .complete .planscontent {
  padding: 20px;
  background: #DEEBF8;
}
.single-location__left .full-column.platinum {
  position: relative;
  height: 144px;
}
.single-location__left .full-column.platinum .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-platinum-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.single-location__left .full-column.platinum .plansinside {
  background: #939598;
  padding: 18px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
}
.single-location__left .full-column.platinum .plansinside h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-location__left .full-column.platinumplus {
  position: relative;
  height: 144px;
}
.single-location__left .full-column.platinumplus .plansbannerimage {
  background: url("/wp-content/uploads/2023/02/residential-plans-platinumplus-badge.png") no-repeat top center;
  height: 95px;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
}
.single-location__left .full-column.platinumplus .plansinside {
  background: #757679;
  padding: 18px 0;
  position: absolute;
  top: 80px;
  z-index: 1;
  width: 100%;
  text-align: center;
  color: #fff;
}
.single-location__left .full-column.platinumplus .plansinside h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-location__left .reviews_wrapper {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #095AA6;
  margin-top: 24px;
  margin-bottom: 24px;
}
.single-location__left .reviews_wrapper .star {
  background-image: url(/wp-content/plugins/site-reviews/assets/images/stars/default/star-full.svg) !important;
  display: inline-block;
  margin: 0 3px 0 0;
  background-size: 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
}
.single-location__left .embed_google {
  margin-top: 36px;
  max-width: 100%;
}
.single-location__left .embed_google iframe {
  max-width: 100%;
}
.single-location__right {
  width: calc(40% - 24px);
  margin-left: 24px;
}
@media (max-width: 991px) {
  .single-location__right {
    width: 100%;
    margin: 0;
  }
}
.single-location__right .gform_wrapper {
  padding: 30px;
  border-radius: 10px;
  background: #DCEBF9;
  border: 1px solid #095AA6;
}
.single-location__right .gform_wrapper input[type=submit] {
  padding: 10px 30px;
  width: 100% !important;
}
.single-location__right .gform_wrapper h3 {
  font-weight: 700;
  text-align: center;
}
.single-location__right .gform_wrapper p {
  text-align: center;
}
.single-location__right .gform_wrapper p a {
  font-weight: 700;
}
.single-location__right.locationsnew .gform_wrapper {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.single-location__right.locationsnew .right_column_form_wrapper {
  background: #DCEBF9;
  border: 1px solid #095AA6;
  border-radius: 10px;
  padding: 24px;
}
.single-location__right.locationsnew .right_column_form_wrapper .appt_form_top {
  text-align: center;
}
.single-location__right.locationsnew .right_column_form_wrapper h3 {
  text-align: center;
  margin-bottom: 0.5em;
}
.single-location .gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 0 24px 0;
}
.single-location .gallery img {
  width: 100%;
  height: auto;
}
.single-location .gallery .heating_oil_plans_box h3 {
  color: #083E72;
  text-align: center;
}
.single-location .gallery .heating_oil_plans_box.hvac h3 {
  font-size: 16px;
  text-align: left;
  border: 0;
  padding: 0;
  margin: 0;
}
.single-location .gallery .pool_box {
  padding: 20px 40px 0 40px;
  text-align: left;
}
.single-location .gallery .pool_box h3 {
  color: #083E72;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
.single-location .gallery .pool_box h4 {
  color: #083E72;
  font-size: 20px;
  font-weight: 400 !important;
  text-align: center;
  border-bottom: 1px solid #053765;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.single-location .gallery .bgboxbronze {
  background: #D5D69F;
}
.single-location .gallery .bgboxsilver {
  background: #D8D8D8;
}
.single-location .gallery .bgboxgold {
  background: #F1E298;
}
.single-location .gallery .lawn_box {
  padding: 20px 40px 0 40px;
  text-align: left;
}
.single-location .gallery .lawn_box h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #000000;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.single-location .gallery .lawn_box a {
  color: #000;
}
.single-location .gallery .tree_box {
  padding: 20px 40px 0 40px;
  text-align: left;
}
.single-location .gallery .tree_box h3 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}
.single-location .gallery .tree_box h3 span {
  font-weight: 700;
}
.single-location .gallery .bgboxtree {
  background: #d8ebb3;
  width: 100%;
}
.single-location .gallery .heating_oil_plans_box .plansmore {
  padding: 12px 0 0 0;
}
.single-location .gallery .heating_oil_plans_box .txtbox {
  min-height: 130px;
}
.single-location .gallery .fuel_column_header {
  width: 100%;
}
.single-location .gallery .fuel_column_header h3 {
  margin: 0 auto 24px auto;
  color: #083E72;
  text-align: center;
}
@media (max-width: 991px) {
  .single-location .gallery .fuel_column_header h3 {
    width: 100%;
  }
}
.single-location .gallery .fuel_column_header .fuel_inner_left {
  width: 48%;
  margin-right: 2%;
  margin-bottom: 24px;
  float: left;
}
.single-location .gallery .fuel_column_header .fuel_inner_right {
  width: 48%;
  float: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .single-location .gallery .fuel_column_header .fuel_inner_left {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .single-location .gallery .fuel_column_header .fuel_inner_right {
    width: 100%;
    float: none;
  }
}
.single-location .gallery .fuel_column {
  width: calc(50% - 15px);
}
@media (max-width: 991px) {
  .single-location .gallery .fuel_column {
    width: 100%;
  }
  .single-location .gallery .fuel_column.box1 {
    margin-bottom: 24px;
  }
}

.account-setup-wrapper a {
  font-weight: bold;
}
.account-setup-wrapper .row {
  display: flex;
  flex-wrap: wrap;
}
.account-setup-wrapper .column {
  display: inline-flex;
  flex-direction: column;
  width: 30%;
  margin-right: 4%;
  margin-bottom: 30px;
  text-align: left;
}
.account-setup-wrapper .column:nth-child(3) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .account-setup-wrapper .column {
    width: 100%;
    margin-right: 0;
  }
}
.account-setup-wrapper .column p {
  margin-bottom: 0;
}
.account-setup-wrapper .column-one-third-one {
  display: inline-flex;
  flex-direction: column;
  width: 30%;
  margin-right: 4%;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .account-setup-wrapper .column-one-third-one {
    width: 100%;
    margin-right: 0;
  }
}
.account-setup-wrapper .column-two-thirds-one {
  display: inline-flex;
  flex-direction: column;
  width: 62%;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .account-setup-wrapper .column-two-thirds-one {
    width: 100%;
    margin-right: 0;
  }
}
.account-setup-wrapper .column-one-third-two {
  display: inline-flex;
  flex-direction: column;
  width: 30%;
  margin-right: 4%;
  margin-bottom: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .account-setup-wrapper .column-one-third-two {
    width: 100%;
    margin-right: 0;
  }
}
.account-setup-wrapper .column-two-thirds-two {
  display: inline-flex;
  flex-direction: column;
  width: 62%;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .account-setup-wrapper .column-two-thirds-two {
    width: 100%;
    margin-right: 0;
  }
}
.account-setup-wrapper h2 {
  font-size: 30px;
  font-weight: 400;
  border-bottom: 1px solid #053765;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #053765;
}
.account-setup-wrapper h3 {
  font-size: 26px;
  font-weight: 700;
  color: #053765;
  margin-bottom: 0;
}
.account-setup-wrapper h4 {
  font-size: 21px;
  font-weight: 400;
  color: #053765;
  margin-bottom: 16px;
}
.account-setup-wrapper h4 a {
  font-weight: 700;
}
.account-setup-wrapper ol li {
  list-style: upper-latin !important;
}
.account-setup-wrapper ul.lettered-list {
  counter-reset: li;
  list-style-type: none;
  font-size: 14px;
  line-height: 18px;
  padding-left: 0;
  margin: 0;
}
.account-setup-wrapper ul.lettered-list.starter {
  counter-reset: none;
}
.account-setup-wrapper ul.lettered-list li {
  list-style: none;
  position: relative;
  padding: 5px 0 5px 30px;
}
.account-setup-wrapper ul.lettered-list li:before {
  content: counter(li, upper-latin);
  counter-increment: li;
  height: 20px;
  width: 20px;
  border: 0;
  background: #81C629;
  border-radius: 50%;
  color: white;
  text-align: center;
  position: absolute;
  left: 0;
  top: 4px;
  font-weight: bold;
}
.account-setup-wrapper img.creditcards {
  margin: 20px 0;
}
.account-setup-wrapper .bottom-contact {
  font-size: 21px;
  font-weight: bold;
  color: #053765;
}
.account-setup-wrapper .congratulations {
  width: 70%;
}
@media (max-width: 768px) {
  .account-setup-wrapper .congratulations {
    width: 100%;
  }
}

.blog-header {
  width: 90%;
  margin: 0 auto 24px auto;
  max-width: 1300px;
}
.blog-header p {
  width: 75%;
}
.blog-header h3 {
  font: 700 20px/30px "Open Sans", sans-serif;
  color: #414143;
  border-bottom: 1px solid #053765;
  padding: 0 0 8px 0;
  margin: 0 0 12px 0;
}
.blog-header .blog-category-header {
  padding: 16px 20px;
  background: #095AA6;
  color: #fff;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.blog-header .blog-category-header-left {
  width: 50%;
  float: left;
  color: #fff;
  font: 700 42px/55px "Open Sans", sans-serif;
}
.blog-header .blog-category-header-left a {
  color: #fff;
}
.blog-header .blog-category-header-right {
  width: 50%;
  float: left;
  text-align: right;
  color: #fff;
  padding: 10px 0 0 0;
}
.blog-header .blog-category-header-right select {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .blog-header {
    width: 100%;
    padding: 0 24px;
  }
  .blog-header p {
    width: 100%;
  }
  .blog-header .blog-category-header {
    display: block;
  }
  .blog-header .blog-category-header-left {
    width: 100%;
    float: none;
  }
  .blog-header .blog-category-header-right {
    width: 100%;
    float: none;
    text-align: left;
  }
  .blog-header .blog-category-header-right select {
    display: block;
    width: 100%;
    margin: 0;
  }
}
.post-container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 1300px;
}
.post-container article {
  width: 100%;
  margin-top: 0;
}
.post-container article .article-left {
  width: 65%;
  float: left;
}
.post-container article .article-right {
  width: 30%;
  float: right;
}
.post-container article .article-right .box {
  border-radius: 10px;
  background: #e3effa;
  padding: 16px;
  margin: 12px 0 24px 0;
}
.post-container article .article-right .box .btn {
  display: block;
  padding: 0;
}
.post-container article .article-right .box .btn a {
  padding: 12px 30px;
  display: block;
}
.post-container article .article-right .box .fas {
  font-size: 26px;
}
.post-container article .article-right .box a.tel {
  font-weight: 700;
  font-size: 26px;
  color: #053765;
}
@media (max-width: 991px) {
  .post-container article .article-left {
    width: 100%;
    float: none;
  }
  .post-container article .article-right {
    width: 100%;
    float: none;
  }
}
.post-container article .thumbnail {
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.post-container article .thumbnail img {
  height: 100%;
  width: auto;
}
.post-container article .title {
  margin: 28px 0 12px;
  text-transform: none;
}
.post-container article .category {
  display: inline-flex;
  width: fit-content;
  width: -moz-fit-content;
  height: 20px;
  padding-top: 1px;
}
.post-container article .category a {
  font: 700 12px/17px "Open Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 6px;
}
.post-container article .category a:hover, .post-container article .category a:focus, .post-container article .category a:active {
  opacity: 0.7;
}
.post-container article .postcontent p {
  margin: 0 0 1.5em 0;
}
.post-container article .postcontent h1 {
  font: 700 34px/44px "Open Sans", sans-serif;
  color: #082E72;
  margin: 0 0 1em 0;
}
.post-container article .postcontent h2 {
  font: 700 30px/38px "Open Sans", sans-serif;
  color: #082E72;
  margin: 0 0 1em 0;
}
.post-container article .postcontent h3 {
  font: 700 24px/30px "Open Sans", sans-serif;
  color: #082E72;
  margin: 0 0 1em 0;
}
.post-container article .postcontent h4 {
  font: 700 20px/27px "Open Sans", sans-serif;
  color: #082E72;
  margin: 0 0 1em 0;
}
.post-container article .postcontent h5 {
  font: 700 18px/24px "Open Sans", sans-serif;
  color: #082E72;
  margin: 0 0 1em 0;
}
.post-container article .postcontent ul {
  list-style-type: disc;
}
.post-container article .postcontent .likebtn_container {
  display: none;
}
.post-container .recent-posts {
  position: sticky;
  right: 0;
  top: 0;
  float: right;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.post-container .recent-posts p {
  margin-bottom: unset;
}
.post-container .post-nav-bar {
  margin: 35px 0 0;
  padding-top: 35px;
  border-top: 1px solid #095AA6;
  text-align: center;
}
.post-container .post-nav-bar a {
  color: #095AA6;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  margin: 10px;
}
.post-container .post-nav-bar .next-link:hover, .post-container .post-nav-bar .next-link:hover, .post-container .post-nav-bar .next-link:active, .post-container .post-nav-bar .prev-link:hover, .post-container .post-nav-bar .prev-link:hover, .post-container .post-nav-bar .prev-link:active {
  color: #000;
}
.post-container .post-nav-bar .next-link:hover a, .post-container .post-nav-bar .next-link:hover a, .post-container .post-nav-bar .next-link:active a, .post-container .post-nav-bar .prev-link:hover a, .post-container .post-nav-bar .prev-link:hover a, .post-container .post-nav-bar .prev-link:active a {
  color: #000;
}
.post-container .post-nav-bar .next-link:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
}
.post-container .post-nav-bar .prev-link:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
}
.post-container .post-nav-bar--back {
  margin: 0;
  padding-top: 0;
  border-top: none;
}

.sharethis-inline-share-buttons#st-1 {
  margin-left: auto;
  line-height: 1;
  /*
    .st-btn {
      background: #4D4D4F!important;
      width: 17px;
      height: 17px;
      line-height: 17px;
      padding: 0;
      margin-right: 10px;
      img {
        display: inline-block;
        height: 13px;
        width: 13px;
        position: relative;
        top: 2px;
        vertical-align: top;
      }
      &:hover {
        opacity: 1;
        top: 0;
        background: $c-blue!important;
        transition: all .1s;
      }
    }
    */
}
@media screen and (max-width: 375px) {
  .sharethis-inline-share-buttons#st-1 {
    text-align: center;
    margin-left: 0;
    width: 100%;
  }
}

.social-sharing {
  display: flex;
  flex-direction: row;
  margin: 22px 0 29px;
}
.social-sharing .st-custom-button {
  background: #4D4D4F;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  height: 17px;
  line-height: 17px;
  margin-right: 10px;
  padding: 0 2px;
  position: relative;
  text-align: center;
  top: 0;
  vertical-align: top;
  white-space: nowrap;
}
.social-sharing .st-custom-button img {
  display: inline-block;
  height: 13px;
  width: 13px;
  position: relative;
  top: 2px;
  vertical-align: top;
}
.social-sharing .st-custom-button:hover {
  background: #095aa6;
  transition: all 0.1s;
}

.post-data {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}
.post-data .post-comment-count {
  font: 700 20px/24px "Open Sans", sans-serif;
  color: #4D4D4F;
  margin-right: 30px;
}
.post-data .lb-like-label {
  font-size: 20px !important;
}
.post-data .lb-count {
  font-size: 20px !important;
}

.post-comments article {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 25px 0;
}
.post-comments article > .comment-author {
  width: 69px;
}
.post-comments .comment-details {
  width: calc(100% - 89px);
}
.post-comments .post-nav-bar {
  margin: 75px 0;
}
.post-comments .post-nav-bar span {
  color: #37560A;
  font-weight: bold;
}
.post-comments .comment-content .wpulike {
  display: inline-block;
}
.post-comments .comment-content .reply {
  display: inline-block;
}
.post-comments .comments-respond textarea {
  height: 90px;
  border-radius: 10px;
  padding: 15px 20px;
  outline-color: #999999;
  -moz-outline-radius: 5px;
}
.post-comments .comments-respond form {
  display: flex;
  flex-direction: column;
}
.post-comments .comments-respond form input[type=submit] {
  background: #414143 0% 0% no-repeat padding-box;
  border: 1px solid #053765;
  border-radius: 10px;
}
.post-comments .comments-respond form input[type=submit]:hover, .post-comments .comments-respond form input[type=submit]:focus, .post-comments .comments-respond form input[type=submit]:active {
  background-color: #000;
}
.post-comments .comments-respond form .form-field-wrapper img {
  height: 69px;
  width: 69px;
  margin-right: 20px;
  border: 1px solid #B5B5B5;
}
.post-comments .comments-respond form .form-field-wrapper.submit-wrapper {
  align-self: flex-end;
}
.post-comments .comments-respond form .form-field-wrapper textarea {
  width: calc(100% - 94px);
}
.post-comments li form textarea {
  width: calc(100% - 65px);
}
.post-comments li form .form-field-wrapper img {
  width: 40px !important;
  height: 40px !important;
}
.post-comments li #cancel-comment-reply-link {
  top: 165px;
  position: relative;
  right: -460px;
  font: 700 18px/24px "Open Sans", sans-serif;
  color: #999999;
  text-transform: uppercase;
}
.post-comments .comment_loadmore {
  font: 700 22px/30px "Open Sans", sans-serif;
  color: #37560A;
  text-align: center;
}
.post-comments .comment_loadmore:after {
  content: "\f078";
  font: 700 16px/30px "Font Awesome 5 Pro";
  margin: 0 0 0 10px;
  vertical-align: top;
}
.post-comments .comment_loadmore:hover {
  cursor: pointer;
}
.post-comments .likebtn_container {
  display: flex;
}

.comment-list .comment-author a {
  font: 700 14px/19px "Open Sans", sans-serif;
  color: #414143;
}
.comment-list .comment-date a {
  color: #77787B;
}
.comment-list .comment-actions {
  display: inline-flex;
}
.comment-list .comments-respond form {
  margin-left: 85px;
}
.comment-list .comments-respond form textarea {
  background: #F7F8F9;
  border: 1px solid #999999;
  border-radius: 5px;
  outline-color: #999999;
  -moz-outline-radius: 5px;
}
.comment-list .comments-respond form textarea:focus {
  border: 1px solid #999999;
}
.comment-list .children article {
  margin: 25px 0 25px 89px;
}
.comment-list .children article .comment-author img {
  width: 40px;
  height: 40px;
  border: 1px solid #B5B5B5;
}

.lb-style-custom .lb-count {
  font-family: "Open Sans", sans-serif !important;
  padding-left: unset;
}
.lb-style-custom .likebtn-label {
  font-family: "Open Sans", sans-serif !important;
}

.comment-content .comment-reply-link a {
  color: #4D4D4F;
}

@media (max-width: 991px) {
  .post-container {
    flex-direction: column;
  }
  .post-container article {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .post-container article .thumbnail {
    height: 300px;
  }
  .post-container article .post-data .post-comment-count {
    font-size: 14px;
  }
  .post-container article .post-nav-bar a {
    font-size: 14px;
    margin: 0;
  }
  .post-container article .post-nav-bar .prev-link:before {
    font-size: 10px;
  }
  .post-container article .post-nav-bar .next-link:after {
    font-size: 10px;
  }
  .post-container .recent-posts {
    width: 100%;
  }
  .post-container .recent-posts .filtered-posts_item__image {
    height: 70px;
    width: 70px;
  }
  .post-container .recent-posts .filtered-posts_item__description {
    margin-bottom: 0;
  }
  .post-container .recent-posts .filtered-posts_item__description__title {
    line-height: 18px;
  }
  .post-container .recent-posts .filtered-posts_item__description__title a {
    font-size: 14px;
  }
  .comment-list .comment-date {
    font-size: 14px;
  }
  .comment-list .children article {
    margin: 25px 0 25px 25px;
  }
  .comment-list .comments-respond form {
    margin-left: 30px;
  }
  .comment-list li #cancel-comment-reply-link {
    right: 0;
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .recent-posts .filtered-posts_item__image {
    height: 70px;
    width: 70px;
  }
  .recent-posts .filtered-posts_item__description__title a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .post-container article .thumbnail {
    height: 200px;
  }
}
.search .filtered-posts .filter-result {
  margin: 0 auto;
}
.search .filtered-posts .filter-result .filtered-posts_item {
  border-bottom: 1px solid #c7c7c7;
  height: 180px;
}
.search .filtered-posts .filter-result .filtered-posts_item__description {
  width: 100%;
}
.search .filtered-posts .filter-result .filtered-posts_item:first-child {
  margin-top: 0;
}
.search .filtered-posts .filter-result .filtered-posts_item:last-child {
  border: none;
  margin-bottom: 0;
}

.four-columns {
  display: flex;
  flex-wrap: wrap;
}
.four-columns__item {
  display: inline-flex;
  flex-direction: column;
  width: 22%;
  margin-right: 4%;
  margin-bottom: 60px;
  text-align: center;
}
.four-columns__item:nth-child(4) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .four-columns__item {
    width: 100%;
    margin-right: 0;
  }
}
.four-columns__img {
  display: block;
  max-width: 100%;
  margin: 0 auto 25px;
}
.four-columns__title {
  margin: 0 0 25px;
}
.four-columns__btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: auto auto 0;
}

.three-columns {
  display: flex;
  flex-wrap: wrap;
}
.three-columns__item {
  display: inline-flex;
  flex-direction: column;
  width: 30%;
  margin-right: 3%;
  margin-bottom: 60px;
  text-align: left;
}
.three-columns__item:nth-child(4) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .three-columns__item {
    width: 100%;
    margin-right: 0;
  }
}
.three-columns__img {
  display: block;
  max-width: 100%;
  margin: 0 auto 25px;
}
.three-columns__title {
  margin: 0 0 25px;
}
.three-columns__btn {
  display: block;
  width: 100%;
  margin: auto auto 0;
}
.three-columns ul {
  margin: 0 30px 15px 0;
  list-style-position: inside;
  list-style-type: disc;
}
.three-columns div.floatul {
  display: flex;
  flex-wrap: wrap;
}
.three-columns div.floatul div {
  display: inline-flex;
  flex-direction: column;
  width: 48%;
  margin-right: 2%;
}
.three-columns li {
  border-bottom: 1px solid #999;
  padding-left: 15px;
  text-indent: -15px;
}
.three-columns li::before {
  left: 0;
}

.post-nav-bar {
  margin: 75px 0;
  color: #053765;
  font-weight: bold;
}
.post-nav-bar--back {
  margin: 20px 0 20px;
}
.post-nav-bar a {
  color: #095AA6;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  margin: 10px;
}
.post-nav-bar a:hover {
  color: #053765;
}
.post-nav-bar .prev-link:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
}
.post-nav-bar .next-link {
  margin-left: auto;
}
.post-nav-bar .next-link:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
}

/*Specific styles*/
.page-id-221 .main {
  padding-bottom: 0;
}
.page-id-221 h1 {
  color: #000;
}
.page-id-221 .text-image__content {
  padding: 0;
}
.page-id-221 .text-image__img {
  margin-top: -118px;
}
.page-id-221 .gform_wrapper .gfield_label, .page-id-221 .gform_wrapper legend.gfield_label {
  color: #000;
}
.page-id-221 .gform_wrapper ul.gfield_checkbox li label, .page-id-221 .gform_wrapper ul.gfield_radio li label {
  color: #000;
}
.page-id-221 .gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.page-id-221 .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.page-id-221 .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin-top: 0;
}

.emergency-form .container {
  max-width: 930px;
  padding: 71px 0 80px;
}
.emergency-form__content {
  display: flex;
}
.emergency-form__title {
  font: 700 25px/42px "Open Sans", sans-serif;
  width: 37%;
  color: #095aa6;
}
.emergency-form__text {
  width: calc(63% - 56px);
}
.emergency-form__text a {
  font-weight: 700;
}
.emergency-form__text strong {
  color: #095aa6;
}

@media (max-width: 1200px) {
  .page-id-221 .text-image__img {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .emergency-form__content {
    display: block;
  }
  .emergency-form__title {
    width: unset;
    text-align: center;
  }
  .emergency-form__text {
    width: unset;
  }
  .emergency-form__form .gform_wrapper form ul ul.gfield_checkbox {
    display: block;
  }
  .emergency-form__form .gform_wrapper form ul ul.gfield_radio {
    display: block;
  }
  .emergency-form__form .gform_wrapper form ul .address-field .address_line_2 #input_3_2_2 {
    width: 100%;
    margin-right: unset;
  }
  .emergency-form__form .gform_wrapper form ul .address-field #input_3_2_3_container {
    width: 100%;
  }
  .emergency-form__form .gform_wrapper form ul .address-field #input_3_2_4_container {
    width: 100%;
    margin-right: unset;
    padding-right: 0;
  }
  .emergency-form__form .gform_wrapper form ul .address-field #input_3_2_5_container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .emergency-form__form .gform_wrapper form ul li.gfield.gf_left_half {
    padding: 0 0 50px 0;
  }
  .emergency-form__form .gform_wrapper form ul li.gfield.gf_right_half {
    padding: 0 0 50px 0;
  }
  .emergency-form__form .gform_wrapper form ul li.gfield .gfield_label {
    padding-left: 10px;
  }
  .emergency-form__form .gform_wrapper form ul li.gfield input[type=checkbox] + label, .emergency-form__form .gform_wrapper form ul li.gfield input[type=radio] + label {
    padding-left: 10px;
  }
  .emergency-form__form .gform_wrapper form ul li.gfield:not(.d-flex) div.ginput_container {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .emergency-form__form .gform_wrapper form ul li.gfield:not(.d-flex) div.ginput_container {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .d-flex {
    flex-direction: column;
  }
}
#gform_18 .top_label .gfield_label {
  color: #053765;
}
#gform_18 .gfield_required {
  color: #81C629;
}

.text__content table {
  margin: 0 auto;
  border: 1px solid #053765;
}
.text__content table td {
  border: 1px solid #053765;
  text-align: center;
  padding: 0 7px;
}

/* ===========================================================
   TEXT WITH IMAGES
=========================================================== */
.content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1000px) {
  .content-wrapper {
    flex-wrap: nowrap;
  }
}
.content-wrapper div.content-half {
  flex-basis: 100%;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .content-wrapper div.content-half {
    flex-basis: 48%;
    margin: 0;
  }
}
.content-wrapper div.content-half .half-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.content-wrapper div.content-half .half-inner .inner-content {
  flex-basis: 100%;
}
.content-wrapper div.content-half:first-child {
  order: 1;
}
@media (min-width: 1000px) {
  .content-wrapper div.content-half:first-child {
    order: 0;
  }
}
.content-wrapper div.content-half:last-child {
  order: 0;
  margin-bottom: 30px;
}
@media (min-width: 1000px) {
  .content-wrapper div.content-half:last-child {
    order: 1;
    margin-bottom: 0;
  }
}
.content-wrapper div.content-half.reversed:first-child {
  order: 0;
  margin-bottom: 30px;
}
@media (min-width: 1000px) {
  .content-wrapper div.content-half.reversed:first-child {
    order: 1;
    margin-bottom: 0;
  }
}
.content-wrapper div.content-half.reversed:last-child {
  order: 1;
}
@media (min-width: 1000px) {
  .content-wrapper div.content-half.reversed:last-child {
    order: 0;
  }
}

/* ===========================================================
   DEFAULT BLOG LAYOUT
=========================================================== */
.thumbnail-mobile {
  display: none;
}

@media (max-width: 768px) {
  .thumbnail {
    display: none;
  }
  .thumbnail-mobile {
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
  }
  .thumbnail-mobile img {
    width: 100%;
    height: auto;
  }
}
.featured-post {
  margin-bottom: 30px;
}
.featured-post h3 {
  font: 700 20px/30px "Open Sans", sans-serif;
  color: #414143;
  border-bottom: 1px solid #053765;
  padding: 0 0 8px 0;
  margin: 0 0 12px 0;
}
.featured-post h2 {
  font: 700 32px/42px "Open Sans", sans-serif;
  color: #095AA6;
  margin: 0 0 12px 0;
}
.featured-post h2 a {
  color: #095AA6;
}
.featured-post a {
  font-weight: 700;
}

.posts-cat-header {
  width: 100%;
  padding: 0 0 8px 0;
  margin: 0 0 12px 0;
  border-bottom: 1px solid #053765;
}
.posts-cat-header h3 {
  float: left;
  color: #414143;
}
.posts-cat-header .st-right {
  float: right;
}

.posts-filter {
  width: 100%;
  color: #053765;
  font-weight: 700;
}
.posts-filter select {
  margin-left: 12px;
  border: 1px solid #053765;
  border-radius: 6px;
  padding: 6px;
  color: #053765;
}

.post {
  margin: 15px 0 30px 0;
}
.post .topmeta {
  display: flex;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid gray;
}
.post .topmeta .date {
  font: 16px/17px "Open Sans", sans-serif;
  margin-left: 10px;
}
.post .topmeta .date:before {
  content: "|";
  margin-right: 10px;
}
@media screen and (max-width: 375px) {
  .post .topmeta .date {
    margin-bottom: 12px;
  }
}
.post .topmeta .backlink {
  font: 700 16px/17px "Open Sans", sans-serif;
  margin-left: 10px;
}
.post .topmeta .backlink:before {
  content: "|";
  margin-right: 10px;
}
@media screen and (max-width: 375px) {
  .post .topmeta .backlink {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 375px) {
  .post .topmeta .category {
    margin-bottom: 12px;
  }
}
.post .topmeta .edit {
  float: right;
  min-height: 16px;
  line-height: 16px;
}
.post .topmeta .edit a {
  background: url(../images/pencil.png) no-repeat top left;
  padding: 1px 0 1px 20px;
}
@media (max-width: 768px) {
  .post .topmeta {
    display: block;
  }
  .post .topmeta .category {
    width: 100%;
    display: block;
    height: auto;
    padding: 0 0 3px 4px;
  }
  .post .topmeta .date {
    width: 100%;
    display: block;
    margin: 10px 0 10px 0;
  }
  .post .topmeta .date:before {
    content: "";
    margin: 0;
  }
  .post .topmeta .backlink {
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
  }
  .post .topmeta .backlink:before {
    content: "";
    margin: 0;
  }
  .post .topmeta #st-1 {
    text-align: left;
  }
}
.post .bottommeta .category {
  float: left;
  padding: 0 0 0 20px;
  min-height: 16px;
  line-height: 16px;
  background: url(../images/folder.png) no-repeat top left;
}
.post .bottommeta .comments {
  float: right;
  padding: 0 0 0 20px;
  min-height: 16px;
  line-height: 16px;
  background: url(../images/comments.png) no-repeat top left;
}
.post .bottommeta .edit {
  float: right;
}
.post .bottommeta .edit a {
  background: url(../images/pencil.png) no-repeat top left;
  padding: 1px 0 1px 20px;
}
.post .postcontent {
  margin: 12px 0 0;
}
.post .tags {
  display: block;
  min-height: 16px;
  padding: 0 0 7px 20px;
  background: url(../images/tag.png) no-repeat 0 0;
}

.archive .post .bottommeta {
  padding: 4px 6px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #e5e5e5;
}
.archive .post h2 {
  margin: 0 0 4px;
}
.archive .post h2 a {
  text-decoration: none;
}

.post-comments h2 {
  margin: 0;
}
.post-comments .comment-list {
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
}
.post-comments .comment-list ul {
  margin: 0;
  padding: 0 10px 0 10px;
  list-style: none;
}
.post-comments .comment-list li.thread-alt, .post-comments .comment-list li.alt {
  background-color: #f2f2f2;
  border-color: #d9d9d9;
}
.post-comments .comment-list ul li:first-child {
  margin-top: 0;
}
.post-comments .comment-list .comment-author {
  float: left;
}
.post-comments .comment-list .comment-author .avatar {
  float: left;
  margin: 0 20px 0 0;
  border: 1px solid #B5B5B5;
}
.post-comments .comment-list .comment-author cite {
  float: left;
  height: 18px;
  font-weight: bold;
  font-style: normal;
}
.post-comments .comment-list .comment-author .says {
  display: none;
}
.post-comments .comment-list .comment-meta {
  margin: 0 0 5px;
  line-height: 19px;
  font-weight: 700;
}
.post-comments .comment-list p {
  margin: 0;
}
.post-comments .comments-respond {
  margin: 20px 0 0;
}
.post-comments .comments-respond h3 {
  margin: 0 0 10px;
}
.post-comments .comments-respond p.form-field-wrapper {
  margin: 10px 0;
}
.post-comments .comments-respond label {
  margin: 0 0 3px;
  display: block;
}
.post-comments .comments-respond label.required {
  font-weight: bold;
}
.post-comments .comments-respond label .note {
  font-weight: normal;
  font-style: italic;
}
.post-comments .comments-respond input.textbox {
  width: 250px;
}

.comment-content.entry .likebtn-wrapper {
  display: block;
}
.comment-content.entry p + .comment-reply-link {
  position: relative;
  top: 0;
}

.block-two-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block-two-columns__column {
  width: calc(50% - 5px);
}

.services-block__wrap {
  margin: 0 0 -30px -25px;
  display: flex;
  flex-wrap: wrap;
}
.services-block__item {
  position: relative;
  margin: 0 0 30px 25px;
  width: calc(33.3333333333% - 25px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 769px) {
  .services-block__item {
    width: calc(50% - 25px);
  }
}
@media (max-width: 500px) {
  .services-block__item {
    width: 100%;
  }
}
.services-block__img {
  height: 250px;
}
.services-block__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.services-block__post-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #053765;
}
.services-block__post-title:hover {
  background-color: #053765;
  color: #fff;
}
.services-block__post-title:hover .services-block__title-img--blue {
  display: none;
}
.services-block__post-title:hover .services-block__title-img--white {
  display: inline;
}
.services-block__title-img {
  margin-right: 8px;
}
.services-block__title-img--white {
  display: none;
}

h2.services-block__header {
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  margin-bottom: 15px;
}



.main .instantquote .gform_wrapper {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  border-radius: 0;
  padding: 0;
}

.main .instantquote .gform_wrapper h2 {
  color:  #000;
  font-size: 20px;
  margin-bottom: 0;
}

.main .instantquote .gform_wrapper .gfield_label {
  color: #000;
  margin-bottom: 0;
}

.main .instantquote .gform_wrapper .gfield_description {
  color: #000;
  margin-top: 0;
  padding-top: 0;
}

.main .instantquote .gform_wrapper input,
.main .instantquote .gform_wrapper select {
  border-color: #000;
}


.main .instantquote .gform_wrapper .gform_button {
  border: 0;
}

.main .instantquote {
  color: #000;
}

.main .instantquote hr {
  height: 1px;
  margin: 30px 0;
  width: 100%;
  padding: 0;
  border: none;
  color: #999;
  background-color: #999;
}

.main .instantquote .green {
  font-weight: 700;
  color: #37560A;
  margin-right: 20px;
}

.main .instantquote .green a {
  font-weight: 700;
  color: #37560A;
  margin-right: 20px;
}

.main .instantquote .optiondetails {
  color: #37560A;
  font-weight: bold;
}

.main .instantquote .optiondetails a {
  color: #37560A;
  font-weight: bold;
}

.main .instantquote .optiondetail {
  color: #000;
  font-weight: normal;
}

.main .instantquote .optiondetail a {
  color: #000;
  font-weight: normal;
}

.main .instantquote .buttons {
  text-align: right;
}

.main .instantquote .buttons .btn {
  display: inline-block;
}


.main .instantquote .buttons .btn a {
  padding: 7px 30px;
}

.main .instantquote .btn.on {
  background-color: #80BC00;
}

.main .instantquote .btn.off {
  background-color: #848484;
}

.main .instantquote .option1 input,
.main .instantquote .option2 input,
.main .instantquote .option3 input,
.main .instantquote .option4 input,
.main .instantquote .option5 input,
.main .instantquote .option6 input,
.main .instantquote .option7 input,
.main .instantquote .option8 input {
  background: #D9D9D966;
  border: 0;
}

.main .instantquote .greybox {
  background: #D9D9D966;
  border: 0;
  max-width: 300px;
  font-weight: bold;
}

.main .instantquote .greybox input {
  font-weight: bold;
}

.main .instantquote .discountbox {
  background: #80BC0033;
}

.main .instantquote #field_75_19 {
  padding: 0 24px;
}

.main .instantquote #field_75_19 label {
  float: left;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.main .instantquote #field_75_19 .ginput_container {
  float: right;
}

.main .instantquote #field_75_19 .ginput_container input {
  font-size: 24px;
  text-align: right;
}

@media (max-width: 600px) {
  .main .instantquote #field_75_19 .ginput_container input {
    text-align: left;
  }
}

.main .instantquote #field_75_31 {
  background: #80BC0033;
  padding: 12px 24px;
}

.main .instantquote #field_75_31 label {
  float: left;
}

.main .instantquote #field_75_31 .ginput_container {
  float: right;
}

.main .instantquote #field_75_31 .ginput_container input {
  font-size: 24px;
  font-weight: bold;
   text-align: right;
}

@media (max-width: 600px) {
  .main .instantquote #field_75_31 .ginput_container input {
    text-align: left;
  }
}

.main .instantquote #field_75_32 {
  padding: 0 24px;
}


.main .instantquote #field_75_32 label {
  float: left;
}

.main .instantquote #field_75_32 .ginput_container {
  float: right;
}


.main .instantquote #field_75_32 .ginput_container input {
  font-size: 32px;
  font-weight: bold;
  text-align: right;
}

@media (max-width: 600px) {
  .main .instantquote #field_75_32 .ginput_container input {
    text-align: left;
  }
}



.main .instantquote input[type="submit"] {
  background: #80BC00;
}

.main .instantquote input[type="submit"]:hover {
  background: #80BC00;
}

.woocommerce {
  margin: 50px auto 50px auto;
  width: 90%;
  max-width: 1300px;
}

.woocommerce input {
  padding: 8px 18px !important;
  border-radius: 3px !important;
  border: 1px solid #095AA6;
}

.woocommerce select,
.select2-container--default .select2-selection--single {
  padding: 0 18px !important;
  border-radius: 3px !important;
  border: 1px solid #095AA6;
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.woocommerce textarea {
  padding: 8px 18px !important;
  border-radius: 3px !important;
  border: 1px solid #095AA6;
}

.woocommerce a.button {
  background-color: #81C629 !important;
}

.woocommerce .cart .button {
  background-color: #ccc !important;
  color: #000;
}

.woocommerce .coupon {
  width: 50%;
  text-align: left;
}

.woocommerce #coupon_code {
  width: 150px;
}

.woocommerce-info {
  border-top-color: #fff;
  background-color: #DCEBF9;
  color: #000;
}

.woocommerce-checkout #payment {
  background: #DCEBF9;
}

.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #b4c5d4;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce-checkout .payment_box {
  background-color: #b4c5d4 !important;
}

.woocommerce button.button {
  background-color: #053765 !important;
}



/*# sourceMappingURL=global.css.map */
